UNPKG

@sendbird/uikit-react

Version:

Sendbird UIKit for React: A feature-rich and customizable chat UI kit with messaging, channel management, and user authentication.

11 lines (10 loc) 319 B
/// <reference types="react" /> import type { OpenChannel } from '@sendbird/chat/openChannel'; interface Props { channel: OpenChannel; theme: string; height?: number; width?: number; } declare function ChannelAvatar({ channel, theme, height, width, }: Props): JSX.Element; export default ChannelAvatar;