UNPKG

material-form-builder

Version:
8 lines (7 loc) 332 B
import { TextFieldProps } from '@mui/material'; import { BaseInput } from '../../types/input.base'; export type TextInputValueType = string | null; export interface TextInputProps extends BaseInput<TextInputValueType>, Omit<TextFieldProps, 'defaultValue' | 'ref'> { type: 'text'; defaultValue?: TextInputValueType; }