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 MobileInputValueType = string | null;
export interface MobileInputProps extends BaseInput<MobileInputValueType>, Omit<TextFieldProps, 'defaultValue' | 'ref'> {
type: 'mobile';
defaultValue?: MobileInputValueType;
}