UNPKG

@hhgtech/hhg-components

Version:
14 lines (13 loc) 468 B
import React from 'react'; export type Props = { type: 'lead' | 'form' | 'confirm' | 'profile'; closeIcon?: JSX.Element; isOpen: boolean; onClose: () => void; children?: any; className?: string; enableAnimation?: boolean; disableClickOutside?: boolean; }; declare const Popup: ({ type, closeIcon, isOpen, onClose, children, className, enableAnimation, disableClickOutside, }: Props) => React.JSX.Element; export { Popup };