import type {FC, InputHTMLAttributes} from 'react';
import styles from './Checkbox.module.scss';
interface CheckboxProps extends Omit<
InputHTMLAttributes,
'type'
> {
label: string;
}
export const Checkbox: FC = ({
label,
id,
checked,
onChange,
...props
}) => (
);