mg-library 1.0.739 → 1.0.741
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/components.js +3 -3
- package/package.json +1 -1
package/components.js
CHANGED
@@ -242,15 +242,15 @@ export function MGPopover(props) {
|
|
242
242
|
<PopoverContent w={300} bg="$white" zIndex={9999} elevation={24}>
|
243
243
|
<PopoverArrow />
|
244
244
|
<PopoverBody>
|
245
|
-
<Box
|
246
|
-
<Icon as={MaterialCommunityIcons} name="alert-outline" size=
|
245
|
+
<Box alignItems="center" justifyContent="center">
|
246
|
+
<Icon as={MaterialCommunityIcons} name="alert-outline" size={48} color="$primary500" mb="$3" />
|
247
247
|
<MGText textAlign="center">
|
248
248
|
{mgFunctionsLib.i18nString('confirm', language)}?
|
249
249
|
</MGText>
|
250
250
|
</Box>
|
251
251
|
</PopoverBody>
|
252
252
|
<PopoverFooter>
|
253
|
-
<Box flex={1} flexDirection="row" justifyContent="space-around" mt="$
|
253
|
+
<Box flex={1} flexDirection="row" justifyContent="space-around" mt="$2" mb="$2">
|
254
254
|
<Button h={50} action="primary" variant="solid" onPress={handleConfirm}>
|
255
255
|
<ButtonText>{mgFunctionsLib.i18nString('yes', language)}</ButtonText>
|
256
256
|
</Button>
|