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