UNPKG

@hhgtech/hhg-components

Version:
16 lines (15 loc) 603 B
import React, { CSSProperties, ReactNode } from 'react'; export type Props = { className?: string; style?: CSSProperties; closeIcon?: JSX.Element; heading?: ReactNode; children?: void | ReactNode; isOpen?: boolean; hasFullscreen?: boolean; disableClickOutside?: boolean; initExpand?: boolean; onExpandChange?: () => void; onClose?: () => void; }; export declare const PopupFrame: ({ className, style, closeIcon, heading, children, isOpen, hasFullscreen, disableClickOutside, initExpand, onExpandChange, onClose, }: Props) => React.JSX.Element;