import classNames from 'classnames' type SwitchProps = { onChange: () => void checked: boolean disabled?: boolean } function Switch({ onChange, checked, disabled = false }: SwitchProps) { return ( ) } export default Switch