Spaces:
Runtime error
Runtime error
File size: 907 Bytes
cd8bd0a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | "use client";
import { cn } from "@/shared/utils/cn";
interface InfoTooltipProps {
text: string;
className?: string;
}
export default function InfoTooltip({ text, className }: InfoTooltipProps) {
return (
<span className={cn("relative inline-flex group", className)}>
<span
className="material-symbols-outlined text-[16px] text-text-muted cursor-help"
aria-label={text}
>
info
</span>
<span
role="tooltip"
className={cn(
"absolute bottom-full left-1/2 -translate-x-1/2 mb-2",
"px-2.5 py-1.5 text-xs font-medium text-white bg-gray-900/95 rounded-md shadow-lg",
"whitespace-nowrap pointer-events-none",
"border border-white/10",
"opacity-0 group-hover:opacity-100 transition-opacity duration-150",
"z-50"
)}
>
{text}
</span>
</span>
);
}
|