react-crud-mobile 1.0.712 → 1.0.714

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.
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.0.712",
2
+ "version": "1.0.714",
3
3
  "license": "MIT",
4
4
  "description": "Uma biblioteca de componentes para React Native",
5
5
  "main": "dist/index.js",
@@ -19,6 +19,7 @@ import {
19
19
  ScrollView,
20
20
  } from 'react-native';
21
21
  import UIChildren from '../UIChildren';
22
+ import { MaterialCommunityIcons } from '@expo/vector-icons';
22
23
 
23
24
  export default function UIModal(props: ChildType) {
24
25
  let [modalVisible, setModalVisible] = useState(false);
@@ -128,7 +129,12 @@ export default function UIModal(props: ChildType) {
128
129
  <SafeAreaView style={style('modalSafe')}>
129
130
  <View style={scope.getStyle('header', headerStyle)}>
130
131
  <TouchableOpacity onPress={onClose} style={style('modalCloseButton')}>
131
- <Text style={style('modalCloseText')}>X</Text>
132
+ <MaterialCommunityIcons
133
+ name="close-thick"
134
+ size={24}
135
+ color="white"
136
+ style={style('modalCloseText')}
137
+ />
132
138
  </TouchableOpacity>
133
139
  <Text style={style('modalTitle')}>{label}</Text>
134
140
  {!Utils.isEmpty(headerRight) && (