UNPKG

stream-chat-react

Version:

React components to create chat conversations or livestream style chat

10 lines (9 loc) 269 B
import React from 'react'; import type { Attachment } from 'stream-chat'; export type AudioProps = { og: Attachment; }; /** * Audio attachment with play/pause button and progress bar */ export declare const Audio: (props: AudioProps) => React.JSX.Element | null;