@hero-design/rn 8.92.3 → 8.94.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (85) hide show
  1. package/.turbo/turbo-build.log +2 -2
  2. package/CHANGELOG.md +16 -0
  3. package/assets/fonts/hero-icons-mobile.ttf +0 -0
  4. package/es/index.js +961 -140
  5. package/lib/assets/fonts/hero-icons-mobile.ttf +0 -0
  6. package/lib/index.js +960 -139
  7. package/package.json +1 -1
  8. package/src/components/Badge/Count.tsx +60 -0
  9. package/src/components/Badge/StyledBadge.tsx +33 -2
  10. package/src/components/Badge/__tests__/Count.spec.tsx +38 -0
  11. package/src/components/Badge/__tests__/__snapshots__/Count.spec.tsx.snap +310 -0
  12. package/src/components/Badge/constants.ts +1 -0
  13. package/src/components/Badge/index.tsx +3 -2
  14. package/src/components/Icon/HeroIcon/glyphMap.json +1 -1
  15. package/src/components/Icon/IconList.ts +1 -0
  16. package/src/components/{Empty → StatusScreens/Empty}/StyledEmpty.tsx +11 -2
  17. package/src/components/StatusScreens/Empty/__tests__/__snapshots__/index.spec.tsx.snap +468 -0
  18. package/src/components/{Empty → StatusScreens/Empty}/__tests__/index.spec.tsx +16 -2
  19. package/src/components/StatusScreens/Empty/index.tsx +97 -0
  20. package/src/components/{Error → StatusScreens/Error}/StyledError.tsx +4 -4
  21. package/src/components/{Error → StatusScreens/Error}/__tests__/__snapshots__/index.spec.tsx.snap +300 -0
  22. package/src/components/{Error → StatusScreens/Error}/__tests__/index.spec.tsx +13 -3
  23. package/src/components/{Error → StatusScreens/Error}/index.tsx +39 -7
  24. package/src/components/StatusScreens/StatusIcon/__tests__/index.spec.tsx +31 -0
  25. package/src/components/StatusScreens/StatusIcon/assets/Add.tsx +49 -0
  26. package/src/components/StatusScreens/StatusIcon/assets/Boom.tsx +61 -0
  27. package/src/components/StatusScreens/StatusIcon/assets/Build.tsx +45 -0
  28. package/src/components/StatusScreens/StatusIcon/assets/Clock.tsx +38 -0
  29. package/src/components/StatusScreens/StatusIcon/assets/Confetti.tsx +78 -0
  30. package/src/components/StatusScreens/StatusIcon/assets/Connections.tsx +57 -0
  31. package/src/components/StatusScreens/StatusIcon/assets/Error.tsx +55 -0
  32. package/src/components/StatusScreens/StatusIcon/assets/Info.tsx +35 -0
  33. package/src/components/StatusScreens/StatusIcon/assets/List.tsx +37 -0
  34. package/src/components/StatusScreens/StatusIcon/assets/Location.tsx +37 -0
  35. package/src/components/StatusScreens/StatusIcon/assets/Merge.tsx +59 -0
  36. package/src/components/StatusScreens/StatusIcon/assets/Notifications.tsx +26 -0
  37. package/src/components/StatusScreens/StatusIcon/assets/Search.tsx +36 -0
  38. package/src/components/StatusScreens/StatusIcon/assets/Star.tsx +37 -0
  39. package/src/components/StatusScreens/StatusIcon/assets/Success.tsx +41 -0
  40. package/src/components/StatusScreens/StatusIcon/assets/User.tsx +43 -0
  41. package/src/components/StatusScreens/StatusIcon/index.tsx +63 -0
  42. package/src/components/StatusScreens/StatusIcon/types.ts +5 -0
  43. package/src/components/{Success → StatusScreens/Success}/StyledSuccess.tsx +4 -4
  44. package/src/components/{Success → StatusScreens/Success}/__tests__/__snapshots__/index.spec.tsx.snap +263 -0
  45. package/src/components/{Success → StatusScreens/Success}/__tests__/index.spec.tsx +13 -4
  46. package/src/components/{Success → StatusScreens/Success}/index.tsx +38 -7
  47. package/src/index.ts +3 -3
  48. package/src/theme/__tests__/__snapshots__/index.spec.ts.snap +11 -0
  49. package/src/theme/components/badge.ts +26 -1
  50. package/stats/8.94.0/rn-stats.html +4842 -0
  51. package/types/components/Badge/Count.d.ts +27 -0
  52. package/types/components/Badge/StyledBadge.d.ts +14 -4
  53. package/types/components/Badge/constants.d.ts +1 -0
  54. package/types/components/Badge/index.d.ts +1 -0
  55. package/types/components/Icon/IconList.d.ts +1 -1
  56. package/types/components/Icon/index.d.ts +1 -1
  57. package/types/components/{Empty → StatusScreens/Empty}/StyledEmpty.d.ts +9 -3
  58. package/types/components/{Empty → StatusScreens/Empty}/index.d.ts +8 -3
  59. package/types/components/{Error → StatusScreens/Error}/StyledError.d.ts +6 -6
  60. package/types/components/{Error → StatusScreens/Error}/index.d.ts +6 -1
  61. package/types/components/StatusScreens/StatusIcon/assets/Add.d.ts +4 -0
  62. package/types/components/StatusScreens/StatusIcon/assets/Boom.d.ts +4 -0
  63. package/types/components/StatusScreens/StatusIcon/assets/Build.d.ts +4 -0
  64. package/types/components/StatusScreens/StatusIcon/assets/Clock.d.ts +4 -0
  65. package/types/components/StatusScreens/StatusIcon/assets/Confetti.d.ts +4 -0
  66. package/types/components/StatusScreens/StatusIcon/assets/Connections.d.ts +4 -0
  67. package/types/components/StatusScreens/StatusIcon/assets/Error.d.ts +4 -0
  68. package/types/components/StatusScreens/StatusIcon/assets/Info.d.ts +4 -0
  69. package/types/components/StatusScreens/StatusIcon/assets/List.d.ts +4 -0
  70. package/types/components/StatusScreens/StatusIcon/assets/Location.d.ts +4 -0
  71. package/types/components/StatusScreens/StatusIcon/assets/Merge.d.ts +4 -0
  72. package/types/components/StatusScreens/StatusIcon/assets/Notifications.d.ts +4 -0
  73. package/types/components/StatusScreens/StatusIcon/assets/Search.d.ts +4 -0
  74. package/types/components/StatusScreens/StatusIcon/assets/Star.d.ts +4 -0
  75. package/types/components/StatusScreens/StatusIcon/assets/Success.d.ts +4 -0
  76. package/types/components/StatusScreens/StatusIcon/assets/User.d.ts +4 -0
  77. package/types/components/StatusScreens/StatusIcon/index.d.ts +26 -0
  78. package/types/components/StatusScreens/StatusIcon/types.d.ts +5 -0
  79. package/types/components/{Success → StatusScreens/Success}/StyledSuccess.d.ts +5 -5
  80. package/types/components/{Success → StatusScreens/Success}/index.d.ts +6 -1
  81. package/types/components/TextInput/index.d.ts +1 -1
  82. package/types/index.d.ts +3 -3
  83. package/types/theme/components/badge.d.ts +11 -0
  84. package/src/components/Empty/__tests__/__snapshots__/index.spec.tsx.snap +0 -218
  85. package/src/components/Empty/index.tsx +0 -73
package/lib/index.js CHANGED
@@ -2621,7 +2621,8 @@ var getBadgeTheme = function getBadgeTheme(theme) {
2621
2621
  warning: theme.colors.onWarningSurface,
2622
2622
  archived: theme.colors.onArchivedSurface,
2623
2623
  text: theme.colors.onDarkGlobalSurface,
2624
- border: theme.colors.defaultGlobalSurface
2624
+ border: theme.colors.defaultGlobalSurface,
2625
+ countText: theme.colors.onDarkGlobalSurface
2625
2626
  };
2626
2627
  var fonts = {
2627
2628
  medium: theme.fonts.neutral.regular,
@@ -2633,11 +2634,20 @@ var getBadgeTheme = function getBadgeTheme(theme) {
2633
2634
  icon: {
2634
2635
  medium: theme.fontSizes.small,
2635
2636
  small: 8
2636
- }
2637
+ },
2638
+ count: 6
2637
2639
  };
2638
2640
  var lineHeights = {
2639
2641
  medium: theme.lineHeights.small,
2640
- small: 10
2642
+ small: 10,
2643
+ count: reactNative.Platform.select({
2644
+ android: 11,
2645
+ // vertical alignment
2646
+ "default": 12
2647
+ })
2648
+ };
2649
+ var radii = {
2650
+ count: theme.radii.rounded
2641
2651
  };
2642
2652
  var sizes = {
2643
2653
  medium: {
@@ -2649,7 +2659,11 @@ var getBadgeTheme = function getBadgeTheme(theme) {
2649
2659
  minWidth: theme.sizes.medium
2650
2660
  },
2651
2661
  statusHeight: theme.sizes.small,
2652
- statusWidth: theme.sizes.small
2662
+ statusWidth: theme.sizes.small,
2663
+ count: {
2664
+ width: theme.sizes.smallMedium,
2665
+ height: theme.sizes.smallMedium
2666
+ }
2653
2667
  };
2654
2668
  var borderWidths = {
2655
2669
  "default": theme.borderWidths.medium
@@ -2662,7 +2676,8 @@ var getBadgeTheme = function getBadgeTheme(theme) {
2662
2676
  horizontalPadding: theme.space.xsmall
2663
2677
  },
2664
2678
  statusPositionTop: -theme.space.xxsmall,
2665
- statusPositionRight: -theme.space.xxsmall
2679
+ statusPositionRight: -theme.space.xxsmall,
2680
+ countPaddingHorizontal: theme.space.xxsmall
2666
2681
  };
2667
2682
  return {
2668
2683
  colors: colors,
@@ -2671,7 +2686,8 @@ var getBadgeTheme = function getBadgeTheme(theme) {
2671
2686
  sizes: sizes,
2672
2687
  space: space,
2673
2688
  lineHeights: lineHeights,
2674
- borderWidths: borderWidths
2689
+ borderWidths: borderWidths,
2690
+ radii: radii
2675
2691
  };
2676
2692
  };
2677
2693
 
@@ -7521,7 +7537,7 @@ var StyledText$3 = index$a(reactNative.Text)(function (_ref) {
7521
7537
  });
7522
7538
  });
7523
7539
 
7524
- var _excluded$L = ["children", "fontSize", "fontWeight", "intent", "typeface", "allowFontScaling"];
7540
+ var _excluded$M = ["children", "fontSize", "fontWeight", "intent", "typeface", "allowFontScaling"];
7525
7541
  var Text = function Text(_ref) {
7526
7542
  var children = _ref.children,
7527
7543
  _ref$fontSize = _ref.fontSize,
@@ -7534,7 +7550,7 @@ var Text = function Text(_ref) {
7534
7550
  typeface = _ref$typeface === void 0 ? 'neutral' : _ref$typeface,
7535
7551
  _ref$allowFontScaling = _ref.allowFontScaling,
7536
7552
  allowFontScaling = _ref$allowFontScaling === void 0 ? false : _ref$allowFontScaling,
7537
- nativeProps = _objectWithoutProperties(_ref, _excluded$L);
7553
+ nativeProps = _objectWithoutProperties(_ref, _excluded$M);
7538
7554
  useDeprecation('Typography.Text is deprecated and will be removed in the next major release, please refer to https://design.employmenthero.com/mobile/Components/typography for the appropriate alternatives.');
7539
7555
  return /*#__PURE__*/React__namespace.default.createElement(StyledText$3, _extends$1({}, nativeProps, {
7540
7556
  themeFontSize: fontSize,
@@ -7564,7 +7580,7 @@ var StyledCaption = index$a(reactNative.Text)(function (_ref) {
7564
7580
  };
7565
7581
  });
7566
7582
 
7567
- var _excluded$K = ["children", "fontWeight", "intent", "allowFontScaling"];
7583
+ var _excluded$L = ["children", "fontWeight", "intent", "allowFontScaling"];
7568
7584
  var Caption = function Caption(_ref) {
7569
7585
  var children = _ref.children,
7570
7586
  _ref$fontWeight = _ref.fontWeight,
@@ -7573,7 +7589,7 @@ var Caption = function Caption(_ref) {
7573
7589
  intent = _ref$intent === void 0 ? 'body' : _ref$intent,
7574
7590
  _ref$allowFontScaling = _ref.allowFontScaling,
7575
7591
  allowFontScaling = _ref$allowFontScaling === void 0 ? false : _ref$allowFontScaling,
7576
- nativeProps = _objectWithoutProperties(_ref, _excluded$K);
7592
+ nativeProps = _objectWithoutProperties(_ref, _excluded$L);
7577
7593
  return /*#__PURE__*/React__namespace.default.createElement(StyledCaption, _extends$1({}, nativeProps, {
7578
7594
  themeFontWeight: fontWeight,
7579
7595
  themeIntent: intent,
@@ -7592,14 +7608,14 @@ var StyledLabel$1 = index$a(reactNative.Text)(function (_ref) {
7592
7608
  };
7593
7609
  });
7594
7610
 
7595
- var _excluded$J = ["children", "intent", "allowFontScaling"];
7611
+ var _excluded$K = ["children", "intent", "allowFontScaling"];
7596
7612
  var Label = function Label(_ref) {
7597
7613
  var children = _ref.children,
7598
7614
  _ref$intent = _ref.intent,
7599
7615
  intent = _ref$intent === void 0 ? 'body' : _ref$intent,
7600
7616
  _ref$allowFontScaling = _ref.allowFontScaling,
7601
7617
  allowFontScaling = _ref$allowFontScaling === void 0 ? false : _ref$allowFontScaling,
7602
- nativeProps = _objectWithoutProperties(_ref, _excluded$J);
7618
+ nativeProps = _objectWithoutProperties(_ref, _excluded$K);
7603
7619
  return /*#__PURE__*/React__namespace.default.createElement(StyledLabel$1, _extends$1({}, nativeProps, {
7604
7620
  themeIntent: intent,
7605
7621
  allowFontScaling: allowFontScaling
@@ -7620,7 +7636,7 @@ var StyledTitle$1 = index$a(reactNative.Text)(function (_ref) {
7620
7636
  };
7621
7637
  });
7622
7638
 
7623
- var _excluded$I = ["children", "intent", "allowFontScaling", "level", "typeface"];
7639
+ var _excluded$J = ["children", "intent", "allowFontScaling", "level", "typeface"];
7624
7640
  var Title = function Title(_ref) {
7625
7641
  var children = _ref.children,
7626
7642
  _ref$intent = _ref.intent,
@@ -7631,7 +7647,7 @@ var Title = function Title(_ref) {
7631
7647
  level = _ref$level === void 0 ? 'h1' : _ref$level,
7632
7648
  _ref$typeface = _ref.typeface,
7633
7649
  typeface = _ref$typeface === void 0 ? 'neutral' : _ref$typeface,
7634
- nativeProps = _objectWithoutProperties(_ref, _excluded$I);
7650
+ nativeProps = _objectWithoutProperties(_ref, _excluded$J);
7635
7651
  return /*#__PURE__*/React__namespace.default.createElement(StyledTitle$1, _extends$1({}, nativeProps, {
7636
7652
  themeLevel: level,
7637
7653
  themeTypeface: typeface,
@@ -7666,7 +7682,7 @@ var StyledBody$2 = index$a(reactNative.Text)(function (_ref) {
7666
7682
  };
7667
7683
  });
7668
7684
 
7669
- var _excluded$H = ["children", "intent", "allowFontScaling", "typeface", "variant"];
7685
+ var _excluded$I = ["children", "intent", "allowFontScaling", "typeface", "variant"];
7670
7686
  var Body = function Body(_ref) {
7671
7687
  var children = _ref.children,
7672
7688
  _ref$intent = _ref.intent,
@@ -7677,7 +7693,7 @@ var Body = function Body(_ref) {
7677
7693
  typeface = _ref$typeface === void 0 ? 'neutral' : _ref$typeface,
7678
7694
  _ref$variant = _ref.variant,
7679
7695
  variant = _ref$variant === void 0 ? 'regular' : _ref$variant,
7680
- nativeProps = _objectWithoutProperties(_ref, _excluded$H);
7696
+ nativeProps = _objectWithoutProperties(_ref, _excluded$I);
7681
7697
  return /*#__PURE__*/React__namespace.default.createElement(StyledBody$2, _extends$1({}, nativeProps, {
7682
7698
  themeTypeface: typeface,
7683
7699
  themeIntent: intent,
@@ -7695,7 +7711,7 @@ var Typography = {
7695
7711
  };
7696
7712
 
7697
7713
  // 🔴 DO NOT EDIT — This file is generated automatically.
7698
- var IconList = ['activate', 'add-emoji', 'add-person', 'adjustment', 'alignment', 'antenna', 'archive', 'assignment-warning', 'bank', 'bell', 'billing', 'bolt', 'bookmark-added', 'bookmark-checked', 'bookmark', 'box-check', 'box', 'bpay', 'buildings', 'cake', 'calendar-clock', 'calendar', 'candy-box-menu', 'caret-down-small', 'caret-down', 'caret-left-small', 'caret-left', 'caret-right-small', 'caret-right', 'caret-up-small', 'caret-up', 'check-radio', 'circle-add', 'circle-cancel', 'circle-check', 'circle-down', 'circle-info', 'circle-left', 'circle-ok', 'circle-pencil', 'circle-question', 'circle-remove', 'circle-right', 'circle-up', 'circle-warning', 'clock-3', 'clock', 'cloud-download', 'cloud-upload', 'cog', 'coin', 'contacts', 'credit-card', 'diamond', 'direction-arrows', 'directory', 'document', 'dollar-coin-shine', 'dot', 'double-buildings', 'edit-template', 'envelope', 'exclude', 'expand-content', 'expense', 'explore_nearby', 'eye-circle', 'eye-invisible', 'eye', 'face-meh', 'face-sad', 'face-smiley', 'feed', 'feedbacks', 'file-certified', 'file-clone', 'file-copy', 'file-csv', 'file-dispose', 'file-doc', 'file-excel', 'file-export', 'file-lock', 'file-pdf', 'file-powerpoint', 'file-search', 'file-secured', 'file-sheets', 'file-slide', 'file-verified', 'file-word', 'file', 'filter', 'folder-user', 'folder', 'format-bold', 'format-heading1', 'format-heading2', 'format-italic', 'format-list-bulleted', 'format-list-numbered', 'format-underlined', 'funnel-filter', 'global-dollar', 'globe', 'graduation-cap', 'graph', 'happy-sun', 'health-bag', 'heart', 'hero-points', 'home', 'image', 'import', 'incident-siren', 'instapay-daily', 'instapay-now', 'instapay', 'list', 'loading-2', 'loading', 'location-on', 'location', 'lock', 'looks-one', 'looks-two', 'media-content', 'menu', 'money-notes', 'moneybag', 'moon', 'multiple-stars', 'multiple-users', 'near-me', 'node', 'open-folder', 'paperclip-vertical', 'paperclip', 'payment-summary', 'pencil', 'phone', 'piggy-bank', 'plane-up', 'plane', 'play-arrow', 'play-circle', 'print', 'raising-hands', 'reply-arrow', 'reply', 'reschedule', 'rostering', 'salary-sacrifice', 'save', 'schedule-send', 'schedule', 'search-person', 'search', 'send', 'speaker-active', 'speaker', 'star-award', 'star-badge', 'star-circle', 'star-medal', 'star', 'steps-circle', 'stopwatch', 'suitcase', 'surfing', 'survey', 'swag-pillar-benefit', 'swag-pillar-career', 'swag-pillar-money', 'swag-pillar-work', 'swag', 'swipe-right', 'switch', 'tag', 'target', 'teams', 'thumb-down', 'timesheet', 'touch-id', 'trash-bin', 'unlock', 'user', 'video-1', 'video-2', 'wallet', 'warning', 'accommodation-outlined', 'activate-outlined', 'add-credit-card-outlined', 'add-person-outlined', 'add-section-outlined', 'add-time-outlined', 'add', 'adjustment-outlined', 'afternoon-outlined', 'ai-outlined', 'alignment-2-outlined', 'alignment-outlined', 'all-caps', 'application-outlined', 'arrow-down', 'arrow-downwards', 'arrow-left', 'arrow-leftwards', 'arrow-right', 'arrow-rightwards', 'arrow-up', 'arrow-upwards', 'article-outlined', 'at-sign', 'auto-graph-outlined', 'automotive-outlined', 'bakery-outlined', 'bar-outlined', 'beauty-outlined', 'beer-outlined', 'bell-active-outlined', 'bell-outlined', 'bell-slash-outlined', 'bill-management-outlined', 'billing-outlined', 'body-outlined', 'bold', 'bolt-outlined', 'book-outlined', 'bookmark-added-outlined', 'bookmark-checked-outlined', 'bookmark-outlined', 'box-1-outlined', 'box-check-outlined', 'box-outlined', 'bullet-points', 'cake-outlined', 'calculator-outlined', 'calendar-dates-outlined', 'calendar-star-outlined', 'call-outlined', 'call-split-outlined', 'camera-outlined', 'cancel', 'car-forward-outlined', 'cashback-outlined', 'charging-station-outlined', 'chat-bubble-outlined', 'chat-unread-outlined', 'checkmark', 'circle-add-outlined', 'circle-cancel-outlined', 'circle-down-outlined', 'circle-info-outlined', 'circle-left-outlined', 'circle-ok-outlined', 'circle-question-outlined', 'circle-remove-outlined', 'circle-right-outlined', 'circle-up-outlined', 'circle-warning-outlined', 'clock-2-outlined', 'clock-in-outlined', 'clock-out-outlined', 'clock-outlined', 'cog-outlined', 'coin-outlined', 'coin-super-outlined', 'comment-outlined', 'contacts-outlined', 'contacts-user-outlined', 'credit-card-outlined', 'cultural-site-outlined', 'cup-outlined', 'dentistry-outlined', 'direction-arrows-outlined', 'directory-outlined', 'document-outlined', 'dollar-box-outlined', 'dollar-card-outlined', 'dollar-coin-shine-outlined', 'dollar-credit-card-outlined', 'dollar-sign', 'double-buildings-outlined', 'double-left-arrows', 'double-right-arrows', 'download-box-outlined', 'download-outlined', 'edit-template-outlined', 'electronics-outlined', 'email-outlined', 'end-break-outlined', 'enter-arrow', 'entertainment-outlined', 'envelope-outlined', 'evening-outlined', 'expense-approval-outlined', 'expense-outlined', 'explore-outlined', 'extension-outlined', 'external-link', 'eye-invisible-outlined', 'eye-outlined', 'face-id', 'face-meh-outlined', 'face-open-smiley-outlined', 'face-sad-outlined', 'face-smiley-outlined', 'fastfood-outlined', 'feed-outlined', 'file-certified-outlined', 'file-clone-outlined', 'file-copy-outlined', 'file-dispose-outlined', 'file-dollar-certified-outlined', 'file-dollar-outlined', 'file-download-outlined', 'file-export-outlined', 'file-lock-outlined', 'file-outlined', 'file-search-outlined', 'file-secured-outlined', 'file-statutory-outlined', 'file-verified-outlined', 'filter-outlined', 'fitness-outlined', 'folder-outlined', 'folder-upload-outlined', 'folder-user-outlined', 'form-outlined', 'funnel-filter-outline', 'goal-outlined', 'graph-outlined', 'grocery-outlined', 'hand-holding-user-outlined', 'handshake-outlined', 'happy-sun-outlined', 'health-bag-outlined', 'heart-outlined', 'home-active-outlined', 'home-outlined', 'id-card-outlined', 'image-outlined', 'import-outlined', 'instapay-outlined', 'italic', 'job-search-outlined', 'leave-approval-outlined', 'link-1', 'link-2', 'list-outlined', 'live-help-outlined', 'local_mall_outlined', 'location-on-outlined', 'location-outlined', 'lock-outlined', 'locked-file-outlined', 'log-out', 'mail-outlined', 'map-outlined', 'media-content-outlined', 'menu-close', 'menu-expand', 'menu-fold-outlined', 'menu-unfold-outlined', 'moneybag-outlined', 'moon-outlined', 'more-horizontal', 'more-vertical', 'morning-outlined', 'multiple-folders-outlined', 'multiple-users-outlined', 'near-me-outlined', 'node-outlined', 'number-points', 'number', 'overview-outlined', 'park-outlined', 'payment-summary-outlined', 'payslip-outlined', 'pencil-outlined', 'percentage', 'phone-outlined', 'piggy-bank-outlined', 'plane-outlined', 'play-circle-outlined', 'print-outlined', 'propane-tank-outlined', 'qr-code-outlined', 'qualification-outlined', 're-assign', 'redeem', 'refresh', 'remove', 'reply-outlined', 'restart', 'restaurant-outlined', 'resume-outlined', 'return-arrow', 'rostering-outlined', 'safety-outlined', 'save-outlined', 'schedule-outlined', 'search-outlined', 'search-secured-outlined', 'send-outlined', 'share-1', 'share-2', 'share-outlined-2', 'share-outlined', 'shop-outlined', 'shopping_basket_outlined', 'show-chart-outlined', 'single-down-arrow', 'single-left-arrow', 'single-right-arrow', 'single-up-arrow', 'smart-match-outlined', 'sparkle-outlined', 'speaker-active-outlined', 'speaker-outlined', 'star-circle-outlined', 'star-outlined', 'start-break-outlined', 'stash-outlined', 'stopwatch-outlined', 'strikethrough', 'styler-outlined', 'suitcase-clock-outlined', 'suitcase-outlined', 'survey-outlined', 'switch-outlined', 'sync', 'tag-outlined', 'target-outlined', 'tennis-outlined', 'thumb-down-outlined', 'ticket-outlined', 'timesheet-outlined', 'timesheets-outlined', 'today-outlined', 'transfer', 'transportation-outlined', 'trash-bin-outlined', 'umbrela-outlined', 'unavailability-outlined', 'unavailable', 'underline', 'union-outlined', 'unlock-outlined', 'upload-outlined', 'user-circle-outlined', 'user-gear-outlined', 'user-outlined', 'user-rectangle-outlined', 'video-1-outlined', 'video-2-outlined', 'volunteer-outlined', 'wallet-outlined', 'wellness-outlined'];
7714
+ var IconList = ['activate', 'add-emoji', 'add-person', 'adjustment', 'alignment', 'antenna', 'archive', 'assignment-warning', 'bank', 'bell', 'billing', 'bolt', 'bookmark-added', 'bookmark-checked', 'bookmark', 'box-check', 'box', 'bpay', 'buildings', 'cake', 'calendar-clock', 'calendar', 'candy-box-menu', 'caret-down-small', 'caret-down', 'caret-left-small', 'caret-left', 'caret-right-small', 'caret-right', 'caret-up-small', 'caret-up', 'check-radio', 'circle-add', 'circle-cancel', 'circle-check', 'circle-down', 'circle-info', 'circle-left', 'circle-ok', 'circle-pencil', 'circle-question', 'circle-remove', 'circle-right', 'circle-up', 'circle-warning', 'clock-3', 'clock', 'cloud-download', 'cloud-upload', 'cog', 'coin', 'contacts', 'credit-card', 'diamond', 'direction-arrows', 'directory', 'document', 'dollar-coin-shine', 'dot', 'double-buildings', 'edit-template', 'envelope', 'exclude', 'expand-content', 'expense', 'explore_nearby', 'eye-circle', 'eye-invisible', 'eye', 'face-meh', 'face-sad', 'face-smiley', 'feed', 'feedbacks', 'file-certified', 'file-clone', 'file-copy', 'file-csv', 'file-dispose', 'file-doc', 'file-excel', 'file-export', 'file-lock', 'file-pdf', 'file-powerpoint', 'file-search', 'file-secured', 'file-sheets', 'file-slide', 'file-verified', 'file-word', 'file', 'filter', 'folder-user', 'folder', 'format-bold', 'format-heading1', 'format-heading2', 'format-italic', 'format-list-bulleted', 'format-list-numbered', 'format-underlined', 'funnel-filter', 'global-dollar', 'globe', 'graduation-cap', 'graph', 'happy-sun', 'health-bag', 'heart', 'hero-points', 'home', 'image', 'import', 'incident-siren', 'instapay-daily', 'instapay-now', 'instapay', 'list', 'loading-2', 'loading', 'location-on', 'location', 'lock', 'looks-one', 'looks-two', 'media-content', 'menu', 'money-notes', 'moneybag', 'moon', 'multiple-stars', 'multiple-users', 'near-me', 'node', 'open-folder', 'paperclip-vertical', 'paperclip', 'payment-summary', 'pencil', 'phone', 'piggy-bank', 'plane-up', 'plane', 'play-arrow', 'play-circle', 'print', 'raising-hands', 'reply-arrow', 'reply', 'reschedule', 'rostering', 'salary-sacrifice', 'save', 'schedule-send', 'schedule', 'search-person', 'search', 'send', 'speaker-active', 'speaker', 'star-award', 'star-badge', 'star-circle', 'star-medal', 'star', 'steps-circle', 'stopwatch', 'suitcase', 'surfing', 'survey', 'swag-pillar-benefit', 'swag-pillar-career', 'swag-pillar-money', 'swag-pillar-work', 'swag', 'swipe-right', 'switch', 'tag', 'target', 'teams', 'thumb-down', 'timesheet', 'touch-id', 'trash-bin', 'unlock', 'user', 'video-1', 'video-2', 'wallet', 'warning', 'accommodation-outlined', 'activate-outlined', 'add-credit-card-outlined', 'add-person-outlined', 'add-section-outlined', 'add-time-outlined', 'add', 'adjustment-outlined', 'afternoon-outlined', 'ai-outlined', 'alignment-2-outlined', 'alignment-outlined', 'all-caps', 'application-outlined', 'arrow-down', 'arrow-downwards', 'arrow-left', 'arrow-leftwards', 'arrow-right', 'arrow-rightwards', 'arrow-up', 'arrow-upwards', 'article-outlined', 'at-sign', 'auto-graph-outlined', 'automotive-outlined', 'bakery-outlined', 'bar-outlined', 'beauty-outlined', 'beer-outlined', 'bell-active-outlined', 'bell-outlined', 'bell-slash-outlined', 'bill-management-outlined', 'billing-outlined', 'body-outlined', 'bold', 'bolt-outlined', 'book-outlined', 'bookmark-added-outlined', 'bookmark-checked-outlined', 'bookmark-outlined', 'box-1-outlined', 'box-check-outlined', 'box-outlined', 'bullet-points', 'cake-outlined', 'calculator-outlined', 'calendar-dates-outlined', 'calendar-star-outlined', 'call-outlined', 'call-split-outlined', 'camera-outlined', 'cancel', 'car-forward-outlined', 'cashback-outlined', 'charging-station-outlined', 'chat-bubble-outlined', 'chat-unread-outlined', 'checkmark', 'circle-add-outlined', 'circle-cancel-outlined', 'circle-down-outlined', 'circle-info-outlined', 'circle-left-outlined', 'circle-ok-outlined', 'circle-question-outlined', 'circle-remove-outlined', 'circle-right-outlined', 'circle-up-outlined', 'circle-warning-outlined', 'clock-2-outlined', 'clock-in-outlined', 'clock-out-outlined', 'clock-outlined', 'cog-outlined', 'coin-outlined', 'coin-super-outlined', 'comment-outlined', 'contacts-outlined', 'contacts-user-outlined', 'credit-card-outlined', 'cultural-site-outlined', 'cup-outlined', 'dentistry-outlined', 'direction-arrows-outlined', 'directory-outlined', 'document-outlined', 'dollar-box-outlined', 'dollar-card-outlined', 'dollar-coin-shine-outlined', 'dollar-credit-card-outlined', 'dollar-sign', 'double-buildings-outlined', 'double-left-arrows', 'double-right-arrows', 'download-box-outlined', 'download-outlined', 'edit-template-outlined', 'electronics-outlined', 'email-outlined', 'end-break-outlined', 'enter-arrow', 'entertainment-outlined', 'envelope-outlined', 'evening-outlined', 'expense-approval-outlined', 'expense-outlined', 'explore-outlined', 'extension-outlined', 'external-link', 'eye-invisible-outlined', 'eye-outlined', 'face-id', 'face-meh-outlined', 'face-open-smiley-outlined', 'face-sad-outlined', 'face-smiley-outlined', 'fastfood-outlined', 'feed-outlined', 'file-certified-outlined', 'file-clone-outlined', 'file-copy-outlined', 'file-dispose-outlined', 'file-dollar-certified-outlined', 'file-dollar-outlined', 'file-download-outlined', 'file-export-outlined', 'file-lock-outlined', 'file-outlined', 'file-search-outlined', 'file-secured-outlined', 'file-statutory-outlined', 'file-verified-outlined', 'filter-outlined', 'fitness-outlined', 'folder-outlined', 'folder-upload-outlined', 'folder-user-outlined', 'form-outlined', 'funnel-filter-outline', 'goal-outlined', 'graph-outlined', 'grocery-outlined', 'hand-holding-user-outlined', 'handshake-outlined', 'happy-sun-outlined', 'health-bag-outlined', 'heart-outlined', 'home-active-outlined', 'home-outlined', 'id-card-outlined', 'image-outlined', 'import-outlined', 'instapay-outlined', 'italic', 'job-search-outlined', 'leave-approval-outlined', 'link-1', 'link-2', 'list-outlined', 'live-help-outlined', 'local_mall_outlined', 'location-on-outlined', 'location-outlined', 'lock-outlined', 'locked-file-outlined', 'log-out', 'mail-outlined', 'map-outlined', 'media-content-outlined', 'menu-close', 'menu-expand', 'menu-fold-outlined', 'menu-unfold-outlined', 'moneybag-outlined', 'moon-outlined', 'more-horizontal', 'more-vertical', 'morning-outlined', 'multiple-folders-outlined', 'multiple-users-outlined', 'near-me-outlined', 'node-outlined', 'number-points', 'number', 'overview-outlined', 'park-outlined', 'payment-summary-outlined', 'payslip-outlined', 'pencil-outlined', 'percentage', 'phone-outlined', 'piggy-bank-outlined', 'plane-outlined', 'play-circle-outlined', 'print-outlined', 'propane-tank-outlined', 'qr-code-outlined', 'qualification-outlined', 're-assign', 'redeem', 'refresh', 'remove', 'reply-outlined', 'restart', 'restaurant-outlined', 'resume-outlined', 'return-arrow', 'rostering-outlined', 'safety-outlined', 'save-outlined', 'schedule-outlined', 'search-outlined', 'search-secured-outlined', 'send-outlined', 'share-1', 'share-2', 'share-outlined-2', 'share-outlined', 'shield-check-outlined', 'shop-outlined', 'shopping_basket_outlined', 'show-chart-outlined', 'single-down-arrow', 'single-left-arrow', 'single-right-arrow', 'single-up-arrow', 'smart-match-outlined', 'sparkle-outlined', 'speaker-active-outlined', 'speaker-outlined', 'star-circle-outlined', 'star-outlined', 'start-break-outlined', 'stash-outlined', 'stopwatch-outlined', 'strikethrough', 'styler-outlined', 'suitcase-clock-outlined', 'suitcase-outlined', 'survey-outlined', 'switch-outlined', 'sync', 'tag-outlined', 'target-outlined', 'tennis-outlined', 'thumb-down-outlined', 'ticket-outlined', 'timesheet-outlined', 'timesheets-outlined', 'today-outlined', 'transfer', 'transportation-outlined', 'trash-bin-outlined', 'umbrela-outlined', 'unavailability-outlined', 'unavailable', 'underline', 'union-outlined', 'unlock-outlined', 'upload-outlined', 'user-circle-outlined', 'user-gear-outlined', 'user-outlined', 'user-rectangle-outlined', 'video-1-outlined', 'video-2-outlined', 'volunteer-outlined', 'wallet-outlined', 'wellness-outlined'];
7699
7715
 
7700
7716
  var activate = 59000;
7701
7717
  var adjustment = 59003;
@@ -7783,12 +7799,12 @@ var redeem = 59392;
7783
7799
  var refresh = 59393;
7784
7800
  var remove = 59394;
7785
7801
  var restart = 59396;
7786
- var shopping_basket_outlined = 59412;
7787
- var strikethrough = 59427;
7788
- var sync = 59433;
7789
- var transfer = 59442;
7790
- var unavailable = 59447;
7791
- var underline = 59448;
7802
+ var shopping_basket_outlined = 59413;
7803
+ var strikethrough = 59428;
7804
+ var sync = 59434;
7805
+ var transfer = 59443;
7806
+ var unavailable = 59448;
7807
+ var underline = 59449;
7792
7808
  var glyphMap = {
7793
7809
  activate: activate,
7794
7810
  "add-emoji": 59001,
@@ -8201,56 +8217,57 @@ var glyphMap = {
8201
8217
  "share-2": 59408,
8202
8218
  "share-outlined-2": 59409,
8203
8219
  "share-outlined": 59410,
8204
- "shop-outlined": 59411,
8220
+ "shield-check-outlined": 59411,
8221
+ "shop-outlined": 59412,
8205
8222
  shopping_basket_outlined: shopping_basket_outlined,
8206
- "show-chart-outlined": 59413,
8207
- "single-down-arrow": 59414,
8208
- "single-left-arrow": 59415,
8209
- "single-right-arrow": 59416,
8210
- "single-up-arrow": 59417,
8211
- "smart-match-outlined": 59418,
8212
- "sparkle-outlined": 59419,
8213
- "speaker-active-outlined": 59420,
8214
- "speaker-outlined": 59421,
8215
- "star-circle-outlined": 59422,
8216
- "star-outlined": 59423,
8217
- "start-break-outlined": 59424,
8218
- "stash-outlined": 59425,
8219
- "stopwatch-outlined": 59426,
8223
+ "show-chart-outlined": 59414,
8224
+ "single-down-arrow": 59415,
8225
+ "single-left-arrow": 59416,
8226
+ "single-right-arrow": 59417,
8227
+ "single-up-arrow": 59418,
8228
+ "smart-match-outlined": 59419,
8229
+ "sparkle-outlined": 59420,
8230
+ "speaker-active-outlined": 59421,
8231
+ "speaker-outlined": 59422,
8232
+ "star-circle-outlined": 59423,
8233
+ "star-outlined": 59424,
8234
+ "start-break-outlined": 59425,
8235
+ "stash-outlined": 59426,
8236
+ "stopwatch-outlined": 59427,
8220
8237
  strikethrough: strikethrough,
8221
- "styler-outlined": 59428,
8222
- "suitcase-clock-outlined": 59429,
8223
- "suitcase-outlined": 59430,
8224
- "survey-outlined": 59431,
8225
- "switch-outlined": 59432,
8238
+ "styler-outlined": 59429,
8239
+ "suitcase-clock-outlined": 59430,
8240
+ "suitcase-outlined": 59431,
8241
+ "survey-outlined": 59432,
8242
+ "switch-outlined": 59433,
8226
8243
  sync: sync,
8227
- "tag-outlined": 59434,
8228
- "target-outlined": 59435,
8229
- "tennis-outlined": 59436,
8230
- "thumb-down-outlined": 59437,
8231
- "ticket-outlined": 59438,
8232
- "timesheet-outlined": 59439,
8233
- "timesheets-outlined": 59440,
8234
- "today-outlined": 59441,
8244
+ "tag-outlined": 59435,
8245
+ "target-outlined": 59436,
8246
+ "tennis-outlined": 59437,
8247
+ "thumb-down-outlined": 59438,
8248
+ "ticket-outlined": 59439,
8249
+ "timesheet-outlined": 59440,
8250
+ "timesheets-outlined": 59441,
8251
+ "today-outlined": 59442,
8235
8252
  transfer: transfer,
8236
- "transportation-outlined": 59443,
8237
- "trash-bin-outlined": 59444,
8238
- "umbrela-outlined": 59445,
8239
- "unavailability-outlined": 59446,
8253
+ "transportation-outlined": 59444,
8254
+ "trash-bin-outlined": 59445,
8255
+ "umbrela-outlined": 59446,
8256
+ "unavailability-outlined": 59447,
8240
8257
  unavailable: unavailable,
8241
8258
  underline: underline,
8242
- "union-outlined": 59449,
8243
- "unlock-outlined": 59450,
8244
- "upload-outlined": 59451,
8245
- "user-circle-outlined": 59452,
8246
- "user-gear-outlined": 59453,
8247
- "user-outlined": 59454,
8248
- "user-rectangle-outlined": 59455,
8249
- "video-1-outlined": 59456,
8250
- "video-2-outlined": 59457,
8251
- "volunteer-outlined": 59458,
8252
- "wallet-outlined": 59459,
8253
- "wellness-outlined": 59460
8259
+ "union-outlined": 59450,
8260
+ "unlock-outlined": 59451,
8261
+ "upload-outlined": 59452,
8262
+ "user-circle-outlined": 59453,
8263
+ "user-gear-outlined": 59454,
8264
+ "user-outlined": 59455,
8265
+ "user-rectangle-outlined": 59456,
8266
+ "video-1-outlined": 59457,
8267
+ "video-2-outlined": 59458,
8268
+ "volunteer-outlined": 59459,
8269
+ "wallet-outlined": 59460,
8270
+ "wellness-outlined": 59461
8254
8271
  };
8255
8272
 
8256
8273
  var HeroIcon = reactNativeVectorIcons.createIconSet(glyphMap, 'hero-icons-mobile', 'hero-icons-mobile.ttf');
@@ -8276,10 +8293,10 @@ var StyledHeroIcon = index$a(HeroIcon)(function (_ref) {
8276
8293
  };
8277
8294
  });
8278
8295
 
8279
- var _excluded$G = ["style"];
8296
+ var _excluded$H = ["style"];
8280
8297
  var AnimatedIcon = function AnimatedIcon(_ref) {
8281
8298
  var style = _ref.style,
8282
- otherProps = _objectWithoutProperties(_ref, _excluded$G);
8299
+ otherProps = _objectWithoutProperties(_ref, _excluded$H);
8283
8300
  var rotateAnimation = React.useRef(new reactNative.Animated.Value(0));
8284
8301
  React.useEffect(function () {
8285
8302
  var animation = reactNative.Animated.loop(reactNative.Animated.timing(rotateAnimation.current, {
@@ -8384,7 +8401,7 @@ var AccordionItem = function AccordionItem(_ref) {
8384
8401
  }, content));
8385
8402
  };
8386
8403
 
8387
- var _excluded$F = ["key"];
8404
+ var _excluded$G = ["key"];
8388
8405
  var Accordion = function Accordion(_ref) {
8389
8406
  var items = _ref.items,
8390
8407
  activeItemKey = _ref.activeItemKey,
@@ -8405,7 +8422,7 @@ var Accordion = function Accordion(_ref) {
8405
8422
  testID: testID
8406
8423
  }, items.map(function (_ref2, index) {
8407
8424
  var key = _ref2.key,
8408
- props = _objectWithoutProperties(_ref2, _excluded$F);
8425
+ props = _objectWithoutProperties(_ref2, _excluded$G);
8409
8426
  var open = _activeItemKey === key;
8410
8427
  return /*#__PURE__*/React__namespace.default.createElement(React__namespace.default.Fragment, {
8411
8428
  key: key
@@ -9271,7 +9288,7 @@ var borderWidths = {
9271
9288
  var config = _objectSpread2(_objectSpread2(_objectSpread2(_objectSpread2({}, colors), space), radii), borderWidths);
9272
9289
  var flexPropsKey = ['alignContent', 'alignItems', 'alignSelf', 'display', 'flex', 'flexBasis', 'flexDirection', 'flexGrow', 'flexShrink', 'flexWrap', 'justifyContent'];
9273
9290
 
9274
- var _excluded$E = ["theme"];
9291
+ var _excluded$F = ["theme"];
9275
9292
  var getThemeValue = function getThemeValue(theme, key, props) {
9276
9293
  var propConfig = config[key];
9277
9294
  var propValue = props[key];
@@ -9298,18 +9315,18 @@ var mapStylePropToThemeValue = function mapStylePropToThemeValue(theme, props) {
9298
9315
  var configKeys = Object.keys(config);
9299
9316
  var StyledBox = index$a(reactNative.View)(function (_ref5) {
9300
9317
  var theme = _ref5.theme,
9301
- otherProps = _objectWithoutProperties(_ref5, _excluded$E);
9318
+ otherProps = _objectWithoutProperties(_ref5, _excluded$F);
9302
9319
  var styleProps = pick(configKeys, otherProps);
9303
9320
  var flexProps = pick(_toConsumableArray(flexPropsKey), otherProps);
9304
9321
  return _objectSpread2(_objectSpread2({}, mapStylePropToThemeValue(theme, styleProps)), flexProps);
9305
9322
  });
9306
9323
 
9307
- var _excluded$D = ["children", "style", "testID"];
9324
+ var _excluded$E = ["children", "style", "testID"];
9308
9325
  var Box = function Box(_ref) {
9309
9326
  var children = _ref.children,
9310
9327
  style = _ref.style,
9311
9328
  testID = _ref.testID,
9312
- otherProps = _objectWithoutProperties(_ref, _excluded$D);
9329
+ otherProps = _objectWithoutProperties(_ref, _excluded$E);
9313
9330
  return /*#__PURE__*/React__namespace.default.createElement(StyledBox, _extends$1({}, otherProps, {
9314
9331
  style: style,
9315
9332
  testID: testID
@@ -9530,16 +9547,44 @@ var StyledStatus = index$a(reactNative.Animated.View)(function (_ref3) {
9530
9547
  borderRadius: theme.radii.rounded
9531
9548
  };
9532
9549
  });
9533
- var StyledIcon$4 = index$a(Icon)(function (_ref4) {
9534
- var themeSize = _ref4.themeSize,
9535
- theme = _ref4.theme;
9550
+ var StyledCount = index$a(reactNative.View)(function (_ref4) {
9551
+ var theme = _ref4.theme;
9552
+ return {
9553
+ backgroundColor: theme.__hd__.badge.colors.danger,
9554
+ borderRadius: theme.__hd__.badge.radii.count,
9555
+ minWidth: theme.__hd__.badge.sizes.count.width,
9556
+ height: theme.__hd__.badge.sizes.count.height,
9557
+ alignItems: 'center',
9558
+ justifyContent: 'center',
9559
+ textAlign: 'center',
9560
+ textAlignVertical: 'center',
9561
+ color: theme.__hd__.badge.colors.text,
9562
+ display: 'flex',
9563
+ paddingHorizontal: theme.__hd__.badge.space.countPaddingHorizontal,
9564
+ position: 'absolute',
9565
+ top: theme.__hd__.badge.space.statusPositionTop,
9566
+ right: theme.__hd__.badge.space.statusPositionRight
9567
+ };
9568
+ });
9569
+ var StyledCountText = index$a(Typography.Text)(function (_ref5) {
9570
+ var theme = _ref5.theme;
9571
+ return {
9572
+ height: theme.__hd__.badge.sizes.count.height,
9573
+ lineHeight: theme.__hd__.badge.lineHeights.count,
9574
+ color: theme.__hd__.badge.colors.text,
9575
+ fontSize: theme.__hd__.badge.fontSizes.count
9576
+ };
9577
+ });
9578
+ var StyledIcon$4 = index$a(Icon)(function (_ref6) {
9579
+ var themeSize = _ref6.themeSize,
9580
+ theme = _ref6.theme;
9536
9581
  return {
9537
9582
  fontSize: theme.__hd__.badge.fontSizes[themeSize]
9538
9583
  };
9539
9584
  });
9540
9585
 
9541
- var _excluded$C = ["children", "visible", "intent", "style", "testID"];
9542
- var Status = function Status(_ref) {
9586
+ var _excluded$D = ["children", "visible", "intent", "style", "testID"];
9587
+ var Status$1 = function Status(_ref) {
9543
9588
  var children = _ref.children,
9544
9589
  _ref$visible = _ref.visible,
9545
9590
  visible = _ref$visible === void 0 ? true : _ref$visible,
@@ -9547,7 +9592,7 @@ var Status = function Status(_ref) {
9547
9592
  intent = _ref$intent === void 0 ? 'danger' : _ref$intent,
9548
9593
  style = _ref.style,
9549
9594
  testID = _ref.testID,
9550
- nativeProps = _objectWithoutProperties(_ref, _excluded$C);
9595
+ nativeProps = _objectWithoutProperties(_ref, _excluded$D);
9551
9596
  var _React$useRef = React__namespace.default.useRef(new reactNative.Animated.Value(visible ? 1 : 0)),
9552
9597
  opacity = _React$useRef.current;
9553
9598
  var isFirstRendering = React__namespace.default.useRef(true);
@@ -9580,8 +9625,31 @@ var Status = function Status(_ref) {
9580
9625
  }));
9581
9626
  };
9582
9627
 
9583
- var _excluded$B = ["content", "visible", "max", "intent", "style", "testID", "size", "variant", "icon"];
9584
9628
  var DEFAULT_MAX_NUMBER = 99;
9629
+
9630
+ var _excluded$C = ["children", "visible", "style", "max", "testID", "content"];
9631
+ var Status = function Status(_ref) {
9632
+ var children = _ref.children,
9633
+ _ref$visible = _ref.visible,
9634
+ visible = _ref$visible === void 0 ? true : _ref$visible,
9635
+ style = _ref.style,
9636
+ _ref$max = _ref.max,
9637
+ max = _ref$max === void 0 ? DEFAULT_MAX_NUMBER : _ref$max,
9638
+ testID = _ref.testID,
9639
+ originalContent = _ref.content,
9640
+ nativeProps = _objectWithoutProperties(_ref, _excluded$C);
9641
+ var content = React.useMemo(function () {
9642
+ return originalContent > max ? "".concat(max, "+") : String(originalContent);
9643
+ }, [originalContent, max]);
9644
+ return /*#__PURE__*/React__namespace.default.createElement(reactNative.View, _extends$1({}, nativeProps, {
9645
+ style: style,
9646
+ testID: testID
9647
+ }), children, visible && /*#__PURE__*/React__namespace.default.createElement(StyledCount, {
9648
+ testID: "count-badge"
9649
+ }, /*#__PURE__*/React__namespace.default.createElement(StyledCountText, null, content)));
9650
+ };
9651
+
9652
+ var _excluded$B = ["content", "visible", "max", "intent", "style", "testID", "size", "variant", "icon"];
9585
9653
  var getPaddingState = function getPaddingState(content) {
9586
9654
  return content.length > 1 ? 'wideContent' : 'narrowContent';
9587
9655
  };
@@ -9647,7 +9715,8 @@ var Badge = function Badge(_ref) {
9647
9715
  }, content));
9648
9716
  };
9649
9717
  var Badge$1 = Object.assign(Badge, {
9650
- Status: Status
9718
+ Status: Status$1,
9719
+ Count: Status
9651
9720
  });
9652
9721
 
9653
9722
  var isHeroIcon = function isHeroIcon(x) {
@@ -15667,6 +15736,701 @@ var index$7 = Object.assign(Drawer, {
15667
15736
  Dragable: DragableDrawer
15668
15737
  });
15669
15738
 
15739
+ var Add = function Add(_ref) {
15740
+ var stroke = _ref.stroke,
15741
+ fill = _ref.fill,
15742
+ testID = _ref.testID;
15743
+ return /*#__PURE__*/React__namespace.default.createElement(Svg__default.default, {
15744
+ width: "73",
15745
+ height: "72",
15746
+ viewBox: "0 0 73 72",
15747
+ testID: testID
15748
+ }, /*#__PURE__*/React__namespace.default.createElement(Svg.Rect, {
15749
+ x: "0.100098",
15750
+ y: "11.3684",
15751
+ width: "60.6316",
15752
+ height: "60.6316",
15753
+ rx: "20",
15754
+ fill: fill,
15755
+ stroke: "transparent"
15756
+ }), /*#__PURE__*/React__namespace.default.createElement(Svg.Line, {
15757
+ x1: "30.1001",
15758
+ y1: "30",
15759
+ x2: "53.1001",
15760
+ y2: "30",
15761
+ stroke: stroke,
15762
+ strokeWidth: "4",
15763
+ strokeLinecap: "round"
15764
+ }), /*#__PURE__*/React__namespace.default.createElement(Svg.Line, {
15765
+ x1: "41.6001",
15766
+ y1: "18.5",
15767
+ x2: "41.6001",
15768
+ y2: "41.5",
15769
+ stroke: stroke,
15770
+ strokeWidth: "4",
15771
+ strokeLinecap: "round"
15772
+ }), /*#__PURE__*/React__namespace.default.createElement(Svg.Rect, {
15773
+ x: "13.4685",
15774
+ y: "2",
15775
+ width: "56.6316",
15776
+ height: "56.6316",
15777
+ rx: "18",
15778
+ stroke: stroke,
15779
+ fill: "transparent",
15780
+ strokeWidth: "4"
15781
+ }));
15782
+ };
15783
+
15784
+ var Boom = function Boom(_ref) {
15785
+ var stroke = _ref.stroke,
15786
+ fill = _ref.fill,
15787
+ testID = _ref.testID;
15788
+ return /*#__PURE__*/React__namespace.default.createElement(Svg__default.default, {
15789
+ width: 74,
15790
+ height: 79,
15791
+ viewBox: "0 0 74 79",
15792
+ testID: testID
15793
+ }, /*#__PURE__*/React__namespace.default.createElement(Svg.Path, {
15794
+ d: "M17.762 51.247v12.16L2.996 41.693v-3.91l2.172-2.17h3.474l-.868-2.172-1.738-6.515 2.606-2.605 2.606-2.172-.434-6.514 4.343-1.303 3.908 1.303 3.475-2.606h4.343l6.514 9.989h-5.646c-3.33 9.265-9.989 27.882-9.989 28.229z",
15795
+ fill: fill
15796
+ }), /*#__PURE__*/React__namespace.default.createElement(Svg.Mask, {
15797
+ id: "a",
15798
+ maskUnits: "userSpaceOnUse",
15799
+ x: 0,
15800
+ y: 10.4197,
15801
+ width: 74,
15802
+ height: 68,
15803
+ fill: "#000"
15804
+ }, /*#__PURE__*/React__namespace.default.createElement(Svg.Path, {
15805
+ fill: "#fff",
15806
+ d: "M0 10.4197H74V78.4197H0z"
15807
+ }), /*#__PURE__*/React__namespace.default.createElement(Svg.Path, {
15808
+ d: "M6.684 50.157c.67 1.054 1.425 2.303 2.257 3.66 3.266 5.374 7.329 12.056 10.944 15.345.266.245.542.453.81.67 2.999 3.275 6.912 5.515 10.585 6.704 2.71.882 5.316 1.308 7.818 1.308 7.238 0 13.572-3.637 18.566-10.758a9.692 9.692 0 011.9-2.004l11.314-9.035a5.593 5.593 0 002.094-3.845 5.582 5.582 0 00-1.298-4.18c-1.945-2.316-5.537-2.606-7.99-.647l-6.46 5.166c-.244.186-.556.222-.682.14-.068-.045-.15-.185-.2-.438v-.778c.037-.371.127-.833.326-1.426l3.045-9.436h-.014l4.158-12.866c.959-2.954-.67-6.139-3.624-7.098a5.492 5.492 0 00-3.556.059c.29-1.276.15-2.606-.461-3.778a5.572 5.572 0 00-3.289-2.791c-2.954-.959-6.139.67-7.098 3.624l-.407 1.262a5.558 5.558 0 00-2.814-2.072c-2.954-.95-6.139.67-7.098 3.623l-.832 2.584-5.791-9.116c-1.67-2.62-5.153-3.407-7.781-1.737a5.618 5.618 0 00-2.235 2.777c-.8-1.031-1.91-1.773-3.208-2.063a5.608 5.608 0 00-4.252.743c-2.62 1.669-3.407 5.152-1.737 7.78l.705 1.118a5.608 5.608 0 00-3.393.846 5.583 5.583 0 00-2.479 3.533 5.608 5.608 0 00.742 4.253l1.76 2.768a5.61 5.61 0 00-3.393.846 5.583 5.583 0 00-2.479 3.534 5.608 5.608 0 00.742 4.252l4.805 7.473zM4.892 36.816a3.331 3.331 0 012.502-.44c.869.2 1.597.707 2.072 1.462l6.75 10.622c.172.267.43.44.719.511-.683 2.57-1.172 5.004-1.276 7.008-.081 1.67.06 3.23.349 4.714-1.819-2.687-3.601-5.605-5.094-8.07-.833-1.367-1.597-2.63-2.28-3.697L3.86 41.412a3.331 3.331 0 01-.439-2.502 3.291 3.291 0 011.47-2.094zm1.91-9.31c.198-.87.705-1.598 1.46-2.073a3.314 3.314 0 014.574 1.018l7.483 11.78c-.892 2.584-1.855 5.411-2.674 8.175L11.42 36.6l-4.18-6.592a3.264 3.264 0 01-.439-2.502zm5.88-11.812a3.331 3.331 0 012.502-.44c.869.2 1.597.707 2.072 1.462l6.682 10.527-2.085 6.438c-.173.543-.372 1.122-.58 1.75l-6.487-10.215-3.13-4.949c-.973-1.538-.525-3.6 1.026-4.573zm9.673-1.462c1.538-.986 3.6-.52 4.587 1.018l3.904 6.148c-1.172-.185-2.375-.022-3.452.534a5.534 5.534 0 00-2.465 2.538l-3.592-5.65a3.342 3.342 0 011.018-4.588zM54.9 47.958l-.439 1.357a9.392 9.392 0 00-.43 2.005c.014.348.014.696 0 1.04.118 1.09.593 1.715 1.01 2.072.045.045.104.09.149.127.276.199.592.325.927.393.833.186 1.774-.022 2.56-.624l6.452-5.153c1.484-1.18 3.623-1.031 4.772.326.58.697.856 1.565.765 2.466a3.301 3.301 0 01-1.226 2.27l-11.314 9.035a11.756 11.756 0 00-2.353 2.488c-6.17 8.803-14.173 11.685-23.786 8.582-.2-.068-.407-.14-.602-.222a23.216 23.216 0 01-4.253-2.013c-1.75-1.054-3.429-2.375-4.854-3.963-2.723-3.045-4.542-7.066-4.306-12.056.126-2.687 1.09-6.415 2.248-10.156.29-.95.602-1.91.914-2.85.267-.801.534-1.575.787-2.34.163-.474.326-.95.488-1.401.09-.276.2-.557.29-.824.068-.199.127-.38.199-.579.439-1.298.855-2.488 1.194-3.533l1.493-4.61.923-2.868.326-.986a3.308 3.308 0 011.647-1.937 3.321 3.321 0 014.682 3.963l-.303.95-1.701 5.28-.462 1.434-.51 1.43-.937 2.881c-.023.09-.023.172-.037.267-.045.52.254 1.031.778 1.194a1.161 1.161 0 001.462-.742l.117-.357.326-.995.29-.905.036-.09.045-.14.461-1.426.082-.253 2.524-7.804.045-.15.014-.022.453-1.411v-.023l.452-1.412.013-.022 1.425-4.402a3.34 3.34 0 014.18-2.144 3.34 3.34 0 012.145 4.18l-3.117 9.636-.461 1.434-.453 1.389-1.47 4.528-.778 2.42a1.161 1.161 0 001.1 1.52c.022 0 .035-.013.058-.013.045 0 .09-.014.14-.023a.9.9 0 00.267-.081c.045-.023.09-.045.127-.068.081-.045.15-.104.222-.172.036-.036.067-.059.09-.09.09-.105.163-.231.208-.371l1.018-3.14.905-2.778.37-1.135.372-1.158 1.203-3.705 1.226-3.8 1.194-3.683.172-.534.602-1.854 1.031-3.185a3.34 3.34 0 014.18-2.145c.846.276 1.53.855 1.937 1.647.407.787.475 1.692.208 2.538l-.728 2.248-.43 1.308-.068.208-.439 1.357-1.841 5.687-2.895 8.962-1.679 5.198a1.161 1.161 0 001.1 1.52 1.16 1.16 0 001.099-.801l.325-1.018.037-.127 1.538-4.772 2.352-7.261.326-.996.914-2.814 1.122-3.487.244-.751a3.32 3.32 0 014.18-2.131 3.325 3.325 0 012.13 4.18L57.426 40.21l-1.737 5.375-.2.624-.588 1.75z"
15809
+ })), /*#__PURE__*/React__namespace.default.createElement(Svg.Path, {
15810
+ d: "M6.684 50.157c.67 1.054 1.425 2.303 2.257 3.66 3.266 5.374 7.329 12.056 10.944 15.345.266.245.542.453.81.67 2.999 3.275 6.912 5.515 10.585 6.704 2.71.882 5.316 1.308 7.818 1.308 7.238 0 13.572-3.637 18.566-10.758a9.692 9.692 0 011.9-2.004l11.314-9.035a5.593 5.593 0 002.094-3.845 5.582 5.582 0 00-1.298-4.18c-1.945-2.316-5.537-2.606-7.99-.647l-6.46 5.166c-.244.186-.556.222-.682.14-.068-.045-.15-.185-.2-.438v-.778c.037-.371.127-.833.326-1.426l3.045-9.436h-.014l4.158-12.866c.959-2.954-.67-6.139-3.624-7.098a5.492 5.492 0 00-3.556.059c.29-1.276.15-2.606-.461-3.778a5.572 5.572 0 00-3.289-2.791c-2.954-.959-6.139.67-7.098 3.624l-.407 1.262a5.558 5.558 0 00-2.814-2.072c-2.954-.95-6.139.67-7.098 3.623l-.832 2.584-5.791-9.116c-1.67-2.62-5.153-3.407-7.781-1.737a5.618 5.618 0 00-2.235 2.777c-.8-1.031-1.91-1.773-3.208-2.063a5.608 5.608 0 00-4.252.743c-2.62 1.669-3.407 5.152-1.737 7.78l.705 1.118a5.608 5.608 0 00-3.393.846 5.583 5.583 0 00-2.479 3.533 5.608 5.608 0 00.742 4.253l1.76 2.768a5.61 5.61 0 00-3.393.846 5.583 5.583 0 00-2.479 3.534 5.608 5.608 0 00.742 4.252l4.805 7.473zM4.892 36.816a3.331 3.331 0 012.502-.44c.869.2 1.597.707 2.072 1.462l6.75 10.622c.172.267.43.44.719.511-.683 2.57-1.172 5.004-1.276 7.008-.081 1.67.06 3.23.349 4.714-1.819-2.687-3.601-5.605-5.094-8.07-.833-1.367-1.597-2.63-2.28-3.697L3.86 41.412a3.331 3.331 0 01-.439-2.502 3.291 3.291 0 011.47-2.094zm1.91-9.31c.198-.87.705-1.598 1.46-2.073a3.314 3.314 0 014.574 1.018l7.483 11.78c-.892 2.584-1.855 5.411-2.674 8.175L11.42 36.6l-4.18-6.592a3.264 3.264 0 01-.439-2.502zm5.88-11.812a3.331 3.331 0 012.502-.44c.869.2 1.597.707 2.072 1.462l6.682 10.527-2.085 6.438c-.173.543-.372 1.122-.58 1.75l-6.487-10.215-3.13-4.949c-.973-1.538-.525-3.6 1.026-4.573zm9.673-1.462c1.538-.986 3.6-.52 4.587 1.018l3.904 6.148c-1.172-.185-2.375-.022-3.452.534a5.534 5.534 0 00-2.465 2.538l-3.592-5.65a3.342 3.342 0 011.018-4.588zM54.9 47.958l-.439 1.357a9.392 9.392 0 00-.43 2.005c.014.348.014.696 0 1.04.118 1.09.593 1.715 1.01 2.072.045.045.104.09.149.127.276.199.592.325.927.393.833.186 1.774-.022 2.56-.624l6.452-5.153c1.484-1.18 3.623-1.031 4.772.326.58.697.856 1.565.765 2.466a3.301 3.301 0 01-1.226 2.27l-11.314 9.035a11.756 11.756 0 00-2.353 2.488c-6.17 8.803-14.173 11.685-23.786 8.582-.2-.068-.407-.14-.602-.222a23.216 23.216 0 01-4.253-2.013c-1.75-1.054-3.429-2.375-4.854-3.963-2.723-3.045-4.542-7.066-4.306-12.056.126-2.687 1.09-6.415 2.248-10.156.29-.95.602-1.91.914-2.85.267-.801.534-1.575.787-2.34.163-.474.326-.95.488-1.401.09-.276.2-.557.29-.824.068-.199.127-.38.199-.579.439-1.298.855-2.488 1.194-3.533l1.493-4.61.923-2.868.326-.986a3.308 3.308 0 011.647-1.937 3.321 3.321 0 014.682 3.963l-.303.95-1.701 5.28-.462 1.434-.51 1.43-.937 2.881c-.023.09-.023.172-.037.267-.045.52.254 1.031.778 1.194a1.161 1.161 0 001.462-.742l.117-.357.326-.995.29-.905.036-.09.045-.14.461-1.426.082-.253 2.524-7.804.045-.15.014-.022.453-1.411v-.023l.452-1.412.013-.022 1.425-4.402a3.34 3.34 0 014.18-2.144 3.34 3.34 0 012.145 4.18l-3.117 9.636-.461 1.434-.453 1.389-1.47 4.528-.778 2.42a1.161 1.161 0 001.1 1.52c.022 0 .035-.013.058-.013.045 0 .09-.014.14-.023a.9.9 0 00.267-.081c.045-.023.09-.045.127-.068.081-.045.15-.104.222-.172.036-.036.067-.059.09-.09.09-.105.163-.231.208-.371l1.018-3.14.905-2.778.37-1.135.372-1.158 1.203-3.705 1.226-3.8 1.194-3.683.172-.534.602-1.854 1.031-3.185a3.34 3.34 0 014.18-2.145c.846.276 1.53.855 1.937 1.647.407.787.475 1.692.208 2.538l-.728 2.248-.43 1.308-.068.208-.439 1.357-1.841 5.687-2.895 8.962-1.679 5.198a1.161 1.161 0 001.1 1.52 1.16 1.16 0 001.099-.801l.325-1.018.037-.127 1.538-4.772 2.352-7.261.326-.996.914-2.814 1.122-3.487.244-.751a3.32 3.32 0 014.18-2.131 3.325 3.325 0 012.13 4.18L57.426 40.21l-1.737 5.375-.2.624-.588 1.75z",
15811
+ fill: stroke
15812
+ }), /*#__PURE__*/React__namespace.default.createElement(Svg.Path, {
15813
+ d: "M6.684 50.157c.67 1.054 1.425 2.303 2.257 3.66 3.266 5.374 7.329 12.056 10.944 15.345.266.245.542.453.81.67 2.999 3.275 6.912 5.515 10.585 6.704 2.71.882 5.316 1.308 7.818 1.308 7.238 0 13.572-3.637 18.566-10.758a9.692 9.692 0 011.9-2.004l11.314-9.035a5.593 5.593 0 002.094-3.845 5.582 5.582 0 00-1.298-4.18c-1.945-2.316-5.537-2.606-7.99-.647l-6.46 5.166c-.244.186-.556.222-.682.14-.068-.045-.15-.185-.2-.438v-.778c.037-.371.127-.833.326-1.426l3.045-9.436h-.014l4.158-12.866c.959-2.954-.67-6.139-3.624-7.098a5.492 5.492 0 00-3.556.059c.29-1.276.15-2.606-.461-3.778a5.572 5.572 0 00-3.289-2.791c-2.954-.959-6.139.67-7.098 3.624l-.407 1.262a5.558 5.558 0 00-2.814-2.072c-2.954-.95-6.139.67-7.098 3.623l-.832 2.584-5.791-9.116c-1.67-2.62-5.153-3.407-7.781-1.737a5.618 5.618 0 00-2.235 2.777c-.8-1.031-1.91-1.773-3.208-2.063a5.608 5.608 0 00-4.252.743c-2.62 1.669-3.407 5.152-1.737 7.78l.705 1.118a5.608 5.608 0 00-3.393.846 5.583 5.583 0 00-2.479 3.533 5.608 5.608 0 00.742 4.253l1.76 2.768a5.61 5.61 0 00-3.393.846 5.583 5.583 0 00-2.479 3.534 5.608 5.608 0 00.742 4.252l4.805 7.473zM4.892 36.816a3.331 3.331 0 012.502-.44c.869.2 1.597.707 2.072 1.462l6.75 10.622c.172.267.43.44.719.511-.683 2.57-1.172 5.004-1.276 7.008-.081 1.67.06 3.23.349 4.714-1.819-2.687-3.601-5.605-5.094-8.07-.833-1.367-1.597-2.63-2.28-3.697L3.86 41.412a3.331 3.331 0 01-.439-2.502 3.291 3.291 0 011.47-2.094zm1.91-9.31c.198-.87.705-1.598 1.46-2.073a3.314 3.314 0 014.574 1.018l7.483 11.78c-.892 2.584-1.855 5.411-2.674 8.175L11.42 36.6l-4.18-6.592a3.264 3.264 0 01-.439-2.502zm5.88-11.812a3.331 3.331 0 012.502-.44c.869.2 1.597.707 2.072 1.462l6.682 10.527-2.085 6.438c-.173.543-.372 1.122-.58 1.75l-6.487-10.215-3.13-4.949c-.973-1.538-.525-3.6 1.026-4.573zm9.673-1.462c1.538-.986 3.6-.52 4.587 1.018l3.904 6.148c-1.172-.185-2.375-.022-3.452.534a5.534 5.534 0 00-2.465 2.538l-3.592-5.65a3.342 3.342 0 011.018-4.588zM54.9 47.958l-.439 1.357a9.392 9.392 0 00-.43 2.005c.014.348.014.696 0 1.04.118 1.09.593 1.715 1.01 2.072.045.045.104.09.149.127.276.199.592.325.927.393.833.186 1.774-.022 2.56-.624l6.452-5.153c1.484-1.18 3.623-1.031 4.772.326.58.697.856 1.565.765 2.466a3.301 3.301 0 01-1.226 2.27l-11.314 9.035a11.756 11.756 0 00-2.353 2.488c-6.17 8.803-14.173 11.685-23.786 8.582-.2-.068-.407-.14-.602-.222a23.216 23.216 0 01-4.253-2.013c-1.75-1.054-3.429-2.375-4.854-3.963-2.723-3.045-4.542-7.066-4.306-12.056.126-2.687 1.09-6.415 2.248-10.156.29-.95.602-1.91.914-2.85.267-.801.534-1.575.787-2.34.163-.474.326-.95.488-1.401.09-.276.2-.557.29-.824.068-.199.127-.38.199-.579.439-1.298.855-2.488 1.194-3.533l1.493-4.61.923-2.868.326-.986a3.308 3.308 0 011.647-1.937 3.321 3.321 0 014.682 3.963l-.303.95-1.701 5.28-.462 1.434-.51 1.43-.937 2.881c-.023.09-.023.172-.037.267-.045.52.254 1.031.778 1.194a1.161 1.161 0 001.462-.742l.117-.357.326-.995.29-.905.036-.09.045-.14.461-1.426.082-.253 2.524-7.804.045-.15.014-.022.453-1.411v-.023l.452-1.412.013-.022 1.425-4.402a3.34 3.34 0 014.18-2.144 3.34 3.34 0 012.145 4.18l-3.117 9.636-.461 1.434-.453 1.389-1.47 4.528-.778 2.42a1.161 1.161 0 001.1 1.52c.022 0 .035-.013.058-.013.045 0 .09-.014.14-.023a.9.9 0 00.267-.081c.045-.023.09-.045.127-.068.081-.045.15-.104.222-.172.036-.036.067-.059.09-.09.09-.105.163-.231.208-.371l1.018-3.14.905-2.778.37-1.135.372-1.158 1.203-3.705 1.226-3.8 1.194-3.683.172-.534.602-1.854 1.031-3.185a3.34 3.34 0 014.18-2.145c.846.276 1.53.855 1.937 1.647.407.787.475 1.692.208 2.538l-.728 2.248-.43 1.308-.068.208-.439 1.357-1.841 5.687-2.895 8.962-1.679 5.198a1.161 1.161 0 001.1 1.52 1.16 1.16 0 001.099-.801l.325-1.018.037-.127 1.538-4.772 2.352-7.261.326-.996.914-2.814 1.122-3.487.244-.751a3.32 3.32 0 014.18-2.131 3.325 3.325 0 012.13 4.18L57.426 40.21l-1.737 5.375-.2.624-.588 1.75z",
15814
+ stroke: stroke,
15815
+ mask: "url(#a)"
15816
+ }), /*#__PURE__*/React__namespace.default.createElement(Svg.Rect, {
15817
+ x: 37.6458,
15818
+ width: 2.60578,
15819
+ height: 7.81735,
15820
+ rx: 1.30289,
15821
+ transform: "rotate(2.496 37.646 0)",
15822
+ fill: stroke
15823
+ }), /*#__PURE__*/React__namespace.default.createElement(Svg.Rect, {
15824
+ x: 45.5715,
15825
+ y: 2.60578,
15826
+ width: 2.60578,
15827
+ height: 7.81734,
15828
+ rx: 1.30289,
15829
+ transform: "rotate(23 45.572 2.606)",
15830
+ fill: stroke
15831
+ }), /*#__PURE__*/React__namespace.default.createElement(Svg.Rect, {
15832
+ width: 2.60578,
15833
+ height: 7.81735,
15834
+ rx: 1.30289,
15835
+ transform: "scale(-1 1) rotate(23 -22.347 -77.062)",
15836
+ fill: stroke
15837
+ }));
15838
+ };
15839
+
15840
+ var Build = function Build(_ref) {
15841
+ var stroke = _ref.stroke,
15842
+ fill = _ref.fill,
15843
+ testID = _ref.testID;
15844
+ return /*#__PURE__*/React__namespace.default.createElement(Svg__default.default, {
15845
+ width: "73",
15846
+ height: "72",
15847
+ viewBox: "0 0 73 72",
15848
+ testID: testID
15849
+ }, /*#__PURE__*/React__namespace.default.createElement(Svg.Rect, {
15850
+ x: "0.615723",
15851
+ y: "11.3684",
15852
+ width: "60.6316",
15853
+ height: "60.6316",
15854
+ rx: "20",
15855
+ fill: fill,
15856
+ stroke: "transparent"
15857
+ }), /*#__PURE__*/React__namespace.default.createElement(Svg.Rect, {
15858
+ x: "13.9841",
15859
+ y: "2",
15860
+ width: "56.6316",
15861
+ height: "56.6316",
15862
+ rx: "18",
15863
+ strokeWidth: "4",
15864
+ stroke: stroke,
15865
+ fill: "transparent"
15866
+ }), /*#__PURE__*/React__namespace.default.createElement(Svg.Path, {
15867
+ fillRule: "evenodd",
15868
+ clipRule: "evenodd",
15869
+ d: "M33.0369 42.8913C32.7714 42.9823 32.4958 43.0278 32.2152 43.0278C31.3833 43.0278 30.602 42.6258 30.1141 41.9507C29.6286 41.2756 29.4971 40.4059 29.7626 39.617L34.9407 24.0827C35.1961 23.3115 35.8004 22.7047 36.5715 22.4443L52.1059 17.2662C53.0364 16.9552 54.0629 17.198 54.7556 17.8932C55.4484 18.5861 55.6911 19.6126 55.3801 20.543L50.202 36.0774C49.9467 36.8485 49.3424 37.4553 48.5712 37.7132L33.0369 42.8913Z",
15870
+ stroke: stroke,
15871
+ fill: stroke
15872
+ }), /*#__PURE__*/React__namespace.default.createElement(Svg.Circle, {
15873
+ cx: "43.0267",
15874
+ cy: "29.589",
15875
+ r: "3.94521",
15876
+ stroke: stroke,
15877
+ fill: fill
15878
+ }));
15879
+ };
15880
+
15881
+ var Clock = function Clock(_ref) {
15882
+ var stroke = _ref.stroke,
15883
+ fill = _ref.fill,
15884
+ testID = _ref.testID;
15885
+ return /*#__PURE__*/React__namespace.default.createElement(Svg__default.default, {
15886
+ width: "73",
15887
+ height: "73",
15888
+ viewBox: "0 0 73 73",
15889
+ testID: testID
15890
+ }, /*#__PURE__*/React__namespace.default.createElement(Svg.Rect, {
15891
+ x: "0.384277",
15892
+ y: "12.3684",
15893
+ width: "60.6316",
15894
+ height: "60.6316",
15895
+ rx: "20",
15896
+ fill: fill
15897
+ }), /*#__PURE__*/React__namespace.default.createElement(Svg.Path, {
15898
+ fillRule: "evenodd",
15899
+ clipRule: "evenodd",
15900
+ d: "M30.6916 57.4391C33.3944 57.6293 36.8359 57.6316 41.7001 57.6316C46.5643 57.6316 50.0057 57.6293 52.7085 57.4391C55.3738 57.2516 57.0177 56.8957 58.3216 56.3366C62.0954 54.7183 65.1026 51.7111 66.7209 47.9374C67.28 46.6334 67.6358 44.9895 67.8234 42.3242C68.0136 39.6215 68.0159 36.18 68.0159 31.3158C68.0159 26.4516 68.0136 23.0101 67.8234 20.3073C67.6358 17.6421 67.28 15.9982 66.7209 14.6942C65.1026 10.9204 62.0954 7.91326 58.3216 6.29499C57.0177 5.73584 55.3738 5.38001 52.7085 5.19248C50.0057 5.0023 46.5643 5 41.7001 5C36.8359 5 33.3944 5.0023 30.6916 5.19248C28.0264 5.38001 26.3824 5.73584 25.0785 6.29499C21.3047 7.91326 18.2975 10.9204 16.6793 14.6942C16.1201 15.9982 15.7643 17.6421 15.5768 20.3073C15.3866 23.0101 15.3843 26.4516 15.3843 31.3158C15.3843 36.18 15.3866 39.6215 15.5768 42.3242C15.7643 44.9895 16.1201 46.6334 16.6793 47.9374C18.2975 51.7111 21.3047 54.7183 25.0785 56.3366C26.3824 56.8957 28.0264 57.2516 30.6916 57.4391ZM13.003 13.1178C11.3843 16.8927 11.3843 21.7004 11.3843 31.3158C11.3843 40.9312 11.3843 45.7389 13.003 49.5138C15.0259 54.231 18.7848 57.99 23.5021 60.0128C27.2769 61.6316 32.0847 61.6316 41.7001 61.6316C51.3155 61.6316 56.1232 61.6316 59.8981 60.0128C64.6153 57.99 68.3743 54.231 70.3971 49.5138C72.0159 45.7389 72.0159 40.9312 72.0159 31.3158C72.0159 21.7004 72.0159 16.8927 70.3971 13.1178C68.3743 8.40056 64.6153 4.64158 59.8981 2.61874C56.1232 1 51.3155 1 41.7001 1C32.0847 1 27.2769 1 23.5021 2.61874C18.7848 4.64158 15.0259 8.40056 13.003 13.1178Z",
15901
+ fill: stroke
15902
+ }), /*#__PURE__*/React__namespace.default.createElement(Svg.Path, {
15903
+ d: "M41.3843 14.8C32.4514 14.8 25.1843 22.0668 25.1843 31C25.1843 39.9332 32.4511 47.2 41.3843 47.2C50.3175 47.2 57.5843 39.9332 57.5843 31C57.5843 22.0668 50.3175 14.8 41.3843 14.8ZM41.3843 43.6011C34.4369 43.6011 28.7829 37.9474 28.7829 30.9996C28.7829 24.0509 34.4365 18.3982 41.3843 18.3982C48.332 18.3982 53.9857 24.0519 53.9857 30.9996C53.9857 37.9474 48.332 43.6011 41.3843 43.6011Z",
15904
+ fill: stroke,
15905
+ stroke: stroke,
15906
+ strokeWidth: "0.4"
15907
+ }), /*#__PURE__*/React__namespace.default.createElement(Svg.Path, {
15908
+ d: "M40.1357 32.5728L40.136 32.5731L45.0853 37.0085L45.0853 37.0085C45.4289 37.3162 45.8587 37.4677 46.2863 37.4677C46.7793 37.4677 47.2717 37.2663 47.6266 36.8693C48.2902 36.1289 48.2276 34.992 47.4874 34.3283L47.4874 34.3283L43.1717 30.46C43.1784 30.4064 43.1836 30.3487 43.1836 30.289V23.3144C43.1836 22.3209 42.3777 21.5151 41.3843 21.5151C40.3909 21.5151 39.585 22.3209 39.585 23.3144V30.289C39.585 30.2924 39.585 30.2968 39.585 30.302C39.5847 30.4004 39.5837 30.8131 39.6409 31.2636C39.671 31.5006 39.7179 31.7543 39.7923 31.9815C39.8651 32.2043 39.9717 32.4253 40.1357 32.5728Z",
15909
+ fill: stroke,
15910
+ stroke: stroke,
15911
+ strokeWidth: "0.4"
15912
+ }));
15913
+ };
15914
+
15915
+ var Confetti = function Confetti(_ref) {
15916
+ var stroke = _ref.stroke,
15917
+ fill = _ref.fill,
15918
+ testID = _ref.testID;
15919
+ return /*#__PURE__*/React__namespace.default.createElement(Svg__default.default, {
15920
+ width: "73",
15921
+ height: "72",
15922
+ viewBox: "0 0 73 72",
15923
+ testID: testID
15924
+ }, /*#__PURE__*/React__namespace.default.createElement(Svg.Defs, null, /*#__PURE__*/React__namespace.default.createElement(Svg.ClipPath, {
15925
+ id: "clip0_19647_1699"
15926
+ }, /*#__PURE__*/React__namespace.default.createElement(Svg.Rect, {
15927
+ width: "72",
15928
+ height: "72",
15929
+ fill: "white",
15930
+ transform: "translate(0.100098)"
15931
+ }))), /*#__PURE__*/React__namespace.default.createElement(Svg.G, {
15932
+ clipPath: "url(#clip0_19647_1699)"
15933
+ }, /*#__PURE__*/React__namespace.default.createElement(Svg.Rect, {
15934
+ x: "0.100098",
15935
+ y: "11.3684",
15936
+ width: "60.6316",
15937
+ height: "60.6316",
15938
+ rx: "20",
15939
+ fill: fill
15940
+ }), /*#__PURE__*/React__namespace.default.createElement(Svg.Rect, {
15941
+ x: "13.4685",
15942
+ y: "2",
15943
+ width: "56.6316",
15944
+ height: "56.6316",
15945
+ rx: "18",
15946
+ stroke: stroke,
15947
+ strokeWidth: "4",
15948
+ fill: "transparent"
15949
+ }), /*#__PURE__*/React__namespace.default.createElement(Svg.Path, {
15950
+ d: "M37.2714 23.8504L37.2714 23.8504L37.2699 23.8489C36.7659 23.3552 36.0534 23.1375 35.3412 23.3024C34.6474 23.458 34.0906 23.965 33.8538 24.634L33.8534 24.6351L28.0143 41.4536L28.014 41.4544C27.7561 42.2073 27.9423 43.0243 28.5095 43.5915L28.6509 43.4501L28.5095 43.5915C28.9011 43.9831 29.4275 44.2005 29.9662 44.2005C30.1958 44.2005 30.4216 44.1587 30.6425 44.0884L30.7818 44.0441V44.0309L47.4658 38.2476L47.467 38.2472C48.1359 38.0105 48.6428 37.4538 48.7985 36.7601C48.9632 36.0588 48.7562 35.3352 48.2504 34.8294L48.1089 34.9708L48.2504 34.8294L37.2714 23.8504ZM30.2858 41.8149L33.2962 33.1643L38.9363 38.8044L30.2858 41.8149ZM46.4171 36.2111L41.3149 37.9868L34.1227 30.7856L35.8895 25.6835L46.4171 36.2111Z",
15951
+ fill: stroke,
15952
+ stroke: stroke,
15953
+ strokeWidth: "0.4"
15954
+ }), /*#__PURE__*/React__namespace.default.createElement(Svg.Path, {
15955
+ d: "M43.5303 23.2622L43.5303 23.2623L42.3083 24.483C42.3083 24.483 42.3083 24.483 42.3083 24.4831C42.0872 24.7041 41.7966 24.8144 41.507 24.8144C41.2171 24.8144 40.9277 24.704 40.7068 24.4831C40.2638 24.0401 40.2635 23.3234 40.707 22.8813L41.9287 21.6608C41.9287 21.6608 41.9287 21.6607 41.9288 21.6607C43.03 20.5584 43.2426 18.8537 42.4463 17.5132L43.5303 23.2622ZM43.5303 23.2622C45.365 21.4275 45.7215 18.586 44.3933 16.3537L44.3932 16.3535M43.5303 23.2622L44.3932 16.3535M44.3932 16.3535C44.0734 15.8173 43.3796 15.6386 42.8401 15.9599L44.3932 16.3535ZM42.8401 15.96C42.3018 16.2801 42.1265 16.9754 42.4462 17.5131L42.8401 15.96Z",
15956
+ fill: stroke,
15957
+ stroke: stroke,
15958
+ strokeWidth: "0.4"
15959
+ }), /*#__PURE__*/React__namespace.default.createElement(Svg.Path, {
15960
+ d: "M55.7471 27.7085L55.7469 27.7084C53.5124 26.3791 50.6732 26.7343 48.8384 28.5715C48.8384 28.5715 48.8384 28.5715 48.8384 28.5715L47.6177 29.7934C47.6176 29.7934 47.6176 29.7934 47.6176 29.7934C47.6176 29.7935 47.6176 29.7935 47.6176 29.7935C47.1748 30.2364 47.1744 30.9529 47.6177 31.395C47.8387 31.6161 48.1294 31.7264 48.419 31.7264C48.7087 31.7264 48.9994 31.6161 49.2204 31.395L49.2205 31.3949L50.4411 30.1731C51.5448 29.0705 53.2505 28.8581 54.5886 29.6554L54.5891 29.6557C55.1289 29.9751 55.823 29.7989 56.142 29.2616L56.1423 29.261C56.4591 28.7236 56.2841 28.0288 55.7471 27.7085Z",
15961
+ fill: stroke,
15962
+ stroke: stroke,
15963
+ strokeWidth: "0.4"
15964
+ }), /*#__PURE__*/React__namespace.default.createElement(Svg.Path, {
15965
+ d: "M44.1614 27.9388L44.1616 27.939C44.3826 28.1601 44.6733 28.2704 44.963 28.2704C45.2526 28.2704 45.5433 28.1601 45.7643 27.939C45.7643 27.939 45.7643 27.939 45.7643 27.939L51.2223 22.481C51.6654 22.0379 51.6654 21.3225 51.2223 20.8794C50.7792 20.4363 50.0638 20.4363 49.6207 20.8794L44.163 26.3372L44.3041 26.4788L44.1627 26.3374L44.1628 26.3373C43.7195 26.7794 43.7199 27.4959 44.1614 27.9388Z",
15966
+ fill: stroke,
15967
+ stroke: stroke,
15968
+ strokeWidth: "0.4"
15969
+ }), /*#__PURE__*/React__namespace.default.createElement(Svg.Path, {
15970
+ d: "M51.6867 32.7765C51.6867 33.1416 51.8257 33.43 52.0454 33.6252C52.2614 33.8171 52.5437 33.9087 52.8195 33.9087C53.0953 33.9087 53.3776 33.8171 53.5936 33.6252C53.8133 33.43 53.9523 33.1416 53.9523 32.7765C53.9523 32.4112 53.8134 32.1226 53.5937 31.9272C53.3777 31.7352 53.0954 31.6434 52.8195 31.6434C52.5437 31.6434 52.2613 31.7352 52.0453 31.9272C51.8256 32.1226 51.6867 32.4112 51.6867 32.7765Z",
15971
+ fill: stroke,
15972
+ stroke: stroke,
15973
+ strokeWidth: "0.4"
15974
+ }), /*#__PURE__*/React__namespace.default.createElement(Svg.Path, {
15975
+ d: "M38.1892 19.2869C38.1892 19.6519 38.3281 19.9404 38.5478 20.1356C38.7638 20.3275 39.0462 20.4191 39.322 20.4191C39.5977 20.4191 39.8801 20.3275 40.0961 20.1356C40.3158 19.9404 40.4548 19.6519 40.4548 19.2869C40.4548 18.9216 40.3158 18.6329 40.0962 18.4376C39.8802 18.2455 39.5978 18.1538 39.322 18.1538C39.0461 18.1538 38.7638 18.2455 38.5478 18.4376C38.3281 18.6329 38.1892 18.9216 38.1892 19.2869Z",
15976
+ fill: stroke,
15977
+ stroke: stroke,
15978
+ strokeWidth: "0.4"
15979
+ })));
15980
+ };
15981
+
15982
+ var Connections = function Connections(_ref) {
15983
+ var stroke = _ref.stroke,
15984
+ fill = _ref.fill,
15985
+ testID = _ref.testID;
15986
+ return /*#__PURE__*/React__namespace.default.createElement(Svg__default.default, {
15987
+ width: "72",
15988
+ height: "73",
15989
+ viewBox: "0 0 72 73",
15990
+ testID: testID
15991
+ }, /*#__PURE__*/React__namespace.default.createElement(Svg.Rect, {
15992
+ y: "12.2122",
15993
+ width: "60.6316",
15994
+ height: "60.6316",
15995
+ rx: "20",
15996
+ fill: fill,
15997
+ stroke: "transparent"
15998
+ }), /*#__PURE__*/React__namespace.default.createElement(Svg.Rect, {
15999
+ x: "13.3684",
16000
+ y: "2.84375",
16001
+ width: "56.6316",
16002
+ height: "56.6316",
16003
+ rx: "18",
16004
+ stroke: stroke,
16005
+ fill: "transparent",
16006
+ strokeWidth: "4"
16007
+ }), /*#__PURE__*/React__namespace.default.createElement(Svg.G, null, /*#__PURE__*/React__namespace.default.createElement(Svg.Path, {
16008
+ d: "M36.1528 44.2908C34.083 44.2996 32.0953 43.4778 30.6377 42.0086C29.1729 40.5438 28.3496 38.5574 28.3496 36.486C28.3496 34.4132 29.1728 32.427 30.6377 30.9622L32.8408 28.7591C33.1338 28.4632 33.5337 28.2962 33.9497 28.2962C34.3657 28.2962 34.7656 28.4632 35.0586 28.7591L43.8872 37.5877C44.1831 37.8807 44.3501 38.2806 44.3501 38.6966C44.3501 39.1126 44.1831 39.5125 43.8872 39.8055L41.6841 42.0086C40.2163 43.4734 38.2256 44.2938 36.1528 44.2908ZM33.9497 32.0711L32.8408 33.1653C31.0069 34.9993 31.0069 37.9713 32.8408 39.8054C34.6748 41.6396 37.6468 41.6394 39.481 39.8054L40.5752 38.6966L33.9497 32.0711Z",
16009
+ fill: stroke,
16010
+ strokeWidth: "4"
16011
+ }), /*#__PURE__*/React__namespace.default.createElement(Svg.Path, {
16012
+ d: "M49.4961 33.6341C49.0786 33.6326 48.6802 33.4642 48.3872 33.1653L39.481 24.3367C39.1851 24.0437 39.0181 23.6438 39.0181 23.2278C39.0181 22.8118 39.1851 22.4119 39.481 22.119L41.6841 19.9158C43.1401 18.4085 45.1396 17.5486 47.236 17.5311C49.3307 17.512 51.3463 18.3367 52.8272 19.8192C54.3096 21.3001 55.1343 23.3157 55.1153 25.4104C55.0977 27.5066 54.2379 29.5062 52.7305 30.9623L50.5274 33.1654C50.255 33.4452 49.8872 33.6121 49.4961 33.6341ZM42.793 23.2278L49.4961 29.8533L50.605 28.7591H50.6064C51.4883 27.8802 51.9849 26.6849 51.9849 25.4383C51.9849 24.1932 51.4883 22.9978 50.6064 22.1189C48.7431 20.3538 45.8282 20.3538 43.9648 22.1189L42.793 23.2278Z",
16013
+ fill: stroke
16014
+ }), /*#__PURE__*/React__namespace.default.createElement(Svg.Path, {
16015
+ d: "M36.1527 33.634C35.7411 33.6282 35.3471 33.4597 35.0585 33.1653C34.4535 32.5559 34.4535 31.5715 35.0585 30.9622L38.3719 27.6502C38.9916 27.1184 39.9159 27.1551 40.493 27.7322C41.0702 28.3094 41.1053 29.2322 40.575 29.8533L37.2616 33.1653C36.9701 33.4641 36.5702 33.6326 36.1527 33.634Z",
16016
+ fill: stroke
16017
+ }), /*#__PURE__*/React__namespace.default.createElement(Svg.Path, {
16018
+ d: "M40.5752 38.0565C40.1621 38.0506 39.7696 37.8822 39.481 37.5877C38.8745 36.9784 38.8745 35.994 39.481 35.3846L42.793 32.0726V32.0712C43.414 31.5409 44.3369 31.576 44.914 32.1532C45.4912 32.7303 45.5278 33.6546 44.9961 34.2743L41.6841 37.5877C41.3911 37.8851 40.9927 38.0536 40.5752 38.0565Z",
16019
+ fill: stroke
16020
+ }), /*#__PURE__*/React__namespace.default.createElement(Svg.Path, {
16021
+ d: "M51.6216 22.5877C51.2056 22.5892 50.8071 22.4266 50.5127 22.1336C50.2168 21.8406 50.0498 21.4407 50.0498 21.0247C50.0498 20.6087 50.2168 20.2088 50.5127 19.9159L56.9815 13.4471C57.5938 12.8333 58.5869 12.8333 59.1992 13.4471C59.813 14.0594 59.813 15.0526 59.1992 15.6649L52.7305 22.1336C52.4361 22.4266 52.0376 22.5892 51.6216 22.5877Z",
16022
+ fill: stroke
16023
+ }), /*#__PURE__*/React__namespace.default.createElement(Svg.Path, {
16024
+ d: "M26.0586 48.1491C25.644 48.1521 25.2441 47.9895 24.9497 47.6965C24.6538 47.4036 24.4868 47.0036 24.4868 46.5876C24.4868 46.1702 24.6538 45.7717 24.9497 45.4773L30.6377 39.7893V39.7908C31.25 39.177 32.2432 39.177 32.8555 39.7908C33.4693 40.4031 33.4693 41.3962 32.8555 42.0086L27.169 47.6966C26.8731 47.9895 26.4746 48.1521 26.0586 48.1491Z",
16025
+ fill: stroke
16026
+ })));
16027
+ };
16028
+
16029
+ var ErrorIcon = function ErrorIcon(_ref) {
16030
+ var stroke = _ref.stroke,
16031
+ fill = _ref.fill,
16032
+ testID = _ref.testID;
16033
+ return /*#__PURE__*/React__namespace.default.createElement(Svg__default.default, {
16034
+ width: "72",
16035
+ height: "72",
16036
+ viewBox: "0 0 72 72",
16037
+ testID: testID
16038
+ }, /*#__PURE__*/React__namespace.default.createElement(Svg.Defs, null, /*#__PURE__*/React__namespace.default.createElement(Svg.ClipPath, {
16039
+ id: "clip0_19647_1720"
16040
+ }, /*#__PURE__*/React__namespace.default.createElement(Svg.Rect, {
16041
+ width: "71.6316",
16042
+ height: "72",
16043
+ fill: "white"
16044
+ }))), /*#__PURE__*/React__namespace.default.createElement(Svg.Rect, {
16045
+ y: "11.3684",
16046
+ width: "60.6316",
16047
+ height: "60.6316",
16048
+ rx: "20",
16049
+ fill: fill,
16050
+ stroke: "transparent"
16051
+ }), /*#__PURE__*/React__namespace.default.createElement(Svg.Rect, {
16052
+ x: "13",
16053
+ y: "2",
16054
+ width: "56.6316",
16055
+ height: "56.6316",
16056
+ rx: "18",
16057
+ stroke: stroke,
16058
+ fill: "transparent",
16059
+ strokeWidth: "4"
16060
+ }), /*#__PURE__*/React__namespace.default.createElement(Svg.Rect, {
16061
+ x: "38.8",
16062
+ y: "15.8",
16063
+ width: "4.4",
16064
+ height: "21.4",
16065
+ rx: "1.2",
16066
+ fill: stroke,
16067
+ stroke: stroke,
16068
+ strokeWidth: "0.4"
16069
+ }), /*#__PURE__*/React__namespace.default.createElement(Svg.Rect, {
16070
+ x: "38.8",
16071
+ y: "40.8",
16072
+ width: "4.4",
16073
+ height: "4.4",
16074
+ rx: "1.2",
16075
+ fill: stroke,
16076
+ stroke: stroke,
16077
+ strokeWidth: "0.4"
16078
+ }));
16079
+ };
16080
+
16081
+ var Info = function Info(_ref) {
16082
+ var stroke = _ref.stroke,
16083
+ fill = _ref.fill,
16084
+ testID = _ref.testID;
16085
+ return /*#__PURE__*/React__namespace.default.createElement(Svg__default.default, {
16086
+ width: "73",
16087
+ height: "72",
16088
+ viewBox: "0 0 73 72",
16089
+ testID: testID
16090
+ }, /*#__PURE__*/React__namespace.default.createElement(Svg.Rect, {
16091
+ x: "0.799805",
16092
+ y: "11.3684",
16093
+ width: "60.6316",
16094
+ height: "60.6316",
16095
+ rx: "20",
16096
+ fill: fill,
16097
+ stroke: "transparent"
16098
+ }), /*#__PURE__*/React__namespace.default.createElement(Svg.Rect, {
16099
+ x: "13.7998",
16100
+ y: "2",
16101
+ width: "56.6316",
16102
+ height: "56.6316",
16103
+ rx: "18",
16104
+ stroke: stroke,
16105
+ fill: "transparent",
16106
+ strokeWidth: "4"
16107
+ }), /*#__PURE__*/React__namespace.default.createElement(Svg.Path, {
16108
+ d: "M49.1021 17.6145L49.1018 17.6137L49.0596 17.5759C46.6814 15.4509 43.6028 14.4854 40.3885 14.8514L40.3882 14.8515C37.9096 15.138 35.5658 16.2835 33.7948 18.0612C32.0167 19.8461 30.904 22.1971 30.6572 24.6761C30.4511 26.5531 30.7238 28.4444 31.4371 30.1375L31.4373 30.1379C32.1233 31.7564 33.2083 33.2013 34.5796 34.3203C35.389 35.0195 35.8306 35.9376 35.8306 36.902C35.8306 36.9343 35.8329 36.965 35.8345 36.9863C35.8363 37.0109 35.8371 37.023 35.8371 37.0325V41.2545C35.8371 43.4251 37.5993 45.2245 39.7811 45.2245H43.5657C45.7397 45.2245 47.5097 43.4394 47.5097 41.2675V41.2671L47.5032 37.0652C47.5032 36.0799 47.9445 35.1119 48.683 34.4765C51.2707 32.3271 52.7627 29.1914 52.7627 25.8745L52.7627 25.874C52.756 22.7112 51.4274 19.7113 49.1021 17.6145ZM46.9725 32.4155L46.9643 32.4223L46.9568 32.4298C46.9416 32.445 46.9297 32.4607 46.9206 32.475C46.0459 33.2353 45.4139 34.2392 45.0849 35.3722H43.0073V29.3904C43.6033 29.2588 44.0513 28.7269 44.0513 28.0926C44.0513 27.3553 43.4549 26.7588 42.7175 26.7588H40.6294C39.8921 26.7588 39.2957 27.3553 39.2957 28.0926C39.2957 28.7334 39.7442 29.2601 40.3397 29.3906V35.3722H38.2855C37.9624 34.166 37.2877 33.1393 36.3257 32.3112C36.3232 32.3078 36.3199 32.3035 36.3161 32.2987C36.3118 32.2936 36.306 32.2869 36.2988 32.2797L36.2905 32.2714L36.2815 32.2641C35.2398 31.4192 34.414 30.3202 33.8999 29.1016C33.3542 27.807 33.1566 26.4097 33.3095 24.958L33.3107 24.9462V24.9344V24.9327C33.7029 21.0834 36.8018 17.9543 40.6943 17.5033C43.1443 17.2234 45.4881 17.9548 47.2919 19.5684L47.2921 19.5685C49.0709 21.1567 50.0946 23.451 50.0948 25.8669C50.0884 28.3832 48.9577 30.7739 46.9725 32.4155ZM43.5658 42.5499H39.7812C39.0814 42.5499 38.5048 41.9573 38.5048 41.2475V38.0398H41.4386C41.456 38.0398 41.4767 38.0427 41.5191 38.0498L41.5242 38.0506C41.5603 38.0567 41.6154 38.0659 41.6735 38.0659C41.7318 38.0659 41.7887 38.0566 41.8258 38.0505L41.8296 38.0499C41.8748 38.0425 41.8944 38.0398 41.9084 38.0398H44.836L44.8421 41.2739C44.8421 41.274 44.8421 41.2741 44.8421 41.2743C44.8419 41.9788 44.2705 42.5499 43.5658 42.5499Z",
16109
+ fill: stroke
16110
+ }));
16111
+ };
16112
+
16113
+ var List$1 = function List(_ref) {
16114
+ var stroke = _ref.stroke,
16115
+ fill = _ref.fill,
16116
+ testID = _ref.testID;
16117
+ return /*#__PURE__*/React__namespace.default.createElement(Svg__default.default, {
16118
+ width: "73",
16119
+ height: "72",
16120
+ viewBox: "0 0 73 72",
16121
+ testID: testID
16122
+ }, /*#__PURE__*/React__namespace.default.createElement(Svg.Rect, {
16123
+ x: "0.199951",
16124
+ y: "11.3684",
16125
+ width: "60.6316",
16126
+ height: "60.6316",
16127
+ rx: "20",
16128
+ fill: fill,
16129
+ stroke: "transparent"
16130
+ }), /*#__PURE__*/React__namespace.default.createElement(Svg.Rect, {
16131
+ x: "13.5684",
16132
+ y: "2",
16133
+ width: "56.6316",
16134
+ height: "56.6316",
16135
+ rx: "18",
16136
+ stroke: stroke,
16137
+ fill: "transparent",
16138
+ strokeWidth: "4"
16139
+ }), /*#__PURE__*/React__namespace.default.createElement(Svg.Path, {
16140
+ fillRule: "evenodd",
16141
+ clipRule: "evenodd",
16142
+ d: "M33.0421 20C31.4724 20 30.2 21.2725 30.2 22.8421C30.2 24.4118 31.4724 25.6842 33.0421 25.6842C34.6117 25.6842 35.8842 24.4118 35.8842 22.8421C35.8842 21.2725 34.6117 20 33.0421 20ZM39.6736 20.9474C38.6272 20.9474 37.7789 21.7957 37.7789 22.8421C37.7789 23.8885 38.6272 24.7368 39.6736 24.7368H51.0421C52.0885 24.7368 52.9368 23.8885 52.9368 22.8421C52.9368 21.7957 52.0885 20.9474 51.0421 20.9474H39.6736ZM39.6737 28.5263C38.6272 28.5263 37.7789 29.3746 37.7789 30.421C37.7789 31.4675 38.6272 32.3158 39.6737 32.3158H51.0421C52.0885 32.3158 52.9368 31.4675 52.9368 30.421C52.9368 29.3746 52.0885 28.5263 51.0421 28.5263H39.6737ZM37.7789 38C37.7789 36.9536 38.6272 36.1053 39.6736 36.1053H51.0421C52.0885 36.1053 52.9368 36.9536 52.9368 38C52.9368 39.0464 52.0885 39.8947 51.0421 39.8947H39.6736C38.6272 39.8947 37.7789 39.0464 37.7789 38ZM30.2 30.4211C30.2 28.8514 31.4724 27.5789 33.0421 27.5789C34.6117 27.5789 35.8842 28.8514 35.8842 30.4211C35.8842 31.9907 34.6117 33.2632 33.0421 33.2632C31.4724 33.2632 30.2 31.9907 30.2 30.4211ZM33.0421 35.1579C31.4724 35.1579 30.2 36.4304 30.2 38C30.2 39.5697 31.4724 40.8421 33.0421 40.8421C34.6117 40.8421 35.8842 39.5697 35.8842 38C35.8842 36.4304 34.6117 35.1579 33.0421 35.1579Z",
16143
+ fill: stroke
16144
+ }));
16145
+ };
16146
+
16147
+ var Location = function Location(_ref) {
16148
+ var stroke = _ref.stroke,
16149
+ fill = _ref.fill,
16150
+ testID = _ref.testID;
16151
+ return /*#__PURE__*/React__namespace.default.createElement(Svg__default.default, {
16152
+ width: "73",
16153
+ height: "73",
16154
+ viewBox: "0 0 73 73",
16155
+ testID: testID
16156
+ }, /*#__PURE__*/React__namespace.default.createElement(Svg.Rect, {
16157
+ x: "0.615723",
16158
+ y: "12.2122",
16159
+ width: "60.6316",
16160
+ height: "60.6316",
16161
+ rx: "20",
16162
+ fill: fill,
16163
+ stroke: "transparent"
16164
+ }), /*#__PURE__*/React__namespace.default.createElement(Svg.Rect, {
16165
+ x: "13.9841",
16166
+ y: "2.84375",
16167
+ width: "56.6316",
16168
+ height: "56.6316",
16169
+ rx: "18",
16170
+ stroke: stroke,
16171
+ fill: "transparent",
16172
+ strokeWidth: "4"
16173
+ }), /*#__PURE__*/React__namespace.default.createElement(Svg.Path, {
16174
+ d: "M42.4699 46.0151L42.6157 46.1392L42.7615 46.0151C46.7952 42.5827 49.8178 39.3865 51.8208 36.4261C53.8234 33.4663 54.8407 30.7039 54.8407 28.1437C54.8407 24.3408 53.615 21.2897 51.1495 19.0159C48.697 16.754 45.8493 15.6188 42.6157 15.6188C39.3821 15.6188 36.5344 16.754 34.0819 19.0159C31.6165 21.2897 30.3907 24.3408 30.3907 28.1437C30.3907 30.7039 31.4081 33.4663 33.4106 36.4261C35.4136 39.3865 38.4362 42.5827 42.4699 46.0151ZM42.6157 31.0688C43.5009 31.0688 44.2642 30.751 44.8936 30.1216C45.5229 29.4922 45.8407 28.7289 45.8407 27.8438C45.8407 26.9586 45.5229 26.1953 44.8936 25.5659C44.2642 24.9365 43.5009 24.6187 42.6157 24.6187C41.7306 24.6187 40.9672 24.9365 40.3379 25.5659C39.7085 26.1953 39.3907 26.9586 39.3907 27.8438C39.3907 28.7289 39.7085 29.4922 40.3379 30.1216C40.9672 30.751 41.7306 31.0688 42.6157 31.0688ZM49.2141 34.1156C47.7779 36.343 45.581 38.8254 42.6157 41.5629C39.6504 38.8254 37.4536 36.343 36.0173 34.1156C34.5542 31.8464 33.8407 29.8582 33.8407 28.1437C33.8407 25.4713 34.6906 23.2996 36.3811 21.6091C38.0751 19.9151 40.1486 19.0687 42.6157 19.0687C45.0829 19.0687 47.1564 19.9151 48.8504 21.6091C50.5409 23.2996 51.3907 25.4713 51.3907 28.1437C51.3907 29.8582 50.6773 31.8464 49.2141 34.1156Z",
16175
+ fill: stroke,
16176
+ stroke: stroke,
16177
+ strokeWidth: "0.45"
16178
+ }));
16179
+ };
16180
+
16181
+ var Merge = function Merge(_ref) {
16182
+ var stroke = _ref.stroke,
16183
+ fill = _ref.fill,
16184
+ testID = _ref.testID;
16185
+ return /*#__PURE__*/React__namespace.default.createElement(Svg__default.default, {
16186
+ width: "73",
16187
+ height: "73",
16188
+ viewBox: "0 0 73 73",
16189
+ testID: testID
16190
+ }, /*#__PURE__*/React__namespace.default.createElement(Svg.Rect, {
16191
+ x: "0.100098",
16192
+ y: "12.2122",
16193
+ width: "60.6316",
16194
+ height: "60.6316",
16195
+ rx: "20",
16196
+ fill: fill,
16197
+ stroke: "transparent"
16198
+ }), /*#__PURE__*/React__namespace.default.createElement(Svg.Rect, {
16199
+ x: "13.4685",
16200
+ y: "2.84375",
16201
+ width: "56.6316",
16202
+ height: "56.6316",
16203
+ rx: "18",
16204
+ stroke: stroke,
16205
+ fill: "transparent",
16206
+ strokeWidth: "4"
16207
+ }), /*#__PURE__*/React__namespace.default.createElement(Svg.Rect, {
16208
+ x: "1.41239",
16209
+ y: "2.44635",
16210
+ width: "16.2083",
16211
+ height: "16.1187",
16212
+ rx: "2",
16213
+ transform: "matrix(0.966256 0.257583 -0.26006 0.965592 40.0996 23.1208)",
16214
+ stroke: stroke,
16215
+ fill: "transparent",
16216
+ strokeWidth: "4"
16217
+ }), /*#__PURE__*/React__namespace.default.createElement(Svg.Path, {
16218
+ fillRule: "evenodd",
16219
+ clipRule: "evenodd",
16220
+ d: "M47.1946 25.4544L48.3756 29.8395C48.9501 31.9726 47.6854 34.1632 45.5508 34.7322L35.6831 37.3627L38.4064 27.2513C38.9809 25.1182 41.1771 23.8502 43.3117 24.4193L47.1946 25.4544Z",
16221
+ fill: stroke
16222
+ }), /*#__PURE__*/React__namespace.default.createElement(Svg.Rect, {
16223
+ x: "2.45263",
16224
+ y: "1.41602",
16225
+ width: "16.2083",
16226
+ height: "16.1187",
16227
+ rx: "2",
16228
+ transform: "matrix(0.966256 -0.257583 0.26006 0.965592 24.341 20.1727)",
16229
+ stroke: stroke,
16230
+ fill: "transparent",
16231
+ strokeWidth: "4"
16232
+ }));
16233
+ };
16234
+
16235
+ var Notifications = function Notifications(_ref) {
16236
+ var stroke = _ref.stroke,
16237
+ fill = _ref.fill,
16238
+ testID = _ref.testID;
16239
+ return /*#__PURE__*/React__namespace.default.createElement(Svg__default.default, {
16240
+ width: "72",
16241
+ height: "73",
16242
+ viewBox: "0 0 72 73",
16243
+ testID: testID
16244
+ }, /*#__PURE__*/React__namespace.default.createElement(Svg.Rect, {
16245
+ y: "12.3684",
16246
+ width: "60.6316",
16247
+ height: "60.6316",
16248
+ rx: "20",
16249
+ fill: fill,
16250
+ stroke: "transparent"
16251
+ }), /*#__PURE__*/React__namespace.default.createElement(Svg.Path, {
16252
+ fillRule: "evenodd",
16253
+ clipRule: "evenodd",
16254
+ d: "M41.3158 57.6316C36.4516 57.6316 33.0101 57.6293 30.3073 57.4391C27.6421 57.2516 25.9982 56.8957 24.6942 56.3366C20.9204 54.7183 17.9133 51.7111 16.295 47.9374C15.7358 46.6334 15.38 44.9895 15.1925 42.3242C15.0023 39.6215 15 36.18 15 31.3158C15 26.4516 15.0023 23.0101 15.1925 20.3073C15.38 17.6421 15.7358 15.9982 16.295 14.6942C17.9133 10.9204 20.9204 7.91326 24.6942 6.29499C25.9982 5.73584 27.6421 5.38001 30.3073 5.19248C33.0101 5.0023 36.4516 5 41.3158 5C46.18 5 49.6215 5.0023 52.3242 5.19248C54.9895 5.38001 56.6334 5.73584 57.9374 6.29499C61.7111 7.91326 64.7183 10.9204 66.3366 14.6942C66.8957 15.9982 67.2516 17.6421 67.4391 20.3073C67.6293 23.0101 67.6316 26.4516 67.6316 31.3158C67.6316 36.18 67.6293 39.6215 67.4391 42.3242C67.2516 44.9895 66.8957 46.6334 66.3366 47.9374C64.7183 51.7111 61.7111 54.7183 57.9374 56.3366C56.6334 56.8957 54.9895 57.2516 52.3242 57.4391C49.6215 57.6293 46.18 57.6316 41.3158 57.6316ZM11 31.3158C11 21.7004 11 16.8927 12.6187 13.1178C14.6416 8.40056 18.4006 4.64158 23.1178 2.61874C26.8927 1 31.7004 1 41.3158 1C50.9312 1 55.7389 1 59.5138 2.61874C64.231 4.64158 67.99 8.40056 70.0128 13.1178C71.6316 16.8927 71.6316 21.7004 71.6316 31.3158C71.6316 40.9312 71.6316 45.7389 70.0128 49.5138C67.99 54.231 64.231 57.99 59.5138 60.0128C55.7389 61.6316 50.9312 61.6316 41.3158 61.6316C31.7004 61.6316 26.8927 61.6316 23.1178 60.0128C18.4006 57.99 14.6416 54.231 12.6187 49.5138C11 45.7389 11 40.9312 11 31.3158ZM49.1787 28.1109C49.1798 28.1439 49.1803 28.1771 49.1803 28.2103V34.4277C49.1803 34.4429 49.1802 34.4581 49.18 34.4733H50.6539C51.4678 34.4733 52.1276 35.1331 52.1276 35.947C52.1276 36.7609 51.4678 37.4206 50.6539 37.4206H31.4737C30.6598 37.4206 30 36.7609 30 35.947C30 35.1331 30.6598 34.4733 31.4737 34.4733H33.7073C33.7071 34.4581 33.7069 34.4429 33.7069 34.4277V28.2103C33.7069 28.1771 33.7075 28.1439 33.7085 28.111C33.7075 28.05 33.7069 27.9889 33.7069 27.9277C33.7069 23.5781 36.6526 19 41.4436 19C46.2346 19 49.1803 23.5781 49.1803 27.9277C49.1803 27.9889 49.1798 28.05 49.1787 28.1109ZM36.6521 34.4277V28.2105L36.6574 28.2103C36.6539 28.1167 36.6521 28.0225 36.6521 27.9277C36.6521 27.833 36.6539 27.7388 36.6574 27.6451C36.7765 24.4987 38.8738 21.993 41.4436 21.993C44.0134 21.993 46.1107 24.4987 46.2298 27.6451C46.2334 27.7388 46.2352 27.833 46.2352 27.9277C46.2352 28.0225 46.2334 28.1167 46.2298 28.2103L46.2352 28.2105V34.4277H36.6521ZM41.1865 45C38.8173 45 36.8684 43.2009 36.6314 40.8943H39.1591C39.3734 41.8157 40.1998 42.5023 41.1865 42.5023C42.1731 42.5023 42.9995 41.8157 43.2138 40.8943H45.7415C45.5045 43.2009 43.5556 45 41.1865 45Z",
16255
+ fill: stroke
16256
+ }));
16257
+ };
16258
+
16259
+ var Search$1 = function Search(_ref) {
16260
+ var stroke = _ref.stroke,
16261
+ fill = _ref.fill,
16262
+ testID = _ref.testID;
16263
+ return /*#__PURE__*/React__namespace.default.createElement(Svg__default.default, {
16264
+ width: "72",
16265
+ height: "72",
16266
+ viewBox: "0 0 72 72",
16267
+ testID: testID
16268
+ }, /*#__PURE__*/React__namespace.default.createElement(Svg.Rect, {
16269
+ y: "11.3684",
16270
+ width: "60.6316",
16271
+ height: "60.6316",
16272
+ rx: "20",
16273
+ fill: fill,
16274
+ stroke: "transparent"
16275
+ }), /*#__PURE__*/React__namespace.default.createElement(Svg.Rect, {
16276
+ x: "13.3684",
16277
+ y: "2",
16278
+ width: "56.6316",
16279
+ height: "56.6316",
16280
+ rx: "18",
16281
+ stroke: stroke,
16282
+ fill: "transparent",
16283
+ strokeWidth: "4"
16284
+ }), /*#__PURE__*/React__namespace.default.createElement(Svg.Path, {
16285
+ d: "M52.8697 41.5015L52.8705 41.5007C53.5138 40.8559 53.5137 39.8753 52.869 39.2306C52.869 39.2306 52.869 39.2306 52.869 39.2306L46.1982 32.5588C47.1965 31.1525 47.751 29.3916 47.751 27.514C47.751 22.6035 43.7947 18.6474 38.8841 18.6474C33.9734 18.6474 30.0159 22.6047 30.0159 27.5152C30.0159 32.4258 33.9722 36.3819 38.8828 36.3819C40.7683 36.3819 42.4693 35.823 43.9243 34.8256L50.5999 41.5009C50.9175 41.8186 51.323 41.9842 51.7351 41.9842C52.1475 41.9842 52.5514 41.8183 52.8697 41.5015ZM38.8841 33.1463C35.7542 33.1463 33.2529 30.645 33.2529 27.5152C33.2529 24.3855 35.7542 21.8842 38.8841 21.8842C42.0139 21.8842 44.5153 24.3855 44.5153 27.5152C44.5153 30.6437 42.0127 33.1463 38.8841 33.1463Z",
16286
+ fill: stroke,
16287
+ stroke: stroke,
16288
+ strokeWidth: "0.6"
16289
+ }));
16290
+ };
16291
+
16292
+ var Star = function Star(_ref) {
16293
+ var stroke = _ref.stroke,
16294
+ fill = _ref.fill,
16295
+ testID = _ref.testID;
16296
+ return /*#__PURE__*/React__namespace.default.createElement(Svg__default.default, {
16297
+ width: "73",
16298
+ height: "73",
16299
+ viewBox: "0 0 73 73",
16300
+ testID: testID
16301
+ }, /*#__PURE__*/React__namespace.default.createElement(Svg.Rect, {
16302
+ x: "0.199951",
16303
+ y: "12.2122",
16304
+ width: "60.6316",
16305
+ height: "60.6316",
16306
+ rx: "20",
16307
+ fill: fill,
16308
+ stroke: "transparent"
16309
+ }), /*#__PURE__*/React__namespace.default.createElement(Svg.Rect, {
16310
+ x: "13.5684",
16311
+ y: "2.84375",
16312
+ width: "56.6316",
16313
+ height: "56.6316",
16314
+ rx: "18",
16315
+ stroke: stroke,
16316
+ fill: "transparent",
16317
+ strokeWidth: "4"
16318
+ }), /*#__PURE__*/React__namespace.default.createElement(Svg.Path, {
16319
+ d: "M47.3478 43.1168L47.3612 43.1205L47.3748 43.1225C47.5985 43.1559 47.7728 43.1811 47.8971 43.198C48.0112 43.2134 48.1035 43.225 48.1452 43.225C48.9231 43.225 49.6046 42.9321 50.1801 42.3595C50.7616 41.781 51.0409 41.0649 51.017 40.2273C51.017 40.2271 51.0169 40.227 51.0169 40.2269L50.8848 34.8358L54.5252 29.6994C54.5255 29.699 54.5258 29.6986 54.5262 29.6981C54.7183 29.4349 54.8588 29.1566 54.9448 28.8633C55.0287 28.5769 55.0711 28.289 55.0711 28C55.0711 27.3755 54.8891 26.8027 54.5278 26.2875C54.1632 25.7676 53.6637 25.411 53.0384 25.219L47.4099 23.3415L43.7012 18.5646C43.7008 18.5641 43.7005 18.5637 43.7002 18.5633C43.412 18.1813 43.0652 17.8952 42.6593 17.7117C42.2618 17.5319 41.8449 17.4417 41.4107 17.4417C40.9765 17.4417 40.5596 17.5319 40.1621 17.7117C39.7563 17.8952 39.4094 18.1813 39.1212 18.5633L35.4115 23.3415L29.7804 25.2199L29.7804 25.2199L29.7783 25.2206C29.1547 25.4354 28.6614 25.803 28.3084 26.3237C27.9603 26.8372 27.7838 27.3976 27.7838 28C27.7838 28.289 27.8262 28.5769 27.9101 28.8633C27.9961 29.1565 28.1365 29.4349 28.3287 29.698C28.329 29.6985 28.3294 29.699 28.3297 29.6994L31.9366 34.8023L31.8045 40.2269C31.8045 40.227 31.8044 40.2272 31.8044 40.2274C31.7805 41.065 32.0599 41.7811 32.6413 42.3595C33.2168 42.9321 33.8983 43.225 34.6762 43.225C34.7952 43.225 34.9244 43.2191 35.0634 43.2076L35.0448 42.9833L35.0634 43.2076C35.2125 43.1952 35.3534 43.1645 35.4847 43.1137L41.4107 41.4669L47.3478 43.1168ZM37.2593 26.0471L37.3253 26.0254L37.3676 25.9703L41.4107 20.7029L45.4538 25.9703L45.4954 26.0245L45.5602 26.0465L51.7749 28.1499L47.7937 33.8038L47.7511 33.8642L47.7527 33.938L47.8804 40.0353L41.4711 38.2499L41.4112 38.2332L41.3513 38.2496L34.941 40.0035L35.0687 33.9381L35.0703 33.8649L35.0284 33.8048L31.0466 28.0862L37.2593 26.0471Z",
16320
+ fill: stroke,
16321
+ stroke: stroke,
16322
+ strokeWidth: "0.45"
16323
+ }));
16324
+ };
16325
+
16326
+ var User = function User(_ref) {
16327
+ var stroke = _ref.stroke,
16328
+ fill = _ref.fill,
16329
+ testID = _ref.testID;
16330
+ return /*#__PURE__*/React__namespace.default.createElement(Svg__default.default, {
16331
+ width: "73",
16332
+ height: "72",
16333
+ viewBox: "0 0 73 72",
16334
+ testID: testID
16335
+ }, /*#__PURE__*/React__namespace.default.createElement(Svg.Rect, {
16336
+ x: "0.799805",
16337
+ y: "11.3684",
16338
+ width: "60.6316",
16339
+ height: "60.6316",
16340
+ rx: "20",
16341
+ fill: fill,
16342
+ stroke: "transparent"
16343
+ }), /*#__PURE__*/React__namespace.default.createElement(Svg.Rect, {
16344
+ x: "13.7998",
16345
+ y: "2",
16346
+ width: "56.6316",
16347
+ height: "56.6316",
16348
+ rx: "18",
16349
+ stroke: stroke,
16350
+ fill: "transparent",
16351
+ strokeWidth: "4"
16352
+ }), /*#__PURE__*/React__namespace.default.createElement(Svg.Path, {
16353
+ fillRule: "evenodd",
16354
+ clipRule: "evenodd",
16355
+ d: "M39.6629 34.967C37.551 34.967 35.839 36.679 35.839 38.7909C35.839 39.4337 36.36 39.9547 37.0028 39.9547H47.6433C48.2861 39.9547 48.8071 39.4337 48.8071 38.7909C48.8071 36.679 47.0951 34.967 44.9832 34.967H39.6629ZM51.7998 38.7909C51.7998 41.0865 49.9389 42.9474 47.6433 42.9474H37.0028C34.7072 42.9474 32.8463 41.0865 32.8463 38.7909C32.8463 35.0262 35.8982 31.9743 39.6629 31.9743H44.9832C48.7479 31.9743 51.7998 35.0262 51.7998 38.7909Z",
16356
+ fill: stroke
16357
+ }), /*#__PURE__*/React__namespace.default.createElement(Svg.Path, {
16358
+ fillRule: "evenodd",
16359
+ clipRule: "evenodd",
16360
+ d: "M42.3231 21.0012C40.9457 21.0012 39.8292 22.1178 39.8292 23.4951C39.8292 24.8724 40.9457 25.989 42.3231 25.989C43.7004 25.989 44.8169 24.8724 44.8169 23.4951C44.8169 22.1178 43.7004 21.0012 42.3231 21.0012ZM36.8365 23.4951C36.8365 20.465 39.2929 18.0086 42.3231 18.0086C45.3532 18.0086 47.8096 20.465 47.8096 23.4951C47.8096 26.5252 45.3532 28.9816 42.3231 28.9816C39.2929 28.9816 36.8365 26.5252 36.8365 23.4951Z",
16361
+ fill: stroke
16362
+ }));
16363
+ };
16364
+
16365
+ var Success$1 = function Success(_ref) {
16366
+ var stroke = _ref.stroke,
16367
+ fill = _ref.fill,
16368
+ testID = _ref.testID;
16369
+ return /*#__PURE__*/React__namespace.default.createElement(Svg__default.default, {
16370
+ width: "72",
16371
+ height: "72",
16372
+ viewBox: "0 0 72 72",
16373
+ testID: testID
16374
+ }, /*#__PURE__*/React__namespace.default.createElement(Svg.Defs, null, /*#__PURE__*/React__namespace.default.createElement(Svg.ClipPath, {
16375
+ id: "clip0_19647_1726"
16376
+ }, /*#__PURE__*/React__namespace.default.createElement(Svg.Rect, {
16377
+ width: "71.6316",
16378
+ height: "72",
16379
+ fill: "white"
16380
+ }))), /*#__PURE__*/React__namespace.default.createElement(Svg.Rect, {
16381
+ y: "11.3684",
16382
+ width: "60.6316",
16383
+ height: "60.6316",
16384
+ rx: "20",
16385
+ fill: fill,
16386
+ stroke: "transparent"
16387
+ }), /*#__PURE__*/React__namespace.default.createElement(Svg.Path, {
16388
+ fillRule: "evenodd",
16389
+ clipRule: "evenodd",
16390
+ d: "M53.5235 19.5692L53.5265 19.5662C52.9085 19.6113 52.3367 19.8945 51.934 20.3553L38.3475 35.8072L31.977 29.3614H31.9739C31.5435 28.9306 30.9563 28.6836 30.3383 28.6776C29.7234 28.6716 29.13 28.9065 28.6903 29.3312C27.7834 30.2047 27.768 31.6355 28.6565 32.53L36.776 40.7468C37.228 41.2047 37.8582 41.4547 38.5069 41.4366C39.1587 41.4185 39.7706 41.1324 40.1948 40.6505L55.4381 23.3039V23.3009C56.2713 22.3551 56.1668 20.9214 55.1983 20.1021C54.7341 19.7166 54.1314 19.5238 53.5258 19.569L53.5235 19.5692Z",
16391
+ fill: stroke
16392
+ }), /*#__PURE__*/React__namespace.default.createElement(Svg.Rect, {
16393
+ x: "13",
16394
+ y: "2",
16395
+ width: "56.6316",
16396
+ height: "56.6316",
16397
+ rx: "18",
16398
+ stroke: stroke,
16399
+ fill: "transparent",
16400
+ strokeWidth: "4"
16401
+ }));
16402
+ };
16403
+
16404
+ var StatusIcons = {
16405
+ add: Add,
16406
+ boom: Boom,
16407
+ build: Build,
16408
+ clock: Clock,
16409
+ connections: Connections,
16410
+ list: List$1,
16411
+ location: Location,
16412
+ merge: Merge,
16413
+ notifications: Notifications,
16414
+ search: Search$1,
16415
+ star: Star,
16416
+ user: User,
16417
+ confetti: Confetti,
16418
+ error: ErrorIcon,
16419
+ info: Info,
16420
+ success: Success$1
16421
+ };
16422
+ var StatusIcon = function StatusIcon(_ref) {
16423
+ var icon = _ref.icon,
16424
+ testID = _ref.testID;
16425
+ var Icon = StatusIcons[icon];
16426
+ var theme = useTheme();
16427
+ return Icon && /*#__PURE__*/React__namespace.default.createElement(Icon, {
16428
+ stroke: theme.colors.primary,
16429
+ fill: theme.colors.decorativeSecondarySurface,
16430
+ testID: testID
16431
+ });
16432
+ };
16433
+
15670
16434
  var StyledWrapper$7 = index$a(reactNative.View)(function (_ref) {
15671
16435
  var theme = _ref.theme;
15672
16436
  return {
@@ -15695,24 +16459,45 @@ var StyledDescription = index$a(Typography.Body)(function (_ref3) {
15695
16459
  color: themeVariant === 'dark' ? theme.__hd__.empty.colors.invertedSubduedText : theme.__hd__.empty.colors.subduedText
15696
16460
  };
15697
16461
  });
16462
+ var StyledEmptyImageContainer = index$a(reactNative.View)(function (_ref4) {
16463
+ var theme = _ref4.theme;
16464
+ return {
16465
+ marginBottom: theme.__hd__.empty.space.imageMargin
16466
+ };
16467
+ });
15698
16468
 
15699
- var Empty = function Empty(_ref) {
16469
+ var renderImageOrIcon$2 = function renderImageOrIcon(_ref) {
15700
16470
  var image = _ref.image,
15701
- title = _ref.title,
15702
- description = _ref.description,
15703
- style = _ref.style,
15704
- testID = _ref.testID,
15705
- _ref$variant = _ref.variant,
15706
- variant = _ref$variant === void 0 ? 'light' : _ref$variant;
15707
- var theme = useTheme();
16471
+ icon = _ref.icon;
16472
+ if (icon) {
16473
+ return /*#__PURE__*/React__namespace.default.createElement(StyledEmptyImageContainer, null, /*#__PURE__*/React__namespace.default.createElement(StatusIcon, {
16474
+ icon: icon,
16475
+ testID: "empty-icon"
16476
+ }));
16477
+ }
16478
+ if (image) {
16479
+ return /*#__PURE__*/React__namespace.default.createElement(StyledEmptyImageContainer, {
16480
+ testID: "empty-image"
16481
+ }, image);
16482
+ }
16483
+ return null;
16484
+ };
16485
+ var Empty = function Empty(_ref2) {
16486
+ var image = _ref2.image,
16487
+ title = _ref2.title,
16488
+ description = _ref2.description,
16489
+ style = _ref2.style,
16490
+ testID = _ref2.testID,
16491
+ _ref2$variant = _ref2.variant,
16492
+ variant = _ref2$variant === void 0 ? 'light' : _ref2$variant,
16493
+ icon = _ref2.icon;
15708
16494
  return /*#__PURE__*/React__namespace.default.createElement(StyledWrapper$7, {
15709
16495
  style: style,
15710
16496
  testID: testID
15711
- }, image !== undefined && /*#__PURE__*/React__namespace.default.cloneElement(image, _objectSpread2(_objectSpread2({}, image.props), {}, {
15712
- style: [{
15713
- marginBottom: theme.__hd__.empty.space.imageMargin
15714
- }, image.props.style]
15715
- })), /*#__PURE__*/React__namespace.default.createElement(StyledTitle, {
16497
+ }, renderImageOrIcon$2({
16498
+ image: image,
16499
+ icon: icon
16500
+ }), /*#__PURE__*/React__namespace.default.createElement(StyledTitle, {
15716
16501
  themeVariant: variant,
15717
16502
  level: "h4",
15718
16503
  typeface: "playful"
@@ -16131,7 +16916,7 @@ var StyledErrorDescription = index$a(Typography.Body)(function (_ref9) {
16131
16916
  };
16132
16917
  });
16133
16918
 
16134
- var _excluded$o = ["variant", "title", "description", "image", "testID", "ctaText", "onCtaPress", "secondaryCtaText", "onSecondaryCtaPress"],
16919
+ var _excluded$o = ["variant", "title", "description", "image", "testID", "ctaText", "onCtaPress", "secondaryCtaText", "onSecondaryCtaPress", "icon"],
16135
16920
  _excluded2 = ["visible", "variant", "title", "description", "image", "testID", "ctaText", "onCtaPress", "secondaryCtaText", "onSecondaryCtaPress"];
16136
16921
  var renderImage$1 = function renderImage(image) {
16137
16922
  if ( /*#__PURE__*/React.isValidElement(image)) {
@@ -16146,25 +16931,43 @@ var renderImage$1 = function renderImage(image) {
16146
16931
  testID: "error-image"
16147
16932
  });
16148
16933
  };
16149
- var ErrorPage = function ErrorPage(_ref) {
16150
- var _ref$variant = _ref.variant,
16151
- variant = _ref$variant === void 0 ? 'in-page' : _ref$variant,
16152
- title = _ref.title,
16153
- description = _ref.description,
16154
- image = _ref.image,
16155
- testID = _ref.testID,
16156
- ctaText = _ref.ctaText,
16157
- onCtaPress = _ref.onCtaPress,
16158
- secondaryCtaText = _ref.secondaryCtaText,
16159
- onSecondaryCtaPress = _ref.onSecondaryCtaPress,
16160
- nativeProps = _objectWithoutProperties(_ref, _excluded$o);
16934
+ var renderImageOrIcon$1 = function renderImageOrIcon(_ref) {
16935
+ var image = _ref.image,
16936
+ icon = _ref.icon;
16937
+ if (icon) {
16938
+ return /*#__PURE__*/React__namespace.default.createElement(StyledErrorImageContainer, null, /*#__PURE__*/React__namespace.default.createElement(StatusIcon, {
16939
+ icon: icon,
16940
+ testID: "error-icon"
16941
+ }));
16942
+ }
16943
+ if (image) {
16944
+ return /*#__PURE__*/React__namespace.default.createElement(StyledErrorImageContainer, null, renderImage$1(image));
16945
+ }
16946
+ return null;
16947
+ };
16948
+ var ErrorPage = function ErrorPage(_ref2) {
16949
+ var _ref2$variant = _ref2.variant,
16950
+ variant = _ref2$variant === void 0 ? 'in-page' : _ref2$variant,
16951
+ title = _ref2.title,
16952
+ description = _ref2.description,
16953
+ image = _ref2.image,
16954
+ testID = _ref2.testID,
16955
+ ctaText = _ref2.ctaText,
16956
+ onCtaPress = _ref2.onCtaPress,
16957
+ secondaryCtaText = _ref2.secondaryCtaText,
16958
+ onSecondaryCtaPress = _ref2.onSecondaryCtaPress,
16959
+ icon = _ref2.icon,
16960
+ nativeProps = _objectWithoutProperties(_ref2, _excluded$o);
16161
16961
  var showCta = ctaText && onCtaPress !== undefined;
16162
16962
  var showSecondaryCta = secondaryCtaText && onSecondaryCtaPress !== undefined;
16163
16963
  var showButtonContainer = showCta || showSecondaryCta;
16164
16964
  return /*#__PURE__*/React__namespace.default.createElement(StyledErrorContainer$1, _extends$1({
16165
16965
  testID: testID,
16166
16966
  themeVariant: variant
16167
- }, nativeProps), /*#__PURE__*/React__namespace.default.createElement(StyledErrorContent, null, image && /*#__PURE__*/React__namespace.default.createElement(StyledErrorImageContainer, null, renderImage$1(image)), /*#__PURE__*/React__namespace.default.createElement(StyledErrorTitle, {
16967
+ }, nativeProps), /*#__PURE__*/React__namespace.default.createElement(StyledErrorContent, null, renderImageOrIcon$1({
16968
+ image: image,
16969
+ icon: icon
16970
+ }), /*#__PURE__*/React__namespace.default.createElement(StyledErrorTitle, {
16168
16971
  level: "h4",
16169
16972
  typeface: "playful"
16170
16973
  }, title), description && /*#__PURE__*/React__namespace.default.createElement(StyledErrorDescription, {
@@ -16185,20 +16988,20 @@ var ErrorPage = function ErrorPage(_ref) {
16185
16988
  * @param {ErrorProps}
16186
16989
  * @return {*} {ReactElement}
16187
16990
  */
16188
- var ErrorComponent = function ErrorComponent(_ref2) {
16189
- var _ref2$visible = _ref2.visible,
16190
- visible = _ref2$visible === void 0 ? true : _ref2$visible,
16191
- _ref2$variant = _ref2.variant,
16192
- variant = _ref2$variant === void 0 ? 'in-page' : _ref2$variant,
16193
- title = _ref2.title,
16194
- description = _ref2.description,
16195
- image = _ref2.image,
16196
- testID = _ref2.testID,
16197
- ctaText = _ref2.ctaText,
16198
- onCtaPress = _ref2.onCtaPress,
16199
- secondaryCtaText = _ref2.secondaryCtaText,
16200
- onSecondaryCtaPress = _ref2.onSecondaryCtaPress,
16201
- nativeProps = _objectWithoutProperties(_ref2, _excluded2);
16991
+ var ErrorComponent = function ErrorComponent(_ref3) {
16992
+ var _ref3$visible = _ref3.visible,
16993
+ visible = _ref3$visible === void 0 ? true : _ref3$visible,
16994
+ _ref3$variant = _ref3.variant,
16995
+ variant = _ref3$variant === void 0 ? 'in-page' : _ref3$variant,
16996
+ title = _ref3.title,
16997
+ description = _ref3.description,
16998
+ image = _ref3.image,
16999
+ testID = _ref3.testID,
17000
+ ctaText = _ref3.ctaText,
17001
+ onCtaPress = _ref3.onCtaPress,
17002
+ secondaryCtaText = _ref3.secondaryCtaText,
17003
+ onSecondaryCtaPress = _ref3.onSecondaryCtaPress,
17004
+ nativeProps = _objectWithoutProperties(_ref3, _excluded2);
16202
17005
  useDeprecation("Visible prop is deprecated. Use conditional rendering instead", visible);
16203
17006
  var _useState = React.useState(visible),
16204
17007
  _useState2 = _slicedToArray(_useState, 2),
@@ -19302,7 +20105,7 @@ var StyledSuccessModal = index$a(ModalWrapper)({
19302
20105
  width: '100%'
19303
20106
  });
19304
20107
 
19305
- var _excluded$a = ["variant", "title", "description", "image", "testID", "ctaText", "onCtaPress", "secondaryCtaText", "onSecondaryCtaPress"];
20108
+ var _excluded$a = ["variant", "title", "description", "image", "testID", "ctaText", "onCtaPress", "secondaryCtaText", "onSecondaryCtaPress", "icon"];
19306
20109
  var renderImage = function renderImage(image) {
19307
20110
  if ( /*#__PURE__*/React.isValidElement(image)) {
19308
20111
  return /*#__PURE__*/React__namespace.default.cloneElement(image, {
@@ -19316,24 +20119,42 @@ var renderImage = function renderImage(image) {
19316
20119
  testID: "success-image"
19317
20120
  });
19318
20121
  };
19319
- var SuccessPage = function SuccessPage(_ref) {
19320
- var _ref$variant = _ref.variant,
19321
- variant = _ref$variant === void 0 ? 'in-page' : _ref$variant,
19322
- title = _ref.title,
19323
- description = _ref.description,
19324
- image = _ref.image,
19325
- testID = _ref.testID,
19326
- ctaText = _ref.ctaText,
19327
- _ref$onCtaPress = _ref.onCtaPress,
19328
- onCtaPress = _ref$onCtaPress === void 0 ? noop$1 : _ref$onCtaPress,
19329
- secondaryCtaText = _ref.secondaryCtaText,
19330
- onSecondaryCtaPress = _ref.onSecondaryCtaPress,
19331
- nativeProps = _objectWithoutProperties(_ref, _excluded$a);
20122
+ var renderImageOrIcon = function renderImageOrIcon(_ref) {
20123
+ var image = _ref.image,
20124
+ icon = _ref.icon;
20125
+ if (icon) {
20126
+ return /*#__PURE__*/React__namespace.default.createElement(StyledSuccessImageContainer, null, /*#__PURE__*/React__namespace.default.createElement(StatusIcon, {
20127
+ icon: icon,
20128
+ testID: "success-icon"
20129
+ }));
20130
+ }
20131
+ if (image) {
20132
+ return /*#__PURE__*/React__namespace.default.createElement(StyledSuccessImageContainer, null, renderImage(image));
20133
+ }
20134
+ return null;
20135
+ };
20136
+ var SuccessPage = function SuccessPage(_ref2) {
20137
+ var _ref2$variant = _ref2.variant,
20138
+ variant = _ref2$variant === void 0 ? 'in-page' : _ref2$variant,
20139
+ title = _ref2.title,
20140
+ description = _ref2.description,
20141
+ image = _ref2.image,
20142
+ testID = _ref2.testID,
20143
+ ctaText = _ref2.ctaText,
20144
+ _ref2$onCtaPress = _ref2.onCtaPress,
20145
+ onCtaPress = _ref2$onCtaPress === void 0 ? noop$1 : _ref2$onCtaPress,
20146
+ secondaryCtaText = _ref2.secondaryCtaText,
20147
+ onSecondaryCtaPress = _ref2.onSecondaryCtaPress,
20148
+ icon = _ref2.icon,
20149
+ nativeProps = _objectWithoutProperties(_ref2, _excluded$a);
19332
20150
  var showSecondaryButton = secondaryCtaText && onSecondaryCtaPress;
19333
20151
  return /*#__PURE__*/React__namespace.default.createElement(StyledSuccessContainer, _extends$1({
19334
20152
  testID: testID,
19335
20153
  themeVariant: variant
19336
- }, nativeProps), /*#__PURE__*/React__namespace.default.createElement(StyledSuccessContent, null, !!image && /*#__PURE__*/React__namespace.default.createElement(StyledSuccessImageContainer, null, renderImage(image)), /*#__PURE__*/React__namespace.default.createElement(StyledSuccessTitle, {
20154
+ }, nativeProps), /*#__PURE__*/React__namespace.default.createElement(StyledSuccessContent, null, renderImageOrIcon({
20155
+ image: image,
20156
+ icon: icon
20157
+ }), /*#__PURE__*/React__namespace.default.createElement(StyledSuccessTitle, {
19337
20158
  level: "h4",
19338
20159
  typeface: "playful"
19339
20160
  }, title), typeof description === 'string' ? /*#__PURE__*/React__namespace.default.createElement(StyledSuccessDescription, null, description) : description), !!ctaText && /*#__PURE__*/React__namespace.default.createElement(StyledSuccessButtonContainer, null, /*#__PURE__*/React__namespace.default.createElement(StyledSuccessButtonPrimary, {