"use client"; import type { ReactNode } from "react"; import { intFmt } from "../chart-formatters"; export interface TooltipRow { color: string; label: string; value: string | number; } export interface TooltipContentProps { title?: string; rows: TooltipRow[]; /** Optional additional content (e.g., markers) */ children?: ReactNode; } export function TooltipContent({ title, rows, children }: TooltipContentProps) { return (