import React from 'react'; import { View, Text, StyleSheet } from 'react-native'; import { Icon } from 'react-native-elements'; const IconLabel = ({ name, label, color }) => { return ( {label} ); }; const styles = StyleSheet.create({ container: { flexDirection: 'row', marginRight: 10, alignItems: 'center', }, labelStyle: { fontSize: 12, color: 'white', }, iconStyle: { marginRight: 2, }, }); export default IconLabel;