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
23 lines • 622 B
JavaScript
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 },
});
//# sourceMappingURL=styles.js.map