import { ActionIcon, Tooltip, useMantineColorScheme } from '@mantine/core'; import { Info } from 'lucide-react'; interface InfoTooltipProps { label: string; multiline?: boolean; width?: number; } export const InfoTooltip = ({ label, multiline = true, width = 300, }: InfoTooltipProps) => { const { colorScheme } = useMantineColorScheme(); const isDark = colorScheme === 'dark'; return ( ); };