import { InputHTMLAttributes, forwardRef } from 'react'; import cx from 'clsx'; import styles from './checkbox.module.scss'; type Props = InputHTMLAttributes & { label: string; type?: 'switch'; }; const Checkbox = forwardRef(({ label, className, type, ...attrs }, ref) => { const { disabled } = attrs; return ( ); }); export { Checkbox }; export type { Props as CheckboxProps };