import classNames from 'classnames' type SwitchProps = { onChange: () => void checked: boolean disabled?: boolean } function Switch({ onChange, checked, disabled = false }: SwitchProps) { return ( // eslint-disable-next-line jsx-a11y/label-has-associated-control ) } export default Switch