UNPKG

mui-modal-provider

Version:

[![codecov](https://codecov.io/gh/Quernest/mui-modal-provider/branch/master/graph/badge.svg?token=AL2WK480NF)](https://codecov.io/gh/Quernest/mui-modal-provider) [![package version](https://img.shields.io/npm/v/mui-modal-provider.svg?style=flat-square)](h

12 lines (11 loc) 285 B
import React from 'react'; export declare type ModalProps = { open?: boolean; text: string; TransitionProps?: { onExited?: (args: any) => void; }; onClose?: (args: any) => void; }; declare const Modal: React.FC<ModalProps>; export default Modal;