import { ReactNode } from 'react'; export function TooltipTriggerText({ children, }: { children: string | ReactNode; }) { return ( {children} ); }