material-form-builder
Version:
FormBuilder For React.js
8 lines (7 loc) • 332 B
TypeScript
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;
}