@etsoo/materialui
Version:
TypeScript Material-UI Implementation
11 lines (10 loc) • 294 B
TypeScript
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;