react-crud-mobile 1.0.502 → 1.0.504

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -9,7 +9,7 @@ import {
9
9
  StatusBar,
10
10
  SafeAreaView,
11
11
  } from 'react-native';
12
- import Icon from 'react-native-vector-icons/FontAwesome';
12
+ import { Ionicons } from '@expo/vector-icons';
13
13
  import UI from '../UI';
14
14
 
15
15
  export default function UISelect(props: ChildType) {
@@ -39,7 +39,7 @@ export default function UISelect(props: ChildType) {
39
39
  <Text style={style('selectLabel')}>
40
40
  {Utils.nvl(value, placeholder)}
41
41
  </Text>
42
- <Icon name="angle-down" size={20} color="#888" />
42
+ <Ionicons name="arrow-down" size={20} color="#888" />
43
43
  </TouchableOpacity>
44
44
  <Modal
45
45
  animationType="slide"