@gathertown/uikit-react-native
Version:
Sendbird UIKit for React Native: A feature-rich and customizable chat UI kit with messaging, channel management, and user authentication.
10 lines (9 loc) • 344 B
TypeScript
import type { StyleProp, ViewStyle } from 'react-native';
import { SendbirdBaseChannel } from '@gathertown/uikit-utils';
type Props = {
channel: SendbirdBaseChannel;
size: number;
containerStyle?: StyleProp<ViewStyle>;
};
declare const ChannelCover: ({ channel, ...avatarProps }: Props) => JSX.Element;
export default ChannelCover;