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) 340 B
import React from "react"; import "./Ui89LinkStealth.css"; export interface Ui89LinkStealthProps { onClick?: () => void | Promise<void>; href?: string; children: React.ReactNode; autoDisableOnClick?: boolean; disabled?: boolean; } export declare function Ui89LinkStealth(props: Ui89LinkStealthProps): React.JSX.Element;