UNPKG

@cometchat/chat-uikit-react-native

Version:

Ready-to-use Chat UI Components for React Native

12 lines (11 loc) 542 B
import { ImageStyle, TextStyle, ViewStyle } from "react-native"; import { CometChatTheme } from "../../theme/type"; export type OutgoingCallStyle = { containerStyle: ViewStyle; titleTextStyle: TextStyle; subtitleTextStyle: TextStyle; avatarStyle: CometChatTheme["avatarStyle"]; endCallButtonStyle: ViewStyle; endCallIconStyle: ImageStyle; }; export declare const getOutgoingCallStyle: (color: CometChatTheme["color"], spacing: CometChatTheme["spacing"], typography: CometChatTheme["typography"]) => OutgoingCallStyle;