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) 474 B
import React from "react"; import "../style/input-box.css"; import "../style/typo.css"; export interface Ui89InputTextProps { value?: any; placeholder?: string; autoTrim?: boolean; onChange?: (value: any) => void; onTyping?: (value: boolean) => void; onFocus?: () => void; onBlur?: () => void; } export declare function Ui89InputText({ value, placeholder, autoTrim, onChange, onTyping, onFocus, onBlur, }: Ui89InputTextProps): React.JSX.Element;