import { Group, Text } from '@mantine/core'; import { InfoTooltip } from '@/components/InfoTooltip'; interface LabelWithTooltipProps { label: string; tooltip?: string; fontWeight?: number; marginBottom?: string; } export const LabelWithTooltip = ({ label, tooltip, fontWeight = 500, marginBottom = 'xs', }: LabelWithTooltipProps) => ( {label} {tooltip && } );