@cometchat/chat-uikit-react-native
Version:
Ready-to-use Chat UI Components for React Native
8 lines (7 loc) • 358 B
TypeScript
import { TextStyle, ViewStyle } from "react-native";
import { CometChatTheme } from "../../../theme/type";
export type BadgeStyle = {
containerStyle?: ViewStyle;
textStyle?: TextStyle;
};
export declare const getBadgeStyle: (color: CometChatTheme["color"], spacing: CometChatTheme["spacing"], typography: CometChatTheme["typography"]) => BadgeStyle;