import * as React from 'react'; import { FieldProps } from 'formik'; import CheckboxPrimitive, { CheckboxProps } from './Checkbox'; export type CheckboxFieldProps = Partial & CheckboxProps; const CheckboxField = ({ field, ...rest }: CheckboxFieldProps) => { if (!field) { return ; } const { value } = field; return ; }; export default CheckboxField;