@cometchat/chat-uikit-react-native
Version:
Ready-to-use Chat UI Components for React Native
24 lines (22 loc) • 529 B
text/typescript
import { StyleSheet } from 'react-native';
export const styles = StyleSheet.create({
container: { flex: 1, paddingLeft: 15, backgroundColor: '#fff' },
sectionDivider: {
height: 1,
marginTop: 20,
marginBottom: 10,
},
listItemContainer: {
flexDirection: 'row',
alignItems: 'center',
justifyContent: 'space-between',
paddingRight: 15,
paddingLeft: 5,
},
listItemTitle: {
fontSize: 16,
fontWeight: '600',
color: '#000',
},
listItemTailIcon: { height: 12, width: 12 },
});