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