import React from 'react'; import { Text, View, StyleSheet } from 'react-native'; import PropTypes from 'prop-types'; import Avatar from '../containers/Avatar'; import Touch from '../utils/touch'; import { CustomIcon } from '../lib/Icons'; import sharedStyles from '../views/Styles'; import { COLOR_PRIMARY, COLOR_WHITE } from '../constants/colors'; const styles = StyleSheet.create({ button: { height: 54, backgroundColor: COLOR_WHITE }, container: { flexDirection: 'row' }, avatar: { marginHorizontal: 15, marginVertical: 12 }, textContainer: { flex: 1, flexDirection: 'column', justifyContent: 'center' }, name: { fontSize: 17, ...sharedStyles.textMedium, ...sharedStyles.textColorNormal }, username: { fontSize: 14, ...sharedStyles.textRegular, ...sharedStyles.textColorDescription }, icon: { marginHorizontal: 15, alignSelf: 'center', color: COLOR_PRIMARY } }); const UserItem = ({ name, username, onPress, testID, onLongPress, style, icon, baseUrl, user }) => ( {name} @{username} {icon ? : null} ); UserItem.propTypes = { name: PropTypes.string.isRequired, username: PropTypes.string.isRequired, user: PropTypes.shape({ id: PropTypes.string, token: PropTypes.string }), baseUrl: PropTypes.string.isRequired, onPress: PropTypes.func.isRequired, testID: PropTypes.string.isRequired, onLongPress: PropTypes.func, style: PropTypes.any, icon: PropTypes.string }; export default UserItem;