UNPKG

react-ui89

Version:

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

13 lines (12 loc) 434 B
import React from "react"; export interface Ui89TabbedCardProps { selected?: any; onChange?: (value: string | number) => void; options?: Ui89TabbedCardPropsOption[]; } export interface Ui89TabbedCardPropsOption { value: string | number; label: React.ReactNode; render: () => React.JSX.Element; } export declare function Ui89TabbedCard({ selected, onChange, options, }: Ui89TabbedCardProps): React.JSX.Element;