UNPKG

@cometchat/chat-uikit-react-native

Version:

Ready-to-use Chat UI Components for React Native

9 lines (8 loc) 399 B
import { ImageStyle, TextStyle, ViewStyle } from "react-native"; import { CometChatTheme } from "../../../theme/type"; export type AvatarStyle = { containerStyle: ViewStyle; textStyle: TextStyle; imageStyle: ImageStyle; }; export declare const getAvatarStyle: (color: CometChatTheme["color"], spacing: CometChatTheme["spacing"], typography: CometChatTheme["typography"]) => AvatarStyle;