import clsx from 'clsx' export function Tooltip( props: { text: string | false | undefined | null } & JSX.IntrinsicElements['div'] ) { const { text, children, className } = props return text ? (
{children}
) : ( <>{children} ) }