UNPKG

stream-chat-react

Version:

React components to create chat conversations or livestream style chat

5 lines (4 loc) 301 B
import React from 'react'; import type { AvatarProps, GroupAvatarProps } from './'; export type ChannelAvatarProps = Partial<GroupAvatarProps> & AvatarProps; export declare const ChannelAvatar: ({ groupChannelDisplayInfo, image, name, user, ...sharedProps }: ChannelAvatarProps) => React.JSX.Element;