react-ui89
Version:
A collection of React components that mimic a common style of user interfaces from the late 80s and early 90s.
16 lines (15 loc) • 480 B
TypeScript
import React from "react";
import "./Ui89Hr.css";
import { Ui89Theme } from "../theme";
import "../style/chosen-theme.css";
export declare enum Ui89HrPropsLook {
straight = "straight",
dotted = "dotted",
dashed = "dashed",
double = "double"
}
export interface Ui89HrProps {
look?: Ui89HrPropsLook | keyof typeof Ui89HrPropsLook;
theme?: Ui89Theme | keyof typeof Ui89Theme;
}
export declare function Ui89Hr({ look, theme }: Ui89HrProps): React.JSX.Element;