UNPKG

@etsoo/materialui

Version:

TypeScript Material-UI Implementation

11 lines (10 loc) 294 B
import { InputFieldProps } from "./InputField"; /** * Mobile input props */ export type MobileInputProps = Omit<InputFieldProps, "type"> & {}; /** * Mobile input * @param props Props */ export declare function MobileInput(props: MobileInputProps): import("react/jsx-runtime").JSX.Element;