UNPKG

react-ui89

Version:

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

15 lines (14 loc) 403 B
import React from "react"; import "./Ui89MenuCard.css"; export interface Ui89MenuCardPropsOption { type?: "item" | "separator"; label?: string; onClick?: () => void; href?: string; disabled?: boolean; oppositeLabel?: React.ReactNode; } export interface Ui89MenuCardProps { options: Ui89MenuCardPropsOption[]; } export declare const Ui89MenuCard: React.FC<Ui89MenuCardProps>;