UNPKG

react-ui89

Version:

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

12 lines (11 loc) 355 B
import React from "react"; import "../../style/reset.css"; export interface Ui89LinkBaseProps { className?: string; onClick?: () => void | Promise<void>; href?: string; children: React.ReactNode; autoDisableOnClick?: boolean; disabled?: boolean; } export declare function Ui89LinkBase(props: Ui89LinkBaseProps): React.JSX.Element;