chore: improved checkbox design

This commit is contained in:
wonderlandpark 2021-03-25 12:58:47 +09:00
parent 78dd593f90
commit 7a013d864b

View File

@ -1,7 +1,7 @@
import { Field } from 'formik'
const CheckBox = ({ name, ...props }: CheckBoxProps): JSX.Element => {
return <Field type='checkbox' name={name} className='mr-1 w-4 h-4 rounded' {...props} />
return <Field type='checkbox' name={name} className='form-checkbox text-koreanbots-blue bg-gray-300 h-4 w-4 rounded' {...props} />
}
interface CheckBoxProps {