UNPKG

heroui-modal-provider

Version:

[![package version](https://img.shields.io/npm/v/heroui-modal-provider.svg?style=flat-square)](https://www.npmjs.com/package/heroui-modal-provider) [![package downloads](https://img.shields.io/npm/dm/heroui-modal-provider.svg?style=flat-square)](https://w

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