diff --git a/web/src/app/_components/tooltip.tsx b/web/src/app/_components/tooltip.tsx index bc5b45c..9b537ce 100644 --- a/web/src/app/_components/tooltip.tsx +++ b/web/src/app/_components/tooltip.tsx @@ -11,15 +11,23 @@ export function Tooltip({ className, children, title, + open, + side, + sideOffset, }: { className?: string; children: React.ReactNode; title?: React.ReactNode; + open?: boolean; + side?: "left" | "right" | "top" | "bottom"; + sideOffset?: number; }) { return ( - + {children} - {title} + + {title} + ); }