import React, { InputHTMLAttributes } from 'react'; import classnames from 'classnames'; type Props = InputHTMLAttributes & { dimension?: 'small', onCheck: (isChecked: boolean) => void, }; const Toggle = ({ dimension, onCheck, ...attributes }: Props) => ( ); export default Toggle;