UNPKG

react-ui89

Version:

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

10 lines (9 loc) 306 B
import React from "react"; import "./Ui89Shortcut.css"; import "../style/typo.css"; export interface Ui89ShortcutProps { imageUrl: string; label: React.ReactNode; onClick?: () => void; } export declare function Ui89Shortcut({ imageUrl, label, onClick, }: Ui89ShortcutProps): React.JSX.Element;