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 "./Ui89InputCheckBox.css"; export interface Ui89InputCheckBoxProps { value: boolean; onChange?: (value: boolean) => void; } export declare function Ui89InputCheckBox(props: Ui89InputCheckBoxProps): React.JSX.Element;