MuiCheckBox#
@palmyralabs/rt-forms-mui · form/MuiCheckBox.tsx
Overview#
Single boolean checkbox — MUI Checkbox inside FormControlLabel.
Props — ICheckBoxDefinition & CheckboxProps#
Common field props plus icon / checkedIcon and every MUI CheckboxProps (color, size, indeterminate, …).
Ref — ICheckBoxField#
interface ICheckBoxField {
focus(): void;
getValue(): boolean;
setValue(v: boolean): void;
isValid(): boolean;
toggle(): void;
}Example#
<MuiCheckBox
attribute="acceptsMarketing"
label="Send me product updates"
defaultValue={false}
/>