UNPKG

react-ui89

Version:

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

9 lines (8 loc) 297 B
import React from "react"; import "./Ui89Card.css"; export interface Ui89CardProps { topLeftCenter?: React.ReactNode; topCenter?: React.ReactNode; children: React.ReactNode; } export declare function Ui89Card({ topLeftCenter, topCenter, children, }: Ui89CardProps): React.JSX.Element;