react-ui89
Version:
A collection of React components that mimic a common style of user interfaces from the late 80s and early 90s.
11 lines (10 loc) • 393 B
TypeScript
import React from "react";
import { Ui89Theme } from "../theme";
import "../style/chosen-theme.css";
import "./Ui89HighlightText.css";
export interface Ui89HighlightTextProps {
theme: Ui89Theme | keyof typeof Ui89Theme;
block?: boolean;
children: React.ReactNode;
}
export declare function Ui89HighlightText({ theme, block, children, }: Ui89HighlightTextProps): React.JSX.Element;