@cometchat/chat-uikit-react-native
Version:
Ready-to-use Chat UI Components for React Native
32 lines (30 loc) • 691 B
text/typescript
import React from "react";
import { StyleSheet } from "react-native";
export const Style = StyleSheet.create({
container: {
paddingEnd: 16,
height: 56,
width: 228,
flexDirection: 'row',
alignItems: "center",
padding: 8,
paddingBottom: 0
},
titleStyle: {
opacity: 1,
color: "rgba(20, 20, 20)",
fontStyle: "normal",
letterSpacing: -0.1,
textAlign: 'left',
lineHeight: 18,
},
subtitleStyle: {
color: 'rgba(20,20,20,0.58)',
},
imageStyle: {
height: 24,
width: 24,
tintColor: 'rgb(51, 153, 255)',
marginRight: 8,
}
});