UNPKG

react-ui89

Version:

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

11 lines (10 loc) 294 B
import React from "react"; export interface Ui89InputNumberProps { emptyValue?: any; value?: any; min?: number; max?: number; onChange?: (value: any) => void; precision?: number; } export declare function Ui89InputNumber(props: Ui89InputNumberProps): React.JSX.Element;