UNPKG

material-form-builder

Version:
9 lines (8 loc) 369 B
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; }