import React from 'react'; import {View, StyleSheet, Text} from 'react-native'; import { LinearGradient } from 'expo-linear-gradient'; const PropValueCard = props => { return ( {props.label} {props.value} ); }; const styles = StyleSheet.create({ gradient : { flex: 1, padding: 15, alignItems: 'center', borderRadius: 16, margin:15, marginRight: 4, height:120, justifyContent:'center', } }); export default PropValueCard;