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) • 394 B
TypeScript
import React from "react";
import "./Ui89Card.css";
export interface Ui89CardProps {
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;