import classNames from 'classnames' interface Props { name: string checked: boolean onChange: (value: boolean) => void className?: string disabled?: boolean } export default function Switch(props: Props) { return (