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) 272 B
import React from "react"; import "./Ui89TitleBox.css"; import "../style/typo.css"; import "../style/text.css"; export interface Ui89TitleBoxProps { children: React.ReactNode; } export declare function Ui89TitleBox({ children }: Ui89TitleBoxProps): React.JSX.Element;