UNPKG

react-morphing-modal

Version:

React morphing modal! The easiest way to be fancy!

11 lines (10 loc) 289 B
import React from 'react'; export interface ModalProps { state: number; placeholderRef: React.MutableRefObject<HTMLDivElement | null>; close: () => void; closeButton?: boolean; padding?: boolean; } declare const Modal: React.FC<ModalProps>; export { Modal };