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