react-admin-component
Version:
react library
20 lines (19 loc) • 456 B
TypeScript
/// <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;