material-form-builder
Version:
FormBuilder For React.js
8 lines (7 loc) • 342 B
TypeScript
import { TextFieldProps } from '@mui/material';
import { BaseInput } from '../../types/input.base';
export type NumberInputValueType = number | null;
export interface NumberInputProps extends BaseInput<NumberInputValueType>, Omit<TextFieldProps, 'defaultValue' | 'ref'> {
type: 'number';
defaultValue?: NumberInputValueType;
}