import React from 'react'; import {View, StyleSheet, Text} from 'react-native'; import {Icon} from "native-base"; const IconCard = props => { return ( {props.label} {props.value} ); }; const styles = StyleSheet.create({ card : { flexDirection: 'row', backgroundColor: 'rgba(0, 0, 0, 0.2)', margin: 5, padding: 5, borderRadius: 3, justifyContent: 'space-between', } }); IconCard.defaultProps = { fontSize: 85 }; export default IconCard;