const styles = StyleSheet.create({
container: {
padding: 10,
borderBottomColor: '#ededed',
borderBottomWidth: 1,
backgroundColor: 'transparent',
flexDirection: 'row',
},
thumbnail: {
width: 34,
height: 34,
borderRadius: 17
},
mainContainer: {
flex: 1,
flexDirection: 'column',
marginLeft: 10,
},
header: {
flexDirection: 'row',
},
userInfo: {
flex: 1,
flexDirection: 'row'
},
username: {
fontSize: normalize(16),
color: colors.grey1,
fontWeight: '800'
},
accountNo: {
color: colors.grey3,
fontSize: normalize(12),
marginLeft: 5,
marginTop: 3
},
postedAt: {
color: colors.grey3,
fontSize: normalize(12),
marginTop: 3
},
messageContainer: {
flexDirection: 'row',
marginTop: 10
},
});