import s from './index.module.css' import cn from '@/utils/classnames' type CheckboxProps = { checked?: boolean onCheck?: () => void className?: string disabled?: boolean } const Checkbox = ({ checked, onCheck, className, disabled }: CheckboxProps) => { return (