@hhgtech/hhg-components
Version:
Hello Health Group common components
12 lines (11 loc) • 416 B
TypeScript
import React, { CSSProperties } from 'react';
export type Props = {
className?: string;
style?: CSSProperties;
images: string[];
authorName: string;
onClose?: () => void;
onOpenSingleView?: (index: number) => void;
alt?: string;
};
export declare const ImagePreviewPopup: ({ className, style, authorName, images, onClose, onOpenSingleView, alt, }: Props) => React.JSX.Element;