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