import { FC } from 'react'; import { BooleanField, BooleanFieldProps } from '../boolean-field'; export type CheckboxProps = Omit; /** * Checkbox component * * Render a checkbox input type. */ export const Checkbox: FC = (props) => ( );