UNPKG

@etsoo/materialui

Version:

TypeScript Material-UI Implementation

11 lines (10 loc) 362 B
import React from "react"; import { IntInputFieldProps } from "./IntInputField"; /** * Money input field props */ export type MoneyInputFieldProps = IntInputFieldProps & {}; /** * Money input field (controlled) */ export declare const MoneyInputField: React.ForwardRefExoticComponent<Omit<MoneyInputFieldProps, "ref"> & React.RefAttributes<HTMLDivElement>>;