@cometchat/chat-uikit-react-native
Version:
Ready-to-use Chat UI Components for React Native
19 lines • 626 B
JavaScript
import { StyleSheet } from "react-native";
import { deepMerge } from "../../helper/helperFunctions";
export const getDateStyleLight = (color, spacing, typography) => {
return StyleSheet.create({
containerStyle: {},
textStyle: {
color: color.textSecondary,
...typography.caption1.regular,
},
});
};
export const getDateStyleDark = (color, spacing, typography) => {
return StyleSheet.create(deepMerge(getDateStyleLight(color, spacing, typography), {
textStyle: {
color: color.textSecondary,
},
}));
};
//# sourceMappingURL=styles.js.map