core/components/Form/CheckBox.tsx

13 lines
326 B
TypeScript

import { Field } from 'formik'
const CheckBox: React.FC<CheckBoxProps> = ({ name, ...props }) => {
return <Field type='checkbox' name={name} className='form-checkbox text-koreanbots-blue bg-gray-300 h-4 w-4 rounded' {...props} />
}
interface CheckBoxProps {
name: string
[key: string]: unknown
}
export default CheckBox