import styles from './Toggle.module.css' interface ToggleProps { className?: string offLabel?: string onLabel?: string name: string onChange: (e: React.ChangeEvent) => void checked: boolean } export const Toggle = ({ className = '', offLabel = 'Off', onLabel = 'On', name = '', onChange, checked, }: ToggleProps) => { return ( ) }