UNPKG

@cometchat/chat-uikit-react-native

Version:

Ready-to-use Chat UI Components for React Native

15 lines (14 loc) 629 B
import { ImageSourcePropType, ImageStyle, TextStyle, ViewStyle } from "react-native"; import { CometChatTheme } from "../../../theme/type"; import { JSX } from "react"; export type DeletedBubbleStyle = { containerStyle?: ViewStyle; textStyle?: TextStyle; icon?: JSX.Element | ImageSourcePropType; iconContainerStyle?: ViewStyle; iconStyle?: ImageStyle; }; export declare const getDeletedBubbleStyle: (color: CometChatTheme["color"], spacing: CometChatTheme["spacing"], typography: CometChatTheme["typography"]) => { incomingBubbleStyle: DeletedBubbleStyle; outgoingBubbleStyle: DeletedBubbleStyle; };