fuck yeah. daisyui integrated

This commit is contained in:
2025-06-29 08:39:26 -04:00
parent ec6a0861f0
commit 14590afa40
9 changed files with 4767 additions and 145 deletions
+16
View File
@@ -0,0 +1,16 @@
'use client';
interface TooltipProps {
content: string;
children: React.ReactNode;
position?: 'top' | 'bottom' | 'left' | 'right';
className?: string;
}
export default function Tooltip({ content, children, position = 'top', className = '' }: TooltipProps) {
return (
<div className={`tooltip tooltip-${position} ${className}`} data-tip={content}>
{children}
</div>
);
}