UNPKG

react-ui89

Version:

A collection of React components that mimic a common style of user interfaces from the late 80s and early 90s.

8 lines (7 loc) 295 B
import React from "react"; import "./Ui89Card.css"; export interface Ui89CardHorizontalConnectionProps { children: React.ReactNode; overflow?: boolean; } export declare function Ui89CardHorizontalConnection({ children, overflow, }: Ui89CardHorizontalConnectionProps): React.JSX.Element;