UNPKG

@etsoo/materialui

Version:

TypeScript Material-UI Implementation

11 lines (10 loc) 298 B
import { TextFieldProps } from "@mui/material/TextField"; /** * Email input props */ export type EmailInputProps = Omit<TextFieldProps, "type"> & {}; /** * Email input * @param props Props */ export declare function EmailInput(props: EmailInputProps): import("react/jsx-runtime").JSX.Element;