import Setting from './setting' import OLFormSwitch from '@/features/ui/components/ol/ol-form-switch' export default function ToggleSetting({ id, label, description, checked, onChange, disabled, }: { id: string label: string description: string checked: boolean | undefined onChange: (newValue: boolean) => void disabled?: boolean }) { const handleChange = () => { onChange(!checked) } return ( ) }