import Block from "./Block"; import InputCheckbox, {type InputCheckboxProps} from "./InputCheckbox"; type FieldCheckboxProps = InputCheckboxProps & { label?: string; }; const FieldCheckbox: React.FC = (props) => { return ( ); }; export default FieldCheckbox;