UNPKG

react-hoc-modal

Version:
9 lines (8 loc) 319 B
import { ModalProps, TPropsRender } from "../types"; interface DefaultModalProps extends ModalProps { onBackground: () => void; onClose: () => void; renderProps: TPropsRender; } declare const Modal: ({ onBackground, onClose, renderProps, ...props }: DefaultModalProps) => JSX.Element; export default Modal;