UNPKG

@etsoo/materialui

Version:

TypeScript Material-UI Implementation

21 lines (20 loc) 441 B
import { NumberTextProps } from "./NumberText"; /** * Money text props */ export interface MoneyTextProps extends NumberTextProps { /** * Currency, USD for US dollar */ currency?: string; /** * Is integer number */ isInteger?: boolean; } /** * Money text * @param props Props * @returns Component */ export declare function MoneyText(props: MoneyTextProps): import("react/jsx-runtime").JSX.Element;