UNPKG

stream-chat-react

Version:

React components to create chat conversations or livestream style chat

10 lines (9 loc) 459 B
import React from 'react'; import type { AudioProps } from './Audio'; import type { RenderAttachmentProps } from './utils'; export declare const CardAudio: ({ og: { asset_url, author_name, mime_type, og_scrape_url, text, title, title_link }, }: AudioProps) => React.JSX.Element; export type CardProps = RenderAttachmentProps['attachment']; /** * Simple Card Layout for displaying links */ export declare const Card: (props: CardProps) => React.JSX.Element;