@cometchat/chat-uikit-react-native
Version:
Ready-to-use Chat UI Components for React Native
11 lines (10 loc) • 520 B
TypeScript
import { ImageStyle, ViewStyle } from "react-native";
import { CometChatTheme } from "../../../theme/type";
export type StatusIndicatorStyles = {
containerStyleOnline: ViewStyle;
containerStylePrivate: ViewStyle;
containerStyleProtected: ViewStyle;
imageStylePrivate: ImageStyle;
imageStyleProtected: ImageStyle;
};
export declare const getStatusIndicatorStyles: (color: CometChatTheme["color"], spacing: CometChatTheme["spacing"], typography: CometChatTheme["typography"]) => StatusIndicatorStyles;