UNPKG

react-ui89

Version:

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

8 lines (7 loc) 259 B
import React from "react"; import "./Ui89InputCheckText.css"; export interface Ui89InputCheckTextProps { value: any; onChange?: (value: boolean) => void; } export declare function Ui89InputCheckText(props: Ui89InputCheckTextProps): React.JSX.Element;