import { cn } from '@/shared/lib/ui'; import type { ControlInternalProps } from './shared'; export const ToggleControl = ({ value, disabled, onChange }: ControlInternalProps) => { const checked = Boolean(value); const handleClick = () => onChange(!checked); return ( ); };