icône avec étiquette dans React Native

<TouchableOpacity onPress={() => {}} style={{ flexDirection: 'row' }}>
  	<Icon size={20} color='#333333' name='calendar' />
    <Text style={{ marginStart: 10 }}>Please select a date and time</Text>
</TouchableOpacity>
Lokesh003