@sendbird/uikit-react
Version:
Sendbird UIKit for React: A feature-rich and customizable chat UI kit with messaging, channel management, and user authentication.
13 lines (12 loc) • 373 B
TypeScript
/// <reference types="react" />
import './index.scss';
import type { GroupChannel } from '@sendbird/chat/groupChannel';
interface Props {
channel: GroupChannel;
userId: string;
theme: string;
width?: number;
height?: number;
}
declare function ChannelAvatar({ channel, userId, theme, width, height, }: Props): JSX.Element;
export default ChannelAvatar;