Checkbox
type Checkbox = { defaultChecked?: string; disabled?: boolean; id?: string; key?: string; label?: string; name: string; onChangeAction?: ActionConfig; required?: boolean; type: 'Checkbox';};
Properties
Section titled “Properties”defaultChecked?
Section titled “defaultChecked?”optional defaultChecked: string;
disabled?
Section titled “disabled?”optional disabled: boolean;
optional id: string;
optional key: string;
label?
Section titled “label?”optional label: string;
name: string;
onChangeAction?
Section titled “onChangeAction?”optional onChangeAction: ActionConfig;
required?
Section titled “required?”optional required: boolean;
type: 'Checkbox';