UNPKG

@xapp/chat-widget

Version:
10 lines (9 loc) 264 B
import React, { FC } from "react"; import { Attachment } from "../../xapp/Attachment"; export interface Props { readonly message: { attachment: Attachment; }; } declare const ChatMedia: FC<React.PropsWithChildren<Props>>; export default ChatMedia;