UNPKG

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) 373 B
import React from "react"; import "./Ui89ModalDialog.css"; export interface Ui89ModalDialogProps { open: boolean; size?: string; children?: React.ReactNode; topCenter?: React.ReactNode; onRequestClose?: () => void; } export declare function Ui89ModalDialog({ open, size, children, topCenter, onRequestClose, }: Ui89ModalDialogProps): React.JSX.Element;