import clsx from 'clsx' import { ReactNode } from 'react' export interface TooltipLikeDisplayProps { icon?: ReactNode label: string caption?: string className?: string } export const TooltipLikeDisplay = ({ icon, label, caption, className, }: TooltipLikeDisplayProps) => (
{icon}

{label}

{!!caption &&

{caption}

}
)