UNPKG

react-native-popup-dialog

Version:
41 lines (38 loc) 1.03 kB
import { DialogProps, DialogActionListProps, DialogButtonProps, DialogTitleProps, DialogContentProps, OverlayProps, } from './type'; import PopupDialog from './PopupDialog'; import Overlay from './components/Overlay'; import DialogTitle from './components/DialogTitle'; import DialogActionList from './components/DialogActionList'; import DialogButton from './components/DialogButton'; import DialogContent from './components/DialogContent'; import Dialog from './components/Dialog'; import Animation from './animations/Animation'; import FadeAnimation from './animations/FadeAnimation'; import ScaleAnimation from './animations/ScaleAnimation'; import SlideAnimation from './animations/SlideAnimation'; export { Dialog, Overlay, DialogButton, DialogContent, DialogTitle, DialogActionList, Animation, FadeAnimation, ScaleAnimation, SlideAnimation, DialogProps, DialogActionListProps, DialogButtonProps, DialogTitleProps, DialogContentProps, OverlayProps, }; export default PopupDialog;