UNPKG

react-native-chating-ui-kit

Version:

CometChat React Native UI Kit is a collection of custom UI Components designed to build text , chat and calling features in your application. The UI Kit is developed to keep developers in mind and aims to reduce development efforts significantly

45 lines 1.13 kB
import { StyleSheet, Dimensions } from "react-native"; const { width: windowWidth } = Dimensions.get('window'); export const Style = StyleSheet.create({ container: { flexDirection: 'row', borderRadius: 8, opacity: 1, backgroundColor: "rgba(20, 20, 20, 0.04)", padding: 8 }, messageInfoStyle: { flex: 1, justifyContent: 'center' }, imageStyle: { tintColor: 'rgb(51, 153, 255)', }, downloadImage: { height: 24, width: 24, margin: 8, alignSelf: 'center' }, titleStyle: { opacity: 1, color: "rgba(20, 20, 20, 1)", fontStyle: "normal", fontWeight: "500", letterSpacing: -0.1, textAlign: "left", lineHeight: 22, fontSize: 17, maxWidth: windowWidth * 0.6 }, subtitleStyle: { opacity: 1, color: "rgba(20, 20, 20, 0.58)", fontStyle: "normal", letterSpacing: -0.1, textAlign: "left", lineHeight: 18, maxWidth: windowWidth * 0.5 } }); //# sourceMappingURL=style.js.map