stream-chat-react
Version:
React components to create chat conversations or livestream style chat
10 lines (9 loc) • 329 B
TypeScript
import React from 'react';
import type { Attachment } from 'stream-chat';
export type ModalGalleryProps = {
/** The images for the Carousel component */
images: Attachment[];
/** The index for the component */
index?: number;
};
export declare const ModalGallery: (props: ModalGalleryProps) => React.JSX.Element;