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