@cometchat/chat-uikit-react-native
Version:
Ready-to-use Chat UI Components for React Native
14 lines (11 loc) • 336 B
text/typescript
import { FontStyleInterface, ImageType } from '../base';
type CometChatOptionTitleStyle = FontStyleInterface & { color?: string };
export interface CometChatOptions {
id: string;
title?: string;
icon?: ImageType;
titleStyle?: CometChatOptionTitleStyle;
backgroundColor?: string;
iconTint?: string;
onPress?: Function;
}