mg-library 1.0.740 → 1.0.742
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 +4 -4
- package/package.json +1 -1
package/components.js
CHANGED
@@ -243,14 +243,14 @@ export function MGPopover(props) {
|
|
243
243
|
<PopoverArrow />
|
244
244
|
<PopoverBody>
|
245
245
|
<Box alignItems="center" justifyContent="center">
|
246
|
-
<Icon as={MaterialCommunityIcons} name="alert-outline" size={
|
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>
|
@@ -270,9 +270,9 @@ export function MGDivider({ style, ...props }) {
|
|
270
270
|
h="$0.55"
|
271
271
|
flexGrow={1}
|
272
272
|
alignSelf="stretch"
|
273
|
-
|
274
|
-
style={style}
|
273
|
+
style={style}
|
275
274
|
{...props}
|
275
|
+
bg="$gray400"
|
276
276
|
/>
|
277
277
|
);
|
278
278
|
}
|