material-form-builder
Version:
FormBuilder For React.js
9 lines (8 loc) • 369 B
TypeScript
import { CheckboxProps } from '@mui/material';
import { BaseInput } from '../../types/input.base';
export type CheckboxInputValueType = boolean;
export interface CheckboxInputProps extends BaseInput<CheckboxInputValueType>, Omit<CheckboxProps, 'defaultChecked' | 'ref'> {
type: 'checkbox';
label?: string;
defaultChecked?: CheckboxInputValueType;
}