UNPKG

react-admin-component

Version:
20 lines (19 loc) 456 B
/// <reference types="react" /> interface ICheckboxItem { label: any; value: any; } interface IFormCheckboxProps { field: string; form: any; className: string; initialValue: any; readOnly: boolean; options: Array<ICheckboxItem>; render: any; label: any; labelCol: any; wrapperCol: any; } declare const FormCheckbox: (props: IFormCheckboxProps) => JSX.Element; export default FormCheckbox;