UNPKG

react-ui89

Version:

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

16 lines (15 loc) 563 B
import React from "react"; import "./Ui89Card.css"; import "../style/theme.css"; import { Ui89Palette, Ui89Theme } from "../theme"; export interface Ui89CardProps { theme?: Ui89Theme | keyof typeof Ui89Theme | Ui89Palette | keyof typeof Ui89Palette; topLeft?: React.ReactNode; topRight?: React.ReactNode; topCenter?: React.ReactNode; bottomLeft?: React.ReactNode; bottomRight?: React.ReactNode; bottomCenter?: React.ReactNode; children: React.ReactNode; } export declare function Ui89Card(props: Ui89CardProps): React.JSX.Element;