stream-chat-react
Version:
React components to create chat conversations or livestream style chat
8 lines • 401 B
TypeScript
import type { LocalAttachment } from 'stream-chat';
export type MediaBadgeVariant = 'video' | 'voice-recording' | string;
export type MediaBadgeProps = {
attachment: LocalAttachment;
variant: 'video' | 'voice-recording' | string;
};
export declare const MediaBadge: ({ attachment, variant }: MediaBadgeProps) => import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=MediaBadge.d.ts.map