stream-chat-react
Version:
React components to create chat conversations or livestream style chat
11 lines • 565 B
TypeScript
import type { GalleryItem } from '../Gallery/GalleryContext';
export type ModalGalleryProps = {
/** Array of media attachments to display */
items: GalleryItem[];
className?: string;
/** Whether clicking the empty gallery background should close the modal (default: true) */
closeOnBackgroundClick?: boolean;
modalClassName?: string;
};
export declare const ModalGallery: ({ className, closeOnBackgroundClick, items, modalClassName, }: ModalGalleryProps) => import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=ModalGallery.d.ts.map