UNPKG

react-ui89

Version:

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

15 lines (14 loc) 440 B
import React from "react"; import "../style/input-box.css"; import "../style/typo.css"; export interface Ui89InputTextAreaProps { rows?: number; value?: any; placeholder?: string; autoTrim?: boolean; onChange?: (value: any) => void; onTyping?: (value: boolean) => void; onFocus?: () => void; onBlur?: () => void; } export declare function Ui89InputTextArea(props: Ui89InputTextAreaProps): React.JSX.Element;