UNPKG

react-portal-dialog

Version:

React Portal Dialog is an Awesome Customizable and Draggable Modal.

11 lines (10 loc) 257 B
import React, { FC } from 'react'; interface Props { isOpen: boolean; onClose: () => void; customStyles?: React.CSSProperties; isOverlay?: boolean; isDraggable?: boolean; } declare const Modal: FC<Props>; export default Modal;