UNPKG

react-ui89

Version:

A collection of React components that mimic a common style of user interfaces from the late 80s and early 90s.

14 lines (13 loc) 441 B
import React from "react"; export interface Ui89InputTextNumberProps { emptyValue?: any; value?: any; min?: number; max?: number; disabled?: boolean; onChange?: (value: any) => void; precision?: number; textAlign?: React.CSSProperties["textAlign"]; } export declare function isTextNumber(text: string): boolean; export declare function Ui89InputTextNumber(props: Ui89InputTextNumberProps): React.JSX.Element;