UNPKG

mui-dynamic-field

Version:

A dynamic and customizable input field component for React, built with Material UI & TypeScript.

10 lines (9 loc) 402 B
import { TextFieldProps } from '@mui/material'; import { IDynamicField } from '../types'; declare const PhoneNumberInput: (props: TextFieldProps & { errorText?: string; countryCodes?: IDynamicField.Option[]; countryCode?: IDynamicField.Option; handleChange: (data: IDynamicField.FieldChangeProps) => void; }) => import("react/jsx-runtime").JSX.Element; export default PhoneNumberInput;