UNPKG

stream-chat-react

Version:

React components to create chat conversations or livestream style chat

6 lines (5 loc) 453 B
import React from 'react'; import type { LocalImageAttachment } from 'stream-chat'; import type { UploadAttachmentPreviewProps } from './types'; export type ImageAttachmentPreviewProps<CustomLocalMetadata = Record<string, unknown>> = UploadAttachmentPreviewProps<LocalImageAttachment<CustomLocalMetadata>>; export declare const ImageAttachmentPreview: ({ attachment, handleRetry, removeAttachments, }: ImageAttachmentPreviewProps) => React.JSX.Element;