mirror of
https://github.com/koreanbots/core.git
synced 2025-12-15 06:10:22 +00:00
13 lines
287 B
TypeScript
13 lines
287 B
TypeScript
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} />
|
|
}
|
|
|
|
interface CheckBoxProps {
|
|
name: string
|
|
[key: string]: unknown
|
|
}
|
|
|
|
export default CheckBox
|