import { ReactNode } from "react"; interface TooltipProps { label: string; children: ReactNode; className?: string; } export function Tooltip({ label, children, className = "" }: TooltipProps) { return ( {children} {label} ); }