import { Checkbox, Group } from '@mantine/core'; import { InfoTooltip } from '@/components/InfoTooltip'; interface CheckboxWithTooltipProps { checked: boolean; onChange: (checked: boolean) => void; label: string; tooltip: string; disabled?: boolean; } export const CheckboxWithTooltip = ({ checked, onChange, label, tooltip, disabled = false, }: CheckboxWithTooltipProps) => (