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) • 305 B
TypeScript
import React from "react";
import "./Ui89NameValuePair.css";
export interface Ui89NameValuePairProps {
name: React.ReactNode;
value: React.ReactNode;
leftMaxWidth?: number;
}
export declare function Ui89NameValuePair({ name, value, leftMaxWidth, }: Ui89NameValuePairProps): React.JSX.Element;