diff --git a/package.json b/package.json index 0c590c8a8fd..575dceea12e 100644 --- a/package.json +++ b/package.json @@ -53,7 +53,7 @@ }, "dependencies": { "@gorhom/bottom-sheet": "^4.1.5", - "@pagopa/io-app-design-system": "4.3.0", + "@pagopa/io-app-design-system": "4.4.3", "@pagopa/io-pagopa-commons": "^3.1.0", "@pagopa/io-react-native-cieid": "^0.3.5", "@pagopa/io-react-native-crypto": "^1.0.1", diff --git a/ts/components/__tests__/__snapshots__/IOMarkdown.test.tsx.snap b/ts/components/__tests__/__snapshots__/IOMarkdown.test.tsx.snap index 09fa05dd049..88fbf52fb55 100644 --- a/ts/components/__tests__/__snapshots__/IOMarkdown.test.tsx.snap +++ b/ts/components/__tests__/__snapshots__/IOMarkdown.test.tsx.snap @@ -3,9 +3,9 @@ exports[`IOMarkdown Should match snapshot 1`] = ` { key={i} value={ countAvailable ? ( - +
{I18n.t(s.nameKey)}
diff --git a/ts/features/cie/__tests__/__snapshots__/CieIdErrorScreen.test.tsx.snap b/ts/features/cie/__tests__/__snapshots__/CieIdErrorScreen.test.tsx.snap index e5dd874f689..8ec975b3ba1 100644 --- a/ts/features/cie/__tests__/__snapshots__/CieIdErrorScreen.test.tsx.snap +++ b/ts/features/cie/__tests__/__snapshots__/CieIdErrorScreen.test.tsx.snap @@ -182,9 +182,9 @@ exports[`CieIdErrorScreen where device doesn't support NFC Should match the snap />
- - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - + - + + - - - + } + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + { diff --git a/ts/features/design-system/core/DSListItems.tsx b/ts/features/design-system/core/DSListItems.tsx index 637ee7ebc60..dc244bed5f9 100644 --- a/ts/features/design-system/core/DSListItems.tsx +++ b/ts/features/design-system/core/DSListItems.tsx @@ -1,7 +1,9 @@ import * as React from "react"; import { + Badge, Divider, + H6, H4, Icon, ListItemAction, @@ -15,7 +17,7 @@ import { VStack, useIOTheme } from "@pagopa/io-app-design-system"; -import { Alert } from "react-native"; +import { Alert, View } from "react-native"; import I18n from "../../../i18n"; import { DSComponentViewerBox } from "../components/DSComponentViewerBox"; @@ -105,11 +107,39 @@ const renderListItemNav = () => ( /> + +
Nome del valoreeeeee eeeeeeeeee
+ +
+ } + onPress={onButtonPress} + /> + + +
- { + const theme = useIOTheme(); const dispatch = useIODispatch(); const store = useIOStore(); const serviceId = consents.service_id as ServiceId; @@ -111,15 +114,19 @@ export const FimsFlowSuccessBody = ({ ]} > - + + {/* TODO: We need to add a variant of `Avatar` that + lets you set a custom icon with a custom colour. */} - + - - - +

{I18n.t("FIMS.consentsScreen.title")}

@@ -195,10 +202,14 @@ const generateBottomSheetProps = ( const styles = StyleSheet.create({ outlineContainer: { - padding: 6, borderWidth: 1, + padding: 8, + alignItems: "center", + justifyContent: "center", borderRadius: 8, - borderColor: hexToRgba(IOColors.black, 0.1) - }, - rowAlignCenter: { flexDirection: "row", alignItems: "center" } + borderColor: hexToRgba(IOColors.black, 0.1), + borderCurve: "continuous", + width: IOVisualCostants.avatarSizeSmall, + height: IOVisualCostants.avatarSizeSmall + } }); diff --git a/ts/features/idpay/configuration/screens/IbanOnboardingScreen.tsx b/ts/features/idpay/configuration/screens/IbanOnboardingScreen.tsx index 0b0cb80d3ef..654557777f6 100644 --- a/ts/features/idpay/configuration/screens/IbanOnboardingScreen.tsx +++ b/ts/features/idpay/configuration/screens/IbanOnboardingScreen.tsx @@ -83,7 +83,7 @@ export const IbanOnboardingScreen = () => { } ]} > - + {I18n.t("idpay.configuration.iban.onboarding.bottomLabel")} diff --git a/ts/features/idpay/wallet/components/__tests__/__snapshots__/IdPayCard.test.tsx.snap b/ts/features/idpay/wallet/components/__tests__/__snapshots__/IdPayCard.test.tsx.snap index 4748cfdddeb..ac799d40faf 100644 --- a/ts/features/idpay/wallet/components/__tests__/__snapshots__/IdPayCard.test.tsx.snap +++ b/ts/features/idpay/wallet/components/__tests__/__snapshots__/IdPayCard.test.tsx.snap @@ -44,10 +44,10 @@ exports[`IdPayCard should match the snapshot 1`] = ` } >
; - onClaimSelected?: (claim: ItwOptionalClaimItem, isSelected: boolean) => void; -}; - -/** - * Type for a claim item. - */ -export type ItwOptionalClaimItem = { - claim: string; - credential: string; -}; - -const VERTICAL_SPACING = 16; - -const HORIZONTAL_SPACING = 24; - -/** - * A component to render a list of optional claims with a checkbox. - * @param claims - the list of the optional claims - * @param onClaimSelected - the callback function to be called when a claim is selected - */ -export const ItwOptionalClaimsList = ({ claims, onClaimSelected }: Props) => { - const [selectedClaims, setSelectedClaims] = React.useState>( - new Array(claims.length).fill(false) - ); - - const checkBoxOnPress = (index: number) => { - if (onClaimSelected) { - onClaimSelected(claims[index], !selectedClaims[index]); - } - setSelectedClaims( - selectedClaims.map((value, i) => (i === index ? !value : value)) - ); - }; - - return ( - - {pipe( - claims, - RA.mapWithIndex((index, claim) => ( - - checkBoxOnPress(index)} - > - - -
{claim.claim}
- - - -
- - {I18n.t("features.itWallet.generic.dataSource.single", { - authSource: claim.credential - })} - -
-
- {/* Add a separator view between claims */} - {index !== claims.length - 1 && } -
- )) - )} -
- ); -}; - -const styles = StyleSheet.create({ - container: { - backgroundColor: IOColors.greyUltraLight, - borderRadius: 8, - paddingHorizontal: HORIZONTAL_SPACING - }, - innerContainer: { - paddingVertical: VERTICAL_SPACING - } -}); diff --git a/ts/features/itwallet/common/components/__tests__/__snapshots__/ItwCredentialCard.test.tsx.snap b/ts/features/itwallet/common/components/__tests__/__snapshots__/ItwCredentialCard.test.tsx.snap index 07784bd925f..82a40d8aee1 100644 --- a/ts/features/itwallet/common/components/__tests__/__snapshots__/ItwCredentialCard.test.tsx.snap +++ b/ts/features/itwallet/common/components/__tests__/__snapshots__/ItwCredentialCard.test.tsx.snap @@ -65,7 +65,7 @@ exports[`ItwCredentialCard should match snapshot when credential type is "Europe } >
- - - + - + - + ; }; -const avatarContainerSize: IOIconSizeScale = 30; +const avatarContainerSize = 30; const avatarDoubleRadiusSizeSmall: number = 6; const internalSpaceDefaultSize: number = 3; const internalSpacePlaceholderDefaultSize: IOSpacingScale = 6; diff --git a/ts/features/messages/components/Home/__tests__/__snapshots__/EmptyList.test.tsx.snap b/ts/features/messages/components/Home/__tests__/__snapshots__/EmptyList.test.tsx.snap index 27dbc1a3f1b..1f77387f715 100644 --- a/ts/features/messages/components/Home/__tests__/__snapshots__/EmptyList.test.tsx.snap +++ b/ts/features/messages/components/Home/__tests__/__snapshots__/EmptyList.test.tsx.snap @@ -515,9 +515,9 @@ exports[`EmptyList should match snapshot, ARCHIVE category, pot.none 1`] = ` /> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - @@ -1481,10 +1478,10 @@ exports[`MessageDetailsReminder should match snapshot when the reminder is visib accessibilityLabel="" accessible={false} align="xMidYMid" - bbHeight={24} - bbWidth={24} + bbHeight={36} + bbWidth={36} focusable={false} - height={24} + height={36} importantForAccessibility="no-hide-descendants" meetOrSlice={0} minX={0} @@ -1500,15 +1497,15 @@ exports[`MessageDetailsReminder should match snapshot when the reminder is visib }, { "flex": 0, - "height": 24, - "width": 24, + "height": 36, + "width": 36, }, ] } tintColor="#614C15" vbHeight={24} vbWidth={24} - width={24} + width={36} > - - - - Expires on 21/03/2024 at 18:44 - - - Add reminder - + + + Expires on 21/03/2024 at 18:44 + + + Add reminder + + + @@ -1961,14 +1961,9 @@ exports[`MessageDetailsReminder should match snapshot when the reminder is visib accessible={false} style={ [ - { - "alignContent": "center", - "alignItems": "flex-start", - "flexDirection": "row", - }, { "borderCurve": "continuous", - "borderRadius": 8, + "borderRadius": 12, "padding": 16, }, { @@ -1981,8 +1976,10 @@ exports[`MessageDetailsReminder should match snapshot when the reminder is visib @@ -1991,10 +1988,10 @@ exports[`MessageDetailsReminder should match snapshot when the reminder is visib accessibilityLabel="" accessible={false} align="xMidYMid" - bbHeight={24} - bbWidth={24} + bbHeight={36} + bbWidth={36} focusable={false} - height={24} + height={36} importantForAccessibility="no-hide-descendants" meetOrSlice={0} minX={0} @@ -2010,15 +2007,15 @@ exports[`MessageDetailsReminder should match snapshot when the reminder is visib }, { "flex": 0, - "height": 24, - "width": 24, + "height": 36, + "width": 36, }, ] } tintColor="#614C15" vbHeight={24} vbWidth={24} - width={24} + width={36} > - - - - Expired on 21 Mar at 18:44 - + + + Expired on 21 Mar at 18:44 + + + @@ -744,10 +741,10 @@ exports[`MessageDetailsReminderExpired should match snapshot when not loading 1` accessibilityLabel="" accessible={false} align="xMidYMid" - bbHeight={24} - bbWidth={24} + bbHeight={36} + bbWidth={36} focusable={false} - height={24} + height={36} importantForAccessibility="no-hide-descendants" meetOrSlice={0} minX={0} @@ -763,15 +760,15 @@ exports[`MessageDetailsReminderExpired should match snapshot when not loading 1` }, { "flex": 0, - "height": 24, - "width": 24, + "height": 36, + "width": 36, }, ] } tintColor="#614C15" vbHeight={24} vbWidth={24} - width={24} + width={36} > - - - - Expired on 21 Mar at 10:33 - + + + Expired on 21 Mar at 10:33 + + + diff --git a/ts/features/messages/components/MessageDetail/__tests__/__snapshots__/MessageDetailsReminderExpiring.test.tsx.snap b/ts/features/messages/components/MessageDetail/__tests__/__snapshots__/MessageDetailsReminderExpiring.test.tsx.snap index bf87d7bb537..eaf911c889a 100644 --- a/ts/features/messages/components/MessageDetail/__tests__/__snapshots__/MessageDetailsReminderExpiring.test.tsx.snap +++ b/ts/features/messages/components/MessageDetail/__tests__/__snapshots__/MessageDetailsReminderExpiring.test.tsx.snap @@ -371,14 +371,9 @@ exports[`MessageDetailsReminderExpiring should match snapshot 1`] = ` @@ -407,10 +404,10 @@ exports[`MessageDetailsReminderExpiring should match snapshot 1`] = ` accessibilityLabel="" accessible={false} align="xMidYMid" - bbHeight={24} - bbWidth={24} + bbHeight={36} + bbWidth={36} focusable={false} - height={24} + height={36} importantForAccessibility="no-hide-descendants" meetOrSlice={0} minX={0} @@ -426,15 +423,15 @@ exports[`MessageDetailsReminderExpiring should match snapshot 1`] = ` }, { "flex": 0, - "height": 24, - "width": 24, + "height": 36, + "width": 36, }, ] } tintColor="#614C15" vbHeight={24} vbWidth={24} - width={24} + width={36} > - - - - Expires on 21/03/2024 at 10:33 - - - Add reminder - + + + Expires on 21/03/2024 at 10:33 + + + Add reminder + + + diff --git a/ts/features/messages/components/MessageDetail/__tests__/__snapshots__/MessageDetailsStickyFooter.test.tsx.snap b/ts/features/messages/components/MessageDetail/__tests__/__snapshots__/MessageDetailsStickyFooter.test.tsx.snap index 0ba0ef71a0c..a0cd3726db8 100644 --- a/ts/features/messages/components/MessageDetail/__tests__/__snapshots__/MessageDetailsStickyFooter.test.tsx.snap +++ b/ts/features/messages/components/MessageDetail/__tests__/__snapshots__/MessageDetailsStickyFooter.test.tsx.snap @@ -427,7 +427,6 @@ exports[`MessageDetailsStickyFooter should match snapshot with both CTAs and no } > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -2383,6 +2363,9 @@ exports[`ShowMoreListItem should match snapshot, one section, one item, with ico "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -2393,75 +2376,67 @@ exports[`ShowMoreListItem should match snapshot, one section, one item, with ico ] } > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -3261,6 +3162,9 @@ exports[`ShowMoreListItem should match snapshot, one section, two items, no icon "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -3271,75 +3175,67 @@ exports[`ShowMoreListItem should match snapshot, one section, two items, no icon ] } > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -3726,6 +3617,9 @@ exports[`ShowMoreListItem should match snapshot, one section, two items, no icon "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -3744,9 +3638,9 @@ exports[`ShowMoreListItem should match snapshot, one section, two items, no icon } > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + +
@@ -4267,6 +4153,9 @@ exports[`ShowMoreListItem should match snapshot, one section, two items, with ic "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -4277,75 +4166,67 @@ exports[`ShowMoreListItem should match snapshot, one section, two items, with ic ] } > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + +
@@ -4801,6 +4608,9 @@ exports[`ShowMoreListItem should match snapshot, one section, two items, with ic "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -4811,75 +4621,6 @@ exports[`ShowMoreListItem should match snapshot, one section, two items, with ic ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + +
@@ -5411,6 +5144,9 @@ exports[`ShowMoreListItem should match snapshot, three sections, different item "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -5421,75 +5157,67 @@ exports[`ShowMoreListItem should match snapshot, three sections, different item ] } > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + +
@@ -5844,9 +5567,9 @@ exports[`ShowMoreListItem should match snapshot, three sections, different item importantForAccessibility="yes" >
- - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + +
@@ -6123,6 +5841,9 @@ exports[`ShowMoreListItem should match snapshot, three sections, different item "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -6133,75 +5854,6 @@ exports[`ShowMoreListItem should match snapshot, three sections, different item ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + +
@@ -6357,9 +6001,9 @@ exports[`ShowMoreListItem should match snapshot, three sections, different item importantForAccessibility="yes" >
- - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + +
@@ -6636,6 +6275,9 @@ exports[`ShowMoreListItem should match snapshot, three sections, different item "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -6646,75 +6288,6 @@ exports[`ShowMoreListItem should match snapshot, three sections, different item ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + +
@@ -6902,6 +6467,9 @@ exports[`ShowMoreListItem should match snapshot, three sections, different item "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -6920,9 +6488,9 @@ exports[`ShowMoreListItem should match snapshot, three sections, different item } >
- - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + +
@@ -7443,6 +7003,9 @@ exports[`ShowMoreListItem should match snapshot, two sections, different item co "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -7453,75 +7016,67 @@ exports[`ShowMoreListItem should match snapshot, two sections, different item co ] } > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + +
@@ -7876,9 +7426,9 @@ exports[`ShowMoreListItem should match snapshot, two sections, different item co importantForAccessibility="yes" >
- - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + +
@@ -8155,6 +7700,9 @@ exports[`ShowMoreListItem should match snapshot, two sections, different item co "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -8165,75 +7713,6 @@ exports[`ShowMoreListItem should match snapshot, two sections, different item co ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + diff --git a/ts/features/messages/screens/__tests__/__snapshots__/MessageAttachment.test.tsx.snap b/ts/features/messages/screens/__tests__/__snapshots__/MessageAttachment.test.tsx.snap index 389f0a771a9..ebae018d53e 100644 --- a/ts/features/messages/screens/__tests__/__snapshots__/MessageAttachment.test.tsx.snap +++ b/ts/features/messages/screens/__tests__/__snapshots__/MessageAttachment.test.tsx.snap @@ -419,9 +419,9 @@ exports[`MessageAttachment Should match the snapshot when everything went fine 1 > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -1309,6 +1235,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -1319,75 +1248,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -1565,6 +1417,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -1575,75 +1430,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -1818,9 +1596,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -3466,6 +3168,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -3476,75 +3181,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -3722,6 +3350,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -3732,75 +3363,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -3975,9 +3529,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -5604,6 +5082,9 @@ Controlla di aver seguito correttamente le istruzioni della tua banca. "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -5614,75 +5095,6 @@ Controlla di aver seguito correttamente le istruzioni della tua banca. ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -5860,6 +5264,9 @@ Controlla di aver seguito correttamente le istruzioni della tua banca. "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -5870,75 +5277,6 @@ Controlla di aver seguito correttamente le istruzioni della tua banca. ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -6113,9 +5443,9 @@ Controlla di aver seguito correttamente le istruzioni della tua banca. > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -7727,6 +6981,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -7737,75 +6994,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -7983,6 +7163,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -7993,75 +7176,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -8236,9 +7342,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -9864,6 +8894,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -9874,75 +8907,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -10120,6 +9076,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -10130,75 +9089,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -10373,9 +9255,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -12069,6 +10878,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -12079,75 +10891,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -12325,6 +11060,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -12335,75 +11073,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -12578,9 +11239,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -14246,6 +12834,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -14256,75 +12847,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -14502,6 +13016,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -14512,75 +13029,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -14755,9 +13195,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -16369,6 +14733,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -16379,75 +14746,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -16625,6 +14915,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -16635,75 +14928,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -16878,9 +15094,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -18442,6 +16582,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -18452,75 +16595,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -18698,6 +16764,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -18708,75 +16777,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -18951,9 +16943,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -20599,6 +18515,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -20609,75 +18528,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -20855,6 +18697,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -20865,75 +18710,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -21108,9 +18876,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -22736,6 +20428,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -22746,75 +20441,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -22992,6 +20610,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -23002,75 +20623,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -23245,9 +20789,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -24893,6 +22361,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -24903,75 +22374,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -25149,6 +22543,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -25159,75 +22556,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -25402,9 +22722,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -27098,6 +24345,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -27108,75 +24358,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -27354,6 +24527,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -27364,75 +24540,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -27607,9 +24706,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -29255,6 +26278,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -29265,75 +26291,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -29511,6 +26460,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -29521,75 +26473,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -29764,9 +26639,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -31412,6 +28211,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -31422,75 +28224,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -31668,6 +28393,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -31678,75 +28406,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -31921,9 +28572,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -33577,6 +30152,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -33587,75 +30165,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -33833,6 +30334,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -33843,75 +30347,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -34086,9 +30513,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -35714,6 +32065,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -35724,75 +32078,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -35970,6 +32247,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -35980,75 +32260,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -36223,9 +32426,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -37921,6 +34051,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -37931,75 +34064,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -38177,6 +34233,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -38187,75 +34246,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -38430,9 +34412,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -40058,6 +35964,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -40068,75 +35977,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -40314,6 +36146,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -40324,75 +36159,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -40567,9 +36325,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -42313,6 +37998,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -42323,75 +38011,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -42569,6 +38180,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -42579,75 +38193,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -42822,9 +38359,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -44604,6 +40065,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -44614,75 +40078,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -44860,6 +40247,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -44870,75 +40260,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -45113,9 +40426,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -46812,6 +42052,9 @@ Se il problema persiste, prova a usare un altro metodo o gestore del pagamento. "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -46822,75 +42065,6 @@ Se il problema persiste, prova a usare un altro metodo o gestore del pagamento. ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -47068,6 +42234,9 @@ Se il problema persiste, prova a usare un altro metodo o gestore del pagamento. "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -47078,75 +42247,6 @@ Se il problema persiste, prova a usare un altro metodo o gestore del pagamento. ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -47321,9 +42413,9 @@ Se il problema persiste, prova a usare un altro metodo o gestore del pagamento. > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -49081,6 +44100,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -49091,75 +44113,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -49337,6 +44282,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -49347,75 +44295,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -49590,9 +44461,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -51204,6 +45999,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -51214,75 +46012,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -51460,6 +46181,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -51470,75 +46194,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -51713,9 +46360,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -53369,6 +47940,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -53379,75 +47953,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -53625,6 +48122,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -53635,75 +48135,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -53878,9 +48301,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -55506,6 +49853,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -55516,75 +49866,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -55762,6 +50035,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -55772,75 +50048,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -56015,9 +50214,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -57663,6 +51786,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -57673,75 +51799,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -57919,6 +51968,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -57929,75 +51981,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -58172,9 +52147,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay > - - - - - - - - - - - - - - - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -2870,9 +2786,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -3573,6 +3415,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -3583,75 +3428,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -6040,9 +5798,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -6356,9 +6040,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -7059,6 +6669,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -7069,75 +6682,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -9526,9 +9052,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -10229,6 +9681,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -10239,75 +9694,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -12696,9 +12064,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -13399,6 +12693,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -13409,75 +12706,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -15866,9 +15076,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -16569,6 +15705,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -16579,75 +15718,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -19036,9 +18088,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -19739,6 +18717,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -19749,75 +18730,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -22206,9 +21100,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -22909,6 +21729,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -22919,75 +21742,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -25376,9 +24112,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -26079,6 +24741,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -26089,75 +24754,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -28546,9 +27124,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -29249,6 +27753,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -29259,75 +27766,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -31716,9 +30136,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -32419,6 +30765,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -32429,75 +30778,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -34886,9 +33148,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -35202,9 +33390,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -35905,6 +34019,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -35915,75 +34032,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -38372,9 +36402,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -39075,6 +37031,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -39085,75 +37044,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -41542,9 +39414,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -41858,9 +39656,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -42206,6 +39930,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -42216,75 +39943,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -42440,9 +40090,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -42788,6 +40364,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -42798,75 +40377,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -43022,9 +40524,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -43370,6 +40798,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -43380,75 +40811,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -43991,6 +41345,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -44001,75 +41358,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -46458,9 +43728,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -46774,9 +43970,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -47122,6 +44244,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -47132,75 +44257,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -47356,9 +44404,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -47704,6 +44678,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -47714,75 +44691,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -47938,9 +44838,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -48286,6 +45112,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -48296,75 +45125,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -48907,6 +45659,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -48917,75 +45672,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -51374,9 +48042,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -51690,9 +48284,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -52038,6 +48558,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -52048,75 +48571,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -52272,9 +48718,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -52620,6 +48992,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -52630,75 +49005,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -52854,9 +49152,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -53202,6 +49426,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -53212,75 +49439,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -53823,6 +49973,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -53833,75 +49986,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -56290,9 +52356,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -56606,9 +52598,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -56954,6 +52872,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -56964,75 +52885,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -57188,9 +53032,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -57536,6 +53306,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -57546,75 +53319,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -57770,9 +53466,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - + Notice code + + - + + + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + + + + + + + + - Notice code - - - 1111 2222 3333 4444 02 - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -58739,6 +54287,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -58749,75 +54300,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -61206,9 +56670,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -61522,9 +56912,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -61870,6 +57186,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -61880,75 +57199,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -62104,9 +57346,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -62452,6 +57620,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -62462,75 +57633,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -62686,9 +57780,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -63034,6 +58054,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -63044,75 +58067,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -63655,6 +58601,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -63665,75 +58614,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -66122,9 +60984,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -66438,9 +61226,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -66786,6 +61500,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -66796,75 +61513,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -67020,9 +61660,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -67368,6 +61934,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -67378,75 +61947,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -67602,9 +62094,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -67950,6 +62368,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -67960,75 +62381,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -68571,6 +62915,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -68581,75 +62928,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -71038,9 +65298,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -71741,6 +65927,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -71751,75 +65940,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -74208,9 +68310,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -74524,9 +68552,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -75227,6 +69181,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -75237,75 +69194,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -77694,9 +71564,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -78397,6 +72193,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -78407,75 +72206,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - + Codice IUN + + - + + + + - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + + + + + + + + + + Message + + + + + + + - Codice IUN + Message ID - randomIUN + 01HVPB9XYZMWNEPTDKZJ8ZJV28 - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - Message - - - - - - - - - - - - - - - - - - Message ID - - - 01HVPB9XYZMWNEPTDKZJ8ZJV28 - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -81528,6 +75092,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -81538,75 +75105,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -82149,6 +75639,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -82159,75 +75652,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - + Codice IUN + + - + + + + - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + + + + + + + + + + Message + + + + + + + - Codice IUN + Message ID - randomIUN + 01HVPB9XYZMWNEPTDKZJ8ZJV28 - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - Message - - - - - - - - - - - - - - - - - - Message ID - - - 01HVPB9XYZMWNEPTDKZJ8ZJV28 - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -85280,6 +78538,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -85290,75 +78551,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -85901,6 +79085,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -85911,75 +79098,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - + Codice IUN + + - + + + + - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + + + + + + + + + + Message + + + + + + + - Codice IUN + Message ID - randomIUN + 01HVPB9XYZMWNEPTDKZJ8ZJV28 - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - Message - - - - - - - - - - - - - - - - - - Message ID - - - 01HVPB9XYZMWNEPTDKZJ8ZJV28 - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -89032,6 +81984,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -89042,75 +81997,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -89653,6 +82531,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -89663,75 +82544,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - + Codice IUN + + - + + + + - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + + + + + + + + + + Message + + + + + + + - Codice IUN + Message ID - randomIUN + 01HVPB9XYZMWNEPTDKZJ8ZJV28 - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - Message - - - - - - - - - - - - - - - - - - Message ID - - - 01HVPB9XYZMWNEPTDKZJ8ZJV28 - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -92784,6 +85430,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -92794,75 +85443,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -93405,6 +85977,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -93415,75 +85990,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - + Codice IUN + + - + + + + - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + + + + + + + + + + Message + + + + + + + - Codice IUN + Message ID - randomIUN + 01HVPB9XYZMWNEPTDKZJ8ZJV28 - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - Message - - - - - - - - - - - - - - - - - - Message ID - - - 01HVPB9XYZMWNEPTDKZJ8ZJV28 - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -96536,6 +88876,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -96546,75 +88889,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -97157,6 +89423,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -97167,75 +89436,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - + Codice IUN + + - + + + + - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + + + + + + + + + + Message + + + + + + + - Codice IUN + Message ID - randomIUN + 01HVPB9XYZMWNEPTDKZJ8ZJV28 - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - Message - - - - - - - - - - - - - - - - - - Message ID - - - 01HVPB9XYZMWNEPTDKZJ8ZJV28 - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -100288,6 +92322,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -100298,75 +92335,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -100909,6 +92869,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -100919,75 +92882,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -103376,9 +95252,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -104079,6 +95881,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -104089,75 +95894,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -106546,9 +98264,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -106862,9 +98506,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -107565,6 +99135,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -107575,75 +99148,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -110032,9 +101518,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -110735,6 +102147,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -110745,75 +102160,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -113202,9 +104530,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -113905,6 +105159,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -113915,75 +105172,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -116372,9 +107542,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -117075,6 +108171,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -117085,75 +108184,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -119542,9 +110554,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -120245,6 +111183,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -120255,75 +111196,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -122712,9 +113566,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -123415,6 +114195,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -123425,75 +114208,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -125882,9 +116578,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -126585,6 +117207,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -126595,75 +117220,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -129052,9 +119590,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -129755,6 +120219,9 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, ca "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -129765,75 +120232,67 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, ca ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -130467,9 +120847,9 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, ca importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -131170,6 +121476,9 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, ca "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -131180,75 +121489,67 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, ca ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -131882,9 +122104,9 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, ca importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -132198,9 +122346,9 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, ca importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -132901,6 +122975,9 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, ca "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -132911,75 +122988,67 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, ca ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -133613,9 +123603,9 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, ca importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -134316,6 +124232,9 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, no "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -134326,75 +124245,67 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, no ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -135028,9 +124860,9 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, no importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -135731,6 +125489,9 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, no "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -135741,75 +125502,67 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, no ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -136443,9 +126117,9 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, no importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -137146,6 +126746,9 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, no "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -137156,75 +126759,67 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, no ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -137858,9 +127374,9 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, no importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -138561,6 +128003,9 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, un "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -138571,75 +128016,67 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, un ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -139273,9 +128631,9 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, un importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -139976,6 +129260,9 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, un "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -139986,75 +129273,67 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, un ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -140688,9 +129888,9 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, un importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -141391,6 +130517,9 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, un "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -141401,75 +130530,67 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, un ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -142103,9 +131145,9 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, un importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -142806,6 +131774,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -142816,75 +131787,67 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -143518,9 +132402,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -144221,6 +133031,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -144231,75 +133044,67 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -144933,9 +133659,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -145249,9 +133901,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -145952,6 +134530,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -145962,75 +134543,272 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, ] } > + + + + + - - + + + + + + + + + + + + + + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - Stato della notifica - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -146664,9 +135158,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -147367,6 +135787,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -147377,75 +135800,67 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - + Codice IUN + + - + + + + - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + + + + + + + + + + Message + + + + + + + - Codice IUN + Message ID - randomIUN + 01HVPB9XYZMWNEPTDKZJ8ZJV28 - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - Message + pagoPA notice 1 - + Notice code + + - + + + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + + + + + + + + - Message ID + Payee fiscal code - 01HVPB9XYZMWNEPTDKZJ8ZJV28 + 01234567890 - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - pagoPA notice 1 + pagoPA notice 2 @@ -148477,6 +137173,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -148487,75 +137186,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, ] } > - - - - - - - - 1111 2222 3333 4444 00 + 1111 2222 3333 4444 01 - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -148743,6 +137365,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -148753,75 +137378,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - pagoPA notice 2 + pagoPA notice 3 @@ -149059,6 +137607,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -149069,75 +137620,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, ] } > - - - - - - - - 1111 2222 3333 4444 01 - - - - - - - - - - - - - - - - - - - - - - - - - - Payee fiscal code - - - 01234567890 + 1111 2222 3333 4444 02 - - - + - - - - - - - - - - - - - pagoPA notice 3 - - - - - - - - - - - - - - - - - - Notice code - - - 1111 2222 3333 4444 02 - - - - - - - - - + /> + + @@ -149907,6 +137799,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -149917,75 +137812,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -150528,6 +138346,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -150538,75 +138359,67 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -151240,9 +138974,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -151556,9 +139216,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -151904,6 +139490,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -151914,75 +139503,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -152138,9 +139650,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -152486,6 +139924,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -152496,75 +139937,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -152720,9 +140084,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -153068,6 +140358,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -153078,75 +140371,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -153689,6 +140905,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -153699,75 +140918,67 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -154401,9 +141533,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -154717,9 +141775,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -155065,6 +142049,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -155075,75 +142062,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -155299,9 +142209,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -155647,6 +142483,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -155657,75 +142496,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -155881,9 +142643,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -156229,6 +142917,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -156239,75 +142930,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -156850,6 +143464,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -156860,75 +143477,67 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - Notifica - - - - - - - - - - - - - - - - - - Codice IUN - - - randomIUN - - - - - - - - - - - - - - - - - - Message + Notifica - + Codice IUN + + - + + + + - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + + + + + + + + + + Message + + + + + + + - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -157878,9 +144334,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -158226,6 +144608,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -158236,75 +144621,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -158460,9 +144768,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -158808,6 +145042,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -158818,75 +145055,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -159042,9 +145202,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -159390,6 +145476,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -159400,75 +145489,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -160011,6 +146023,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -160021,75 +146036,67 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -160723,9 +146651,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -161039,9 +146893,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -161387,6 +147167,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -161397,75 +147180,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -161621,9 +147327,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -161969,6 +147601,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -161979,75 +147614,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -162203,9 +147761,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -162551,6 +148035,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -162561,75 +148048,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -163172,6 +148582,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -163182,75 +148595,67 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -163884,9 +149210,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -164200,9 +149452,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -164548,6 +149726,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -164558,75 +149739,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -164782,9 +149886,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -165130,6 +150160,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -165140,75 +150173,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -165364,9 +150320,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -165712,6 +150594,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -165722,75 +150607,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -166333,6 +151141,9 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, cance "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -166343,75 +151154,67 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, cance ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -167045,9 +151769,9 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, cance importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -167748,6 +152398,9 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, cance "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -167758,75 +152411,67 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, cance ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -168460,9 +153026,9 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, cance importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -168776,9 +153268,9 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, cance importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -169479,6 +153897,9 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, cance "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -169489,75 +153910,67 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, cance ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -170191,9 +154525,9 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, cance importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -170894,6 +155154,9 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, not c "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -170904,75 +155167,67 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, not c ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - Notifica - - - - - - - - - - - - - - - - - - Codice IUN - - - randomIUN - - - - - - - - - - - - - - - - - - Message + Notifica - + Codice IUN + + - + + + + - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + + + + + + + + + + Message + + + + + + + - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -171922,9 +156024,9 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, not c importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -172270,6 +156298,9 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, not c "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -172280,75 +156311,6 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, not c ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -172891,6 +156845,9 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, not c "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -172901,75 +156858,67 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, not c ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -173603,9 +157473,9 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, not c importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -173919,9 +157715,9 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, not c importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -174267,6 +157989,9 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, not c "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -174277,75 +158002,6 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, not c ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -174888,6 +158536,9 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, not c "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -174898,75 +158549,67 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, not c ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - Notifica - - - - - - - - - - - - - - - - - - Codice IUN - - - randomIUN - - - - - - - - - - - - - - - - - - Message + Notifica - + Codice IUN + + - + + + + - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + + + + + + + + + + Message + + + + + + + - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -175916,9 +159406,9 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, not c importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -176264,6 +159680,9 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, not c "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -176274,75 +159693,6 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, not c ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -176885,6 +160227,9 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, undef "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -176895,75 +160240,67 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, undef ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -177597,9 +160855,9 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, undef importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -177913,9 +161097,9 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, undef importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -178261,6 +161371,9 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, undef "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -178271,75 +161384,6 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, undef ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -178882,6 +161918,9 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, undef "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -178892,75 +161931,67 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, undef ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -179594,9 +162546,9 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, undef importantForAccessibility="yes" > - - - - - - - - - Message ID - - - 01HVPB9XYZMWNEPTDKZJ8ZJV28 - - - - - - - - - - - - - - - - - - pagoPA notice - - - - - - - - - - + Message ID + + - + + + + - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + + + + + + + + + + pagoPA notice + + + + + + + - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -180258,6 +163062,9 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, undef "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -180268,75 +163075,6 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, undef ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -180879,6 +163609,9 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, undef "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -180889,75 +163622,67 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, undef ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -181591,9 +164237,9 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, undef importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -181907,9 +164479,9 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, undef importantForAccessibility="yes" > - - - - - - - - - - Notice code - - - 1111 2222 3333 4444 00 - - - - - - - - - - - - - - - - - - - - - - - - Payee fiscal code + Notice code - 01234567890 + 1111 2222 3333 4444 00 + + + + + + + + + + + + - + Payee fiscal code + + - + + + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -182876,6 +165300,9 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -182886,75 +165313,67 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -183588,9 +165928,9 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -184291,6 +166557,9 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -184301,75 +166570,67 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -185003,9 +167185,9 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -185319,9 +167427,9 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -186022,6 +168056,9 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -186032,75 +168069,67 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -186734,9 +168684,9 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -187437,6 +169313,9 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -187447,75 +169326,67 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -188149,9 +169941,9 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -188852,6 +170570,9 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -188862,75 +170583,67 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -189564,9 +171198,9 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -190267,6 +171827,9 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -190277,75 +171840,67 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -190979,9 +172455,9 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -191682,6 +173084,9 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -191692,75 +173097,67 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -192394,9 +173712,9 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -193097,6 +174341,9 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -193107,75 +174354,67 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -193809,9 +174969,9 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -194512,6 +175598,9 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -194522,75 +175611,67 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -195224,9 +176226,9 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + diff --git a/ts/features/pn/components/__test__/__snapshots__/MessageCancelledContent.test.tsx.snap b/ts/features/pn/components/__test__/__snapshots__/MessageCancelledContent.test.tsx.snap index a0c93f25017..5e24694d255 100644 --- a/ts/features/pn/components/__test__/__snapshots__/MessageCancelledContent.test.tsx.snap +++ b/ts/features/pn/components/__test__/__snapshots__/MessageCancelledContent.test.tsx.snap @@ -346,14 +346,9 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, empty paid no accessible={false} style={ [ - { - "alignContent": "center", - "alignItems": "flex-start", - "flexDirection": "row", - }, { "borderCurve": "continuous", - "borderRadius": 8, + "borderRadius": 12, "padding": 16, }, { @@ -365,8 +360,10 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, empty paid no @@ -375,10 +372,10 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, empty paid no accessibilityLabel="" accessible={false} align="xMidYMid" - bbHeight={24} - bbWidth={24} + bbHeight={36} + bbWidth={36} focusable={false} - height={24} + height={36} importantForAccessibility="no-hide-descendants" meetOrSlice={0} minX={0} @@ -394,15 +391,15 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, empty paid no }, { "flex": 0, - "height": 24, - "width": 24, + "height": 36, + "width": 36, }, ] } tintColor="#614C15" vbHeight={24} vbWidth={24} - width={24} + width={36} > - - - - Questa notifica è stata annullata dall'ente mittente. Puoi ignorarne il contenuto. - + + + Questa notifica è stata annullata dall'ente mittente. Puoi ignorarne il contenuto. + + + @@ -826,14 +833,9 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, empty paid no accessible={false} style={ [ - { - "alignContent": "center", - "alignItems": "flex-start", - "flexDirection": "row", - }, { "borderCurve": "continuous", - "borderRadius": 8, + "borderRadius": 12, "padding": 16, }, { @@ -845,8 +847,10 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, empty paid no @@ -855,10 +859,10 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, empty paid no accessibilityLabel="" accessible={false} align="xMidYMid" - bbHeight={24} - bbWidth={24} + bbHeight={36} + bbWidth={36} focusable={false} - height={24} + height={36} importantForAccessibility="no-hide-descendants" meetOrSlice={0} minX={0} @@ -874,15 +878,15 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, empty paid no }, { "flex": 0, - "height": 24, - "width": 24, + "height": 36, + "width": 36, }, ] } tintColor="#614C15" vbHeight={24} vbWidth={24} - width={24} + width={36} > - - - - Questa notifica è stata annullata dall'ente mittente. Puoi ignorarne il contenuto. Per l'eventuale rimborso di pagamenti, rivolgiti all'ente. - + + + Questa notifica è stata annullata dall'ente mittente. Puoi ignorarne il contenuto. Per l'eventuale rimborso di pagamenti, rivolgiti all'ente. + + + @@ -1306,14 +1320,9 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, empty paid no accessible={false} style={ [ - { - "alignContent": "center", - "alignItems": "flex-start", - "flexDirection": "row", - }, { "borderCurve": "continuous", - "borderRadius": 8, + "borderRadius": 12, "padding": 16, }, { @@ -1325,8 +1334,10 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, empty paid no @@ -1335,10 +1346,10 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, empty paid no accessibilityLabel="" accessible={false} align="xMidYMid" - bbHeight={24} - bbWidth={24} + bbHeight={36} + bbWidth={36} focusable={false} - height={24} + height={36} importantForAccessibility="no-hide-descendants" meetOrSlice={0} minX={0} @@ -1354,15 +1365,15 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, empty paid no }, { "flex": 0, - "height": 24, - "width": 24, + "height": 36, + "width": 36, }, ] } tintColor="#614C15" vbHeight={24} vbWidth={24} - width={24} + width={36} > - - - - Questa notifica è stata annullata dall'ente mittente. Puoi ignorarne il contenuto. - + + + Questa notifica è stata annullata dall'ente mittente. Puoi ignorarne il contenuto. + + + @@ -1786,14 +1807,9 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, non-empty pai accessible={false} style={ [ - { - "alignContent": "center", - "alignItems": "flex-start", - "flexDirection": "row", - }, { "borderCurve": "continuous", - "borderRadius": 8, + "borderRadius": 12, "padding": 16, }, { @@ -1805,8 +1821,10 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, non-empty pai @@ -1815,10 +1833,10 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, non-empty pai accessibilityLabel="" accessible={false} align="xMidYMid" - bbHeight={24} - bbWidth={24} + bbHeight={36} + bbWidth={36} focusable={false} - height={24} + height={36} importantForAccessibility="no-hide-descendants" meetOrSlice={0} minX={0} @@ -1834,15 +1852,15 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, non-empty pai }, { "flex": 0, - "height": 24, - "width": 24, + "height": 36, + "width": 36, }, ] } tintColor="#614C15" vbHeight={24} vbWidth={24} - width={24} + width={36} > - - - - Questa notifica è stata annullata dall'ente mittente. Puoi ignorarne il contenuto. Per l'eventuale rimborso di pagamenti, rivolgiti all'ente. - + + + Questa notifica è stata annullata dall'ente mittente. Puoi ignorarne il contenuto. Per l'eventuale rimborso di pagamenti, rivolgiti all'ente. + + + @@ -2266,14 +2294,9 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, non-empty pai accessible={false} style={ [ - { - "alignContent": "center", - "alignItems": "flex-start", - "flexDirection": "row", - }, { "borderCurve": "continuous", - "borderRadius": 8, + "borderRadius": 12, "padding": 16, }, { @@ -2285,8 +2308,10 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, non-empty pai @@ -2295,10 +2320,10 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, non-empty pai accessibilityLabel="" accessible={false} align="xMidYMid" - bbHeight={24} - bbWidth={24} + bbHeight={36} + bbWidth={36} focusable={false} - height={24} + height={36} importantForAccessibility="no-hide-descendants" meetOrSlice={0} minX={0} @@ -2314,15 +2339,15 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, non-empty pai }, { "flex": 0, - "height": 24, - "width": 24, + "height": 36, + "width": 36, }, ] } tintColor="#614C15" vbHeight={24} vbWidth={24} - width={24} + width={36} > - - - - Questa notifica è stata annullata dall'ente mittente. Puoi ignorarne il contenuto. Per l'eventuale rimborso di pagamenti, rivolgiti all'ente. - + + + Questa notifica è stata annullata dall'ente mittente. Puoi ignorarne il contenuto. Per l'eventuale rimborso di pagamenti, rivolgiti all'ente. + + + @@ -2746,14 +2781,9 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, non-empty pai accessible={false} style={ [ - { - "alignContent": "center", - "alignItems": "flex-start", - "flexDirection": "row", - }, { "borderCurve": "continuous", - "borderRadius": 8, + "borderRadius": 12, "padding": 16, }, { @@ -2765,8 +2795,10 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, non-empty pai @@ -2775,10 +2807,10 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, non-empty pai accessibilityLabel="" accessible={false} align="xMidYMid" - bbHeight={24} - bbWidth={24} + bbHeight={36} + bbWidth={36} focusable={false} - height={24} + height={36} importantForAccessibility="no-hide-descendants" meetOrSlice={0} minX={0} @@ -2794,15 +2826,15 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, non-empty pai }, { "flex": 0, - "height": 24, - "width": 24, + "height": 36, + "width": 36, }, ] } tintColor="#614C15" vbHeight={24} vbWidth={24} - width={24} + width={36} > - - - - Questa notifica è stata annullata dall'ente mittente. Puoi ignorarne il contenuto. Per l'eventuale rimborso di pagamenti, rivolgiti all'ente. - + + + Questa notifica è stata annullata dall'ente mittente. Puoi ignorarne il contenuto. Per l'eventuale rimborso di pagamenti, rivolgiti all'ente. + + + @@ -3226,14 +3268,9 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, undefined pai accessible={false} style={ [ - { - "alignContent": "center", - "alignItems": "flex-start", - "flexDirection": "row", - }, { "borderCurve": "continuous", - "borderRadius": 8, + "borderRadius": 12, "padding": 16, }, { @@ -3245,8 +3282,10 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, undefined pai @@ -3255,10 +3294,10 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, undefined pai accessibilityLabel="" accessible={false} align="xMidYMid" - bbHeight={24} - bbWidth={24} + bbHeight={36} + bbWidth={36} focusable={false} - height={24} + height={36} importantForAccessibility="no-hide-descendants" meetOrSlice={0} minX={0} @@ -3274,15 +3313,15 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, undefined pai }, { "flex": 0, - "height": 24, - "width": 24, + "height": 36, + "width": 36, }, ] } tintColor="#614C15" vbHeight={24} vbWidth={24} - width={24} + width={36} > - - - - Questa notifica è stata annullata dall'ente mittente. Puoi ignorarne il contenuto. - + + + Questa notifica è stata annullata dall'ente mittente. Puoi ignorarne il contenuto. + + + @@ -3706,14 +3755,9 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, undefined pai accessible={false} style={ [ - { - "alignContent": "center", - "alignItems": "flex-start", - "flexDirection": "row", - }, { "borderCurve": "continuous", - "borderRadius": 8, + "borderRadius": 12, "padding": 16, }, { @@ -3725,8 +3769,10 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, undefined pai @@ -3735,10 +3781,10 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, undefined pai accessibilityLabel="" accessible={false} align="xMidYMid" - bbHeight={24} - bbWidth={24} + bbHeight={36} + bbWidth={36} focusable={false} - height={24} + height={36} importantForAccessibility="no-hide-descendants" meetOrSlice={0} minX={0} @@ -3754,15 +3800,15 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, undefined pai }, { "flex": 0, - "height": 24, - "width": 24, + "height": 36, + "width": 36, }, ] } tintColor="#614C15" vbHeight={24} vbWidth={24} - width={24} + width={36} > - - - - Questa notifica è stata annullata dall'ente mittente. Puoi ignorarne il contenuto. Per l'eventuale rimborso di pagamenti, rivolgiti all'ente. - + + + Questa notifica è stata annullata dall'ente mittente. Puoi ignorarne il contenuto. Per l'eventuale rimborso di pagamenti, rivolgiti all'ente. + + + @@ -4186,14 +4242,9 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, undefined pai accessible={false} style={ [ - { - "alignContent": "center", - "alignItems": "flex-start", - "flexDirection": "row", - }, { "borderCurve": "continuous", - "borderRadius": 8, + "borderRadius": 12, "padding": 16, }, { @@ -4205,8 +4256,10 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, undefined pai @@ -4215,10 +4268,10 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, undefined pai accessibilityLabel="" accessible={false} align="xMidYMid" - bbHeight={24} - bbWidth={24} + bbHeight={36} + bbWidth={36} focusable={false} - height={24} + height={36} importantForAccessibility="no-hide-descendants" meetOrSlice={0} minX={0} @@ -4234,15 +4287,15 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, undefined pai }, { "flex": 0, - "height": 24, - "width": 24, + "height": 36, + "width": 36, }, ] } tintColor="#614C15" vbHeight={24} vbWidth={24} - width={24} + width={36} > - - - - Questa notifica è stata annullata dall'ente mittente. Puoi ignorarne il contenuto. - + + + Questa notifica è stata annullata dall'ente mittente. Puoi ignorarne il contenuto. + + + diff --git a/ts/features/pn/components/__test__/__snapshots__/MessageDetails.test.tsx.snap b/ts/features/pn/components/__test__/__snapshots__/MessageDetails.test.tsx.snap index 8f0c2fda9f4..ebbac0497f7 100644 --- a/ts/features/pn/components/__test__/__snapshots__/MessageDetails.test.tsx.snap +++ b/ts/features/pn/components/__test__/__snapshots__/MessageDetails.test.tsx.snap @@ -376,12 +376,15 @@ exports[`MessageDetails component should match the snapshot with default props 1 "alignItems": "center", "alignSelf": "flex-start", "borderCurve": "continuous", - "borderRadius": 6, "borderWidth": 1, "flexDirection": "row", "justifyContent": "center", - "paddingHorizontal": 8, - "paddingVertical": 6, + }, + { + "borderRadius": 9, + "columnGap": 9, + "paddingHorizontal": 12, + "paddingVertical": 9, }, { "backgroundColor": "#FFFFFF", @@ -402,10 +405,10 @@ exports[`MessageDetails component should match the snapshot with default props 1 accessibilityLabel="" accessible={false} align="xMidYMid" - bbHeight={16} - bbWidth={16} + bbHeight={24} + bbWidth={24} focusable={false} - height={16} + height={24} importantForAccessibility="no-hide-descendants" meetOrSlice={0} minX={0} @@ -421,15 +424,15 @@ exports[`MessageDetails component should match the snapshot with default props 1 }, { "flex": 0, - "height": 16, - "width": 16, + "height": 24, + "width": 24, }, ] } tintColor="#0B3EE3" vbHeight={24} vbWidth={24} - width={16} + width={24} > - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -1479,9 +1391,9 @@ exports[`MessageDetails component should match the snapshot with default props 1 importantForAccessibility="yes" > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + diff --git a/ts/features/pn/components/__test__/__snapshots__/MessageDetailsContent.test.tsx.snap b/ts/features/pn/components/__test__/__snapshots__/MessageDetailsContent.test.tsx.snap index 26dd805fcc0..a011f6b0f7b 100644 --- a/ts/features/pn/components/__test__/__snapshots__/MessageDetailsContent.test.tsx.snap +++ b/ts/features/pn/components/__test__/__snapshots__/MessageDetailsContent.test.tsx.snap @@ -10,9 +10,9 @@ exports[`MessageDetailsContent component should match the snapshot when abstract } />, - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -2033,9 +1883,9 @@ exports[`MessageDetailsScreen should match the snapshot when everything went fin importantForAccessibility="yes" > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -2432,10 +2208,10 @@ exports[`MessageDetailsScreen should match the snapshot when everything went fin "color": undefined, } } - bbHeight={24} - bbWidth={24} + bbHeight={36} + bbWidth={36} focusable={false} - height={24} + height={36} importantForAccessibility="no-hide-descendants" meetOrSlice={0} minX={0} @@ -2451,15 +2227,15 @@ exports[`MessageDetailsScreen should match the snapshot when everything went fin }, { "flex": 0, - "height": 24, - "width": 24, + "height": 36, + "width": 36, }, ] } tintColor="#0E0F13" vbHeight={24} vbWidth={24} - width={24} + width={36} > - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -90,10 +87,10 @@ exports[`ProfileMainScreenTopBanner should match snapshot for all possible resul accessibilityLabel="" accessible={false} align="xMidYMid" - bbHeight={24} - bbWidth={24} + bbHeight={36} + bbWidth={36} focusable={false} - height={24} + height={36} importantForAccessibility="no-hide-descendants" meetOrSlice={0} minX={0} @@ -109,15 +106,15 @@ exports[`ProfileMainScreenTopBanner should match snapshot for all possible resul }, { "flex": 0, - "height": 24, - "width": 24, + "height": 36, + "width": 36, }, ] } tintColor="#5D1313" vbHeight={24} vbWidth={24} - width={24} + width={36} > - - - - Turn on push notifications to know when you get a message on IO. - - - Turn on push notifications - + + + Turn on push notifications to know when you get a message on IO. + + + Turn on push notifications + + + @@ -302,9 +302,9 @@ exports[`ProfileMainScreenTopBanner should match snapshot for all possible resul } >