@blerp/design 1.3.17 → 1.4.2

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 (128) hide show
  1. package/dist/cjs/Blerp/BlerpImageRow.js +176 -57
  2. package/dist/cjs/Blerp/BlerpSavePopup.js +44 -40
  3. package/dist/cjs/Blerp/BlerpTitleRow.js +36 -19
  4. package/dist/cjs/Blerp/BlerpTopRow.js +110 -44
  5. package/dist/cjs/Blerp.js +9 -16
  6. package/dist/cjs/BlerpAudioContextProvider.js +2 -2
  7. package/dist/cjs/BlerpListView.js +318 -168
  8. package/dist/cjs/BlerpListViewPremium.js +155 -130
  9. package/dist/cjs/BlerpListViewSkeleton.js +60 -13
  10. package/dist/cjs/BlerpSkeleton.js +32 -9
  11. package/dist/cjs/CollectionCard.js +139 -60
  12. package/dist/cjs/CollectionListViewPremium.js +368 -297
  13. package/dist/cjs/CollectionSkeleton.js +74 -13
  14. package/dist/cjs/Dropdown.js +272 -172
  15. package/dist/cjs/EllipsisLoader.js +66 -21
  16. package/dist/cjs/GroupCard.js +64 -57
  17. package/dist/cjs/Icons/Icons.js +288 -426
  18. package/dist/cjs/ImageEditor.js +247 -0
  19. package/dist/cjs/ImageUpload.js +226 -0
  20. package/dist/cjs/NewBlerp.js +354 -160
  21. package/dist/cjs/NewBlerpTest.js +10 -792
  22. package/dist/cjs/NewCollectionModal.js +294 -310
  23. package/dist/cjs/PremiumCollectionCard.js +191 -454
  24. package/dist/cjs/PurchaseModals/CheckoutModal.js +1 -1
  25. package/dist/cjs/PurchaseModals/PremiumBlerpCheckoutModal.js +1 -1
  26. package/dist/cjs/PurchaseModals/PremiumCollectionCheckoutModal.js +1 -1
  27. package/dist/cjs/PurchaseModals/PremiumSubscriptionCheckoutModal.js +1 -1
  28. package/dist/cjs/ReactionButtons.js +26 -13
  29. package/dist/cjs/SnackbarContextProvider.js +200 -116
  30. package/dist/cjs/Theme.js +217 -90
  31. package/dist/cjs/Toggle.js +86 -32
  32. package/dist/cjs/UserCard.js +13 -32
  33. package/dist/cjs/UserPage/LibraryControls.js +180 -93
  34. package/dist/cjs/UserPage/UserLibraryHeader.js +23 -14
  35. package/dist/cjs/UserPage/UserProfileHeader.js +120 -105
  36. package/dist/cjs/UsernameWithPopout.js +12 -8
  37. package/dist/cjs/colors.js +15 -8
  38. package/dist/cjs/helpers.js +131 -0
  39. package/dist/cjs/index.js +92 -58
  40. package/dist/cjs/neo-components/Autocomplete.js +285 -0
  41. package/dist/cjs/neo-components/BottomNavigation.js +120 -0
  42. package/dist/cjs/neo-components/Box.js +48 -0
  43. package/dist/cjs/neo-components/Button.js +206 -0
  44. package/dist/cjs/neo-components/CircularProgress.js +92 -0
  45. package/dist/cjs/neo-components/Container.js +75 -0
  46. package/dist/cjs/neo-components/Dialog.js +441 -0
  47. package/dist/cjs/neo-components/Fab.js +237 -0
  48. package/dist/cjs/neo-components/FormControls.js +1057 -0
  49. package/dist/cjs/neo-components/Grid.js +256 -0
  50. package/dist/cjs/neo-components/IconButton.js +111 -0
  51. package/dist/cjs/neo-components/Input.js +495 -0
  52. package/dist/cjs/neo-components/Layout.js +1214 -0
  53. package/dist/cjs/neo-components/Misc.js +868 -0
  54. package/dist/cjs/neo-components/Navigation.js +1616 -0
  55. package/dist/cjs/neo-components/Paper.js +256 -0
  56. package/dist/cjs/neo-components/Stack.js +194 -0
  57. package/dist/cjs/neo-components/Stepper.js +291 -0
  58. package/dist/cjs/neo-components/Text.js +290 -0
  59. package/dist/cjs/neo-components/ThemeProvider.js +731 -0
  60. package/dist/cjs/neo-components/ToggleButton.js +223 -0
  61. package/dist/cjs/neo-components/createTheme.js +306 -0
  62. package/dist/cjs/neo-components/withSx.js +171 -0
  63. package/dist/cjs/neo-utils/sxToStyle.js +508 -0
  64. package/dist/esm/Blerp/BlerpImageRow.js +166 -46
  65. package/dist/esm/Blerp/BlerpSavePopup.js +35 -27
  66. package/dist/esm/Blerp/BlerpTitleRow.js +32 -13
  67. package/dist/esm/Blerp/BlerpTopRow.js +85 -16
  68. package/dist/esm/Blerp.js +4 -12
  69. package/dist/esm/BlerpAudioContextProvider.js +1 -2
  70. package/dist/esm/BlerpListView.js +313 -160
  71. package/dist/esm/BlerpListViewPremium.js +135 -109
  72. package/dist/esm/BlerpListViewSkeleton.js +60 -11
  73. package/dist/esm/BlerpSkeleton.js +32 -7
  74. package/dist/esm/CollectionCard.js +118 -38
  75. package/dist/esm/CollectionListViewPremium.js +367 -294
  76. package/dist/esm/CollectionSkeleton.js +73 -11
  77. package/dist/esm/Dropdown.js +260 -161
  78. package/dist/esm/EllipsisLoader.js +63 -18
  79. package/dist/esm/GroupCard.js +54 -46
  80. package/dist/esm/Icons/Icons.js +226 -367
  81. package/dist/esm/ImageEditor.js +240 -0
  82. package/dist/esm/ImageUpload.js +217 -0
  83. package/dist/esm/NewBlerp.js +282 -79
  84. package/dist/esm/NewBlerpTest.js +11 -781
  85. package/dist/esm/NewCollectionModal.js +289 -304
  86. package/dist/esm/PremiumCollectionCard.js +192 -451
  87. package/dist/esm/PurchaseModals/CheckoutModal.js +1 -1
  88. package/dist/esm/PurchaseModals/PremiumBlerpCheckoutModal.js +1 -1
  89. package/dist/esm/PurchaseModals/PremiumCollectionCheckoutModal.js +1 -1
  90. package/dist/esm/PurchaseModals/PremiumSubscriptionCheckoutModal.js +1 -1
  91. package/dist/esm/ReactionButtons.js +23 -8
  92. package/dist/esm/SnackbarContextProvider.js +196 -110
  93. package/dist/esm/Theme.js +187 -66
  94. package/dist/esm/Toggle.js +84 -29
  95. package/dist/esm/UserCard.js +1 -20
  96. package/dist/esm/UserPage/LibraryControls.js +159 -65
  97. package/dist/esm/UserPage/UserLibraryHeader.js +18 -10
  98. package/dist/esm/UserPage/UserProfileHeader.js +100 -79
  99. package/dist/esm/UsernameWithPopout.js +7 -4
  100. package/dist/esm/colors.js +11 -9
  101. package/dist/esm/helpers.js +122 -0
  102. package/dist/esm/icons.js +1 -1
  103. package/dist/esm/index.js +32 -2
  104. package/dist/esm/neo-components/Autocomplete.js +274 -0
  105. package/dist/esm/neo-components/BottomNavigation.js +109 -0
  106. package/dist/esm/neo-components/Box.js +36 -0
  107. package/dist/esm/neo-components/Button.js +194 -0
  108. package/dist/esm/neo-components/CircularProgress.js +81 -0
  109. package/dist/esm/neo-components/Container.js +63 -0
  110. package/dist/esm/neo-components/Dialog.js +423 -0
  111. package/dist/esm/neo-components/Fab.js +225 -0
  112. package/dist/esm/neo-components/FormControls.js +1041 -0
  113. package/dist/esm/neo-components/Grid.js +244 -0
  114. package/dist/esm/neo-components/IconButton.js +99 -0
  115. package/dist/esm/neo-components/Input.js +480 -0
  116. package/dist/esm/neo-components/Layout.js +1180 -0
  117. package/dist/esm/neo-components/Misc.js +850 -0
  118. package/dist/esm/neo-components/Navigation.js +1594 -0
  119. package/dist/esm/neo-components/Paper.js +243 -0
  120. package/dist/esm/neo-components/Stack.js +182 -0
  121. package/dist/esm/neo-components/Stepper.js +278 -0
  122. package/dist/esm/neo-components/Text.js +277 -0
  123. package/dist/esm/neo-components/ThemeProvider.js +718 -0
  124. package/dist/esm/neo-components/ToggleButton.js +214 -0
  125. package/dist/esm/neo-components/createTheme.js +297 -0
  126. package/dist/esm/neo-components/withSx.js +160 -0
  127. package/dist/esm/neo-utils/sxToStyle.js +502 -0
  128. package/package.json +19 -15
@@ -1,571 +1,430 @@
1
- import { SvgIcon } from '@mui/material';
1
+ import _extends from '@babel/runtime/helpers/extends';
2
+ import _defineProperty from '@babel/runtime/helpers/defineProperty';
3
+ import _objectWithoutProperties from '@babel/runtime/helpers/objectWithoutProperties';
2
4
  import React from 'react';
5
+ import { useBlerpTheme } from '../Theme.js';
3
6
 
4
- const PresentGiftIcon = _ref => {
7
+ const _excluded = ["sx", "children", "viewBox"];
8
+
9
+ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }
10
+
11
+ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
12
+ // Defaults to white color, can be overridden via sx.color
13
+
14
+ const SvgIcon = _ref => {
15
+ let {
16
+ sx,
17
+ children,
18
+ viewBox = "0 0 24 24"
19
+ } = _ref,
20
+ props = _objectWithoutProperties(_ref, _excluded);
21
+
22
+ const theme = useBlerpTheme(); // Resolve color path like "seafoam.main" or "whiteOverride.main" to actual hex value
23
+
24
+ const resolveColor = colorValue => {
25
+ if (!colorValue || colorValue.startsWith("#") || colorValue.startsWith("rgb")) {
26
+ return colorValue || "white";
27
+ } // Parse path like "whiteOverride.main" or "seafoam.main"
28
+
29
+
30
+ const parts = colorValue.split("."); // Try palette first (for paths like "whiteOverride.main")
31
+
32
+ let resolved = theme.palette;
33
+
34
+ for (const part of parts) {
35
+ var _resolved;
36
+
37
+ resolved = (_resolved = resolved) === null || _resolved === void 0 ? void 0 : _resolved[part];
38
+ }
39
+
40
+ if (resolved && typeof resolved === "string") {
41
+ return resolved;
42
+ } // Fall back to colors (for flat values like "seafoam")
43
+
44
+
45
+ resolved = theme.colors;
46
+
47
+ for (const part of parts) {
48
+ var _resolved2;
49
+
50
+ resolved = (_resolved2 = resolved) === null || _resolved2 === void 0 ? void 0 : _resolved2[part];
51
+ }
52
+
53
+ if (resolved && typeof resolved === "string") {
54
+ return resolved;
55
+ } // Return original value if nothing found
56
+
57
+
58
+ return colorValue;
59
+ };
60
+
61
+ const color = resolveColor(sx === null || sx === void 0 ? void 0 : sx.color);
62
+ const size = (sx === null || sx === void 0 ? void 0 : sx.width) || (sx === null || sx === void 0 ? void 0 : sx.fontSize) || (sx === null || sx === void 0 ? void 0 : sx.height) || "1em";
63
+ return /*#__PURE__*/React.createElement("svg", _extends({
64
+ width: size,
65
+ height: size,
66
+ viewBox: viewBox,
67
+ fill: color,
68
+ style: _objectSpread(_objectSpread({
69
+ display: "inline-block",
70
+ flexShrink: 0
71
+ }, sx), {}, {
72
+ fill: color
73
+ })
74
+ }, props), children);
75
+ };
76
+
77
+ const PresentGiftIcon = _ref2 => {
5
78
  let {
6
79
  sx
7
- } = _ref;
80
+ } = _ref2;
8
81
  return /*#__PURE__*/React.createElement(SvgIcon, {
9
82
  sx: sx
10
- }, /*#__PURE__*/React.createElement("svg", {
11
- width: "24",
12
- height: "24",
13
- viewBox: "0 0 24 24",
14
- xmlns: "http://www.w3.org/2000/svg"
15
83
  }, /*#__PURE__*/React.createElement("path", {
16
- "fill-rule": "evenodd",
17
- "clip-rule": "evenodd",
84
+ fillRule: "evenodd",
85
+ clipRule: "evenodd",
18
86
  d: "M9.52851 4.05582C10.2735 4.58225 10.9836 5.27026 11.5238 5.98594C12.064 5.27026 12.7741 4.58225 13.5191 4.05582C14.1172 3.6332 14.7839 3.28121 15.4574 3.11073C16.132 2.93995 16.8833 2.93649 17.5556 3.31973C18.7454 3.99788 19.0667 5.56851 18.5299 6.68922C18.4689 6.81663 18.3996 6.93594 18.3232 7.04762H20.4286C21.3227 7.04762 22.0476 7.77249 22.0476 8.66667V11.0952C22.0476 11.9894 21.3227 12.7143 20.4286 12.7143V18.381C20.4286 19.2751 19.7037 20 18.8095 20H4.2381C3.34392 20 2.61905 19.2751 2.61905 18.381V12.7143C1.72487 12.7143 1 11.9894 1 11.0952V8.66667C1 7.77249 1.72487 7.04762 2.61905 7.04762H4.72438C4.64803 6.93594 4.57873 6.81663 4.5177 6.68922C3.98094 5.56851 4.30225 3.99788 5.49196 3.31973C6.16427 2.93649 6.91562 2.93995 7.59023 3.11073C8.26369 3.28121 8.9304 3.6332 9.52851 4.05582ZM14.7551 7.01891C14.5252 7.03815 14.2932 7.04702 14.0642 7.04762H14.0144C13.5892 7.04651 13.1756 7.01726 12.8071 6.97327C13.2274 6.41385 13.8102 5.8326 14.4534 5.37808C14.9483 5.02841 15.4334 4.78692 15.8547 4.68027C16.2749 4.5739 16.5613 4.61654 16.7539 4.72631C17.0981 4.92251 17.2956 5.51816 17.0697 5.98985C16.9417 6.25716 16.6928 6.48772 16.2844 6.67092C15.8712 6.85625 15.3425 6.96974 14.7551 7.01891ZM10.2405 6.97327C9.87199 7.01726 9.45845 7.04651 9.03317 7.04762H8.98341C8.75442 7.04702 8.52241 7.03815 8.29254 7.01891C7.70512 6.96974 7.17643 6.85625 6.76322 6.67092C6.35477 6.48772 6.10594 6.25716 5.97791 5.98985C5.75199 5.51816 5.94952 4.92251 6.29373 4.72631C6.48631 4.61654 6.77273 4.5739 7.19291 4.68027C7.61423 4.78692 8.09933 5.02841 8.5942 5.37808C9.23744 5.8326 9.82024 6.41385 10.2405 6.97327ZM12.3333 12.7143H18.8095L18.8095 18.381H12.3333V12.7143ZM12.3333 11.0952H18.8095L18.8119 11.0952H20.4286V8.66667L12.3333 8.66667V11.0952ZM10.7143 8.66667V11.0952H4.2381H4.23734H2.61905L2.61905 8.66667L10.7143 8.66667ZM10.7143 12.7143V18.381H4.2381V12.7143H10.7143Z"
19
- })));
87
+ }));
20
88
  };
21
- const SparkleGiftIcon = _ref2 => {
89
+ const SparkleGiftIcon = _ref3 => {
22
90
  let {
23
91
  sx
24
- } = _ref2;
92
+ } = _ref3;
25
93
  return /*#__PURE__*/React.createElement(SvgIcon, {
26
94
  sx: sx
27
- }, /*#__PURE__*/React.createElement("svg", {
28
- width: "24",
29
- height: "24",
30
- viewBox: "0 0 24 24",
31
- xmlns: "http://www.w3.org/2000/svg"
32
95
  }, /*#__PURE__*/React.createElement("path", {
33
96
  d: "M13.7788 14.107L12.645 13.6814C11.5236 13.26 10.6431 12.3667 10.2278 11.2289L9.8083 10.0786C9.70239 9.7899 9.43036 9.59607 9.12717 9.59607C8.82398 9.59607 8.55195 9.7878 8.44604 10.0786L8.02656 11.2289C7.61124 12.3667 6.73075 13.26 5.60938 13.6814L4.47555 14.107C4.19105 14.2144 4 14.4904 4 14.798C4 15.1057 4.18897 15.3817 4.47555 15.4891L5.60938 15.9147C6.73075 16.3361 7.61124 17.2294 8.02656 18.3672L8.44604 19.5175C8.55195 19.8062 8.82398 20 9.12717 20C9.43036 20 9.70239 19.8083 9.8083 19.5175L10.2278 18.3672C10.6431 17.2294 11.5236 16.3361 12.645 15.9147L13.7788 15.4891C14.0633 15.3817 14.2543 15.1057 14.2543 14.798C14.2543 14.4904 14.0633 14.2144 13.7788 14.107ZM9.12717 17.0119C8.59556 15.9564 7.9855 15.3353 6.94512 14.798C7.9855 14.2587 8.59763 13.6397 9.12717 12.5842C9.65878 13.6397 10.2688 14.2608 11.3092 14.798C10.2688 15.3374 9.65671 15.9564 9.12717 17.0119Z"
34
97
  }), /*#__PURE__*/React.createElement("path", {
35
98
  d: "M19.6022 6.79143L18.904 6.52886C18.2561 6.28566 17.7472 5.76932 17.5075 5.11199L17.2487 4.40356C17.1601 4.16213 16.9326 4 16.679 4C16.4254 4 16.1979 4.16037 16.1093 4.40356L15.8505 5.11199C15.6108 5.76932 15.1018 6.28566 14.454 6.52886L13.7557 6.79143C13.5178 6.88131 13.358 7.11217 13.358 7.36946C13.358 7.62675 13.516 7.85761 13.7557 7.94748L14.454 8.21006C15.1018 8.45325 15.6108 8.9696 15.8505 9.62693L16.1093 10.3354C16.1979 10.5768 16.4254 10.7389 16.679 10.7389C16.9326 10.7389 17.1601 10.5785 17.2487 10.3354L17.5075 9.62693C17.7472 8.9696 18.2561 8.45325 18.904 8.21006L19.6022 7.94748C19.8402 7.85761 20 7.62675 20 7.36946C20 7.11217 19.8419 6.88131 19.6022 6.79143Z"
36
- })));
99
+ }));
37
100
  };
38
- const PlayOutlineIcon = _ref3 => {
101
+ const PlayOutlineIcon = _ref4 => {
39
102
  let {
40
103
  sx
41
- } = _ref3;
104
+ } = _ref4;
42
105
  return /*#__PURE__*/React.createElement(SvgIcon, {
43
106
  sx: sx
44
- }, /*#__PURE__*/React.createElement("g", {
45
- xmlns: "http://www.w3.org/2000/svg",
46
- id: "Icon_awesome-play",
47
- transform: "translate(4 3.999)"
48
- }, /*#__PURE__*/React.createElement("g", {
49
- id: "Subtraction_1006"
50
107
  }, /*#__PURE__*/React.createElement("path", {
51
- d: "M3.9,1C3.3,1,2.6,1.4,2.6,2.2v11.6c0,1,1.3,1.6,2,1l8.1-5.6c0.8-0.5,0.8-1.8,0-2.3L4.7,1.2 C4.5,1,4.2,1,3.9,1 M3.7-1L3.7-1c0.6,0,1.2,0.2,1.7,0.5l0,0L14,5.6C14.7,6.1,15.2,7,15.2,8c0,1-0.5,1.9-1.2,2.5l-8.6,6 c-0.5,0.3-1,0.5-1.6,0.5c-0.7,0-1.4-0.3-2-0.7c-0.6-0.5-1-1.3-1-2.1V1.8c0-0.9,0.3-1.6,1-2.1C2.3-0.8,3-1,3.7-1z"
52
- }))));
108
+ d: "M7.9,4C7.3,4,6.6,4.4,6.6,5.2v11.6c0,1,1.3,1.6,2,1l8.1-5.6c0.8-0.5,0.8-1.8,0-2.3L8.7,4.2C8.5,4,8.2,4,7.9,4 M7.7,2L7.7,2c0.6,0,1.2,0.2,1.7,0.5l0,0L18,8.6C18.7,9.1,19.2,10,19.2,11c0,1-0.5,1.9-1.2,2.5l-8.6,6c-0.5,0.3-1,0.5-1.6,0.5c-0.7,0-1.4-0.3-2-0.7c-0.6-0.5-1-1.3-1-2.1V4.8c0-0.9,0.3-1.6,1-2.1C6.3,2.2,7,2,7.7,2z"
109
+ }));
53
110
  };
54
- const PlaySolidIcon = _ref4 => {
111
+ const PlaySolidIcon = _ref5 => {
55
112
  let {
56
113
  sx
57
- } = _ref4;
114
+ } = _ref5;
58
115
  return /*#__PURE__*/React.createElement(SvgIcon, {
59
116
  sx: sx
60
- }, /*#__PURE__*/React.createElement("g", {
61
- xmlns: "http://www.w3.org/2000/svg",
62
- id: "Icon_awesome-play_1_",
63
- class: "st5"
64
117
  }, /*#__PURE__*/React.createElement("path", {
65
- class: "st3",
66
- d: "M7.2,4.3c-0.2,0-0.3,0-0.5,0.1C6.4,4.6,6.3,4.8,6.3,5.1v13.8c0,0.4,0.3,0.6,0.4,0.7c0.3,0.2,0.7,0.2,0.9,0 l9.6-6.7c0.2-0.2,0.4-0.4,0.4-0.7c0-0.3,0-0.6-0.2-0.8c-0.1-0.1-0.1-0.1-0.2-0.2L7.7,4.5C7.6,4.4,7.4,4.3,7.2,4.3z"
67
- })));
118
+ d: "M7.2,4.3c-0.2,0-0.3,0-0.5,0.1C6.4,4.6,6.3,4.8,6.3,5.1v13.8c0,0.4,0.3,0.6,0.4,0.7c0.3,0.2,0.7,0.2,0.9,0l9.6-6.7c0.2-0.2,0.4-0.4,0.4-0.7c0-0.3,0-0.6-0.2-0.8c-0.1-0.1-0.1-0.1-0.2-0.2L7.7,4.5C7.6,4.4,7.4,4.3,7.2,4.3z"
119
+ }));
68
120
  };
69
- const TwitchBitIcon = _ref5 => {
121
+ const TwitchBitIcon = _ref6 => {
70
122
  let {
71
123
  sx
72
- } = _ref5;
124
+ } = _ref6;
73
125
  return /*#__PURE__*/React.createElement(SvgIcon, {
74
126
  sx: sx
75
- }, /*#__PURE__*/React.createElement("g", {
76
- xmlns: "http://www.w3.org/2000/svg",
77
- id: "Bits"
78
- }, /*#__PURE__*/React.createElement("g", {
79
- id: "Path_3931"
80
127
  }, /*#__PURE__*/React.createElement("path", {
81
- class: "st3",
82
- d: "M12,21c-0.2,0-0.3-0.1-0.5-0.2l-6.8-5.4c-0.3-0.2-0.4-0.6-0.2-1l6.8-11.2C11.6,3.1,11.8,3,12,3c0,0,0,0,0,0 c0.3,0,0.5,0.1,0.6,0.4l6.7,11.2c0.2,0.3,0.1,0.7-0.2,1l-6.7,5.4C12.4,20.9,12.2,21,12,21z M6.2,14.7l5.8,4.6l5.7-4.6L12,5.2 L6.2,14.7z"
83
- }))));
128
+ d: "M12,21c-0.2,0-0.3-0.1-0.5-0.2l-6.8-5.4c-0.3-0.2-0.4-0.6-0.2-1l6.8-11.2C11.6,3.1,11.8,3,12,3c0,0,0,0,0,0c0.3,0,0.5,0.1,0.6,0.4l6.7,11.2c0.2,0.3,0.1,0.7-0.2,1l-6.7,5.4C12.4,20.9,12.2,21,12,21z M6.2,14.7l5.8,4.6l5.7-4.6L12,5.2L6.2,14.7z"
129
+ }));
84
130
  };
85
- const BlerpCoinsIcon = _ref6 => {
131
+ const BlerpCoinsIcon = _ref7 => {
86
132
  let {
87
133
  sx
88
- } = _ref6;
134
+ } = _ref7;
89
135
  return /*#__PURE__*/React.createElement(SvgIcon, {
90
136
  sx: sx
91
- }, /*#__PURE__*/React.createElement("g", {
92
- xmlns: "http://www.w3.org/2000/svg",
93
- id: "Group_30665"
94
137
  }, /*#__PURE__*/React.createElement("path", {
95
- id: "Subtraction_383",
96
- class: "st3",
97
- d: "M13.7,17.5c-4,0-7.3-3.3-7.3-7.3c0-4,3.3-7.3,7.3-7.3c4,0,7.3,3.3,7.3,7.3 C21,14.3,17.7,17.5,13.7,17.5z M12.7,6.5c-0.1,0-0.2,0-0.3,0.1c-0.5,0.2-0.7,0.7-0.8,1.2c0,0.2-0.1,0.4-0.2,0.5 c-0.2,0.3-0.5,0.5-0.9,0.6l0,0c-0.5,0.2-0.9,0.3-0.9,1c0,0.5,0.3,0.7,0.7,0.9c0.3,0.2,0.6,0.4,0.8,0.7c0.1,0.3,0.2,0.7,0,1.1 c-0.2,0.5-0.1,1,0.3,1.4c0.2,0.2,0.4,0.2,0.6,0.2c0.6-0.1,1.1-0.4,1.5-0.8c0.3-0.3,0.6-0.5,1-0.7c0.4-0.1,0.8-0.1,1.2-0.1h0.1 c0.9,0,1.7-0.1,1.9-0.9c0.1-0.7-0.3-1-0.7-1.3c-0.3-0.2-0.5-0.5-0.7-0.8c0-0.3,0-0.7,0.1-1c0.1-0.4,0.2-0.8-0.1-1.1 C16.4,7.1,16.2,7,15.9,7c-0.2,0-0.5,0.1-0.7,0.2h0c-0.2,0.1-0.5,0.2-0.7,0.2c-0.1,0-0.2,0-0.3-0.1C14,7.2,13.8,7.1,13.7,7l0,0 C13.4,6.7,13.1,6.5,12.7,6.5z M13.5,11.2c-0.5,0-1.1-0.3-1.4-0.7c-0.1-0.1-0.1-0.2,0-0.3c0-0.1,0.1-0.2,0.2-0.2 c0.4,0,0.8-0.1,1.2-0.3c0.4-0.1,0.8-0.3,1.1-0.6c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0c0.1,0,0.1,0.1,0.2,0.2c0.1,0.7-0.3,1.4-1,1.7 C13.9,11.2,13.7,11.2,13.5,11.2L13.5,11.2z"
138
+ d: "M13.7,17.5c-4,0-7.3-3.3-7.3-7.3c0-4,3.3-7.3,7.3-7.3c4,0,7.3,3.3,7.3,7.3C21,14.3,17.7,17.5,13.7,17.5z M12.7,6.5c-0.1,0-0.2,0-0.3,0.1c-0.5,0.2-0.7,0.7-0.8,1.2c0,0.2-0.1,0.4-0.2,0.5c-0.2,0.3-0.5,0.5-0.9,0.6l0,0c-0.5,0.2-0.9,0.3-0.9,1c0,0.5,0.3,0.7,0.7,0.9c0.3,0.2,0.6,0.4,0.8,0.7c0.1,0.3,0.2,0.7,0,1.1c-0.2,0.5-0.1,1,0.3,1.4c0.2,0.2,0.4,0.2,0.6,0.2c0.6-0.1,1.1-0.4,1.5-0.8c0.3-0.3,0.6-0.5,1-0.7c0.4-0.1,0.8-0.1,1.2-0.1h0.1c0.9,0,1.7-0.1,1.9-0.9c0.1-0.7-0.3-1-0.7-1.3c-0.3-0.2-0.5-0.5-0.7-0.8c0-0.3,0-0.7,0.1-1c0.1-0.4,0.2-0.8-0.1-1.1C16.4,7.1,16.2,7,15.9,7c-0.2,0-0.5,0.1-0.7,0.2h0c-0.2,0.1-0.5,0.2-0.7,0.2c-0.1,0-0.2,0-0.3-0.1C14,7.2,13.8,7.1,13.7,7l0,0C13.4,6.7,13.1,6.5,12.7,6.5z M13.5,11.2c-0.5,0-1.1-0.3-1.4-0.7c-0.1-0.1-0.1-0.2,0-0.3c0-0.1,0.1-0.2,0.2-0.2c0.4,0,0.8-0.1,1.2-0.3c0.4-0.1,0.8-0.3,1.1-0.6c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0c0.1,0,0.1,0.1,0.2,0.2c0.1,0.7-0.3,1.4-1,1.7C13.9,11.2,13.7,11.2,13.5,11.2L13.5,11.2z"
98
139
  }), /*#__PURE__*/React.createElement("path", {
99
- id: "Subtraction_384",
100
- class: "st3",
101
- d: "M11,21c-4.4,0-8-3.6-8-8c0-2.6,1.3-5,3.4-6.5c-2.2,3.2-1.8,7.4,0.9,10.2 c2.7,2.7,7,3.1,10.2,0.9C16,19.7,13.6,21,11,21z"
102
- })));
140
+ d: "M11,21c-4.4,0-8-3.6-8-8c0-2.6,1.3-5,3.4-6.5c-2.2,3.2-1.8,7.4,0.9,10.2c2.7,2.7,7,3.1,10.2,0.9C16,19.7,13.6,21,11,21z"
141
+ }));
103
142
  };
104
- const ShortcutIcon = _ref7 => {
143
+ const ShortcutIcon = _ref8 => {
105
144
  let {
106
145
  sx
107
- } = _ref7;
146
+ } = _ref8;
108
147
  return /*#__PURE__*/React.createElement(SvgIcon, {
109
148
  sx: sx
110
- }, /*#__PURE__*/React.createElement("g", {
111
- xmlns: "http://www.w3.org/2000/svg",
112
- id: "Group_27311",
113
- transform: "translate(-0.002 -0.002)"
114
149
  }, /*#__PURE__*/React.createElement("path", {
115
- id: "Subtraction_275",
116
- class: "st3",
117
- d: "M16.1,21H7.9c-2.4,0-4.4-1.7-4.8-4c0.8,1,1.9,1.5,3.2,1.5h8.2c2.3,0,4.1-1.8,4.1-4.1 V6.3C18.5,5,18,3.9,17,3.1c2.3,0.4,4,2.5,4,4.8v8.2C21,18.8,18.8,21,16.1,21z"
150
+ d: "M16.1,21H7.9c-2.4,0-4.4-1.7-4.8-4c0.8,1,1.9,1.5,3.2,1.5h8.2c2.3,0,4.1-1.8,4.1-4.1V6.3C18.5,5,18,3.9,17,3.1c2.3,0.4,4,2.5,4,4.8v8.2C21,18.8,18.8,21,16.1,21z"
118
151
  }), /*#__PURE__*/React.createElement("path", {
119
- id: "Subtraction_379",
120
- class: "st3",
121
- d: "M13.7,17H6.3C4.5,17,3,15.5,3,13.7V6.3C3,4.5,4.5,3,6.3,3h7.4C15.5,3,17,4.5,17,6.3 c0,0,0,0,0,0v7.4C17,15.5,15.5,17,13.7,17z M7.8,8.3c-0.1,0-0.2,0-0.3,0.1c-0.6,0.6-0.9,1.5-0.9,2.3c0,1.8,1.5,3.3,3.3,3.3 s3.3-1.5,3.3-3.3c0-1.3-0.7-2.5-1.7-3.3c-0.6-0.6-1.2-1.1-1.2-1.9c0-0.2-0.2-0.4-0.4-0.4c0,0,0,0,0,0c-0.1,0-0.3,0.1-0.3,0.2 C9,6.1,8.8,6.9,8.8,7.7C9,8.2,9.3,8.6,9.7,9c0.4,0.3,0.7,0.8,0.8,1.3c0,0.6-0.5,1.1-1.1,1.1h0c-0.6,0-1.1-0.5-1.1-1.1V8.7 c0-0.1,0-0.2-0.1-0.3C8.1,8.4,7.9,8.3,7.8,8.3z"
122
- })));
152
+ d: "M13.7,17H6.3C4.5,17,3,15.5,3,13.7V6.3C3,4.5,4.5,3,6.3,3h7.4C15.5,3,17,4.5,17,6.3c0,0,0,0,0,0v7.4C17,15.5,15.5,17,13.7,17z M7.8,8.3c-0.1,0-0.2,0-0.3,0.1c-0.6,0.6-0.9,1.5-0.9,2.3c0,1.8,1.5,3.3,3.3,3.3s3.3-1.5,3.3-3.3c0-1.3-0.7-2.5-1.7-3.3c-0.6-0.6-1.2-1.1-1.2-1.9c0-0.2-0.2-0.4-0.4-0.4c0,0,0,0,0,0c-0.1,0-0.3,0.1-0.3,0.2C9,6.1,8.8,6.9,8.8,7.7C9,8.2,9.3,8.6,9.7,9c0.4,0.3,0.7,0.8,0.8,1.3c0,0.6-0.5,1.1-1.1,1.1h0c-0.6,0-1.1-0.5-1.1-1.1V8.7c0-0.1,0-0.2-0.1-0.3C8.1,8.4,7.9,8.3,7.8,8.3z"
153
+ }));
123
154
  };
124
- const LightbulbIcon = _ref8 => {
155
+ const LightbulbIcon = _ref9 => {
125
156
  let {
126
157
  sx
127
- } = _ref8;
158
+ } = _ref9;
128
159
  return /*#__PURE__*/React.createElement(SvgIcon, {
129
160
  sx: sx
130
- }, /*#__PURE__*/React.createElement("g", {
131
- xmlns: "http://www.w3.org/2000/svg"
132
- }, /*#__PURE__*/React.createElement("g", {
133
- id: "Layer_3_2_"
134
- }, /*#__PURE__*/React.createElement("g", null, /*#__PURE__*/React.createElement("path", {
135
- class: "st3",
136
- d: "M11.8,6.9L11.8,6.9c-2.3,0-4.1,1.8-4.1,4C7.7,12,8.1,13.1,8.7,14c0.2,0.2,0.2,0.4,0.3,0.5 c0.2,0.7,0.4,1.4,0.4,2.1c0,0.5,0.4,0.8,0.8,0.8h3.3c0.5,0,0.8-0.4,0.8-0.8l0,0c0-0.8,0.1-1.4,0.2-2.1c0.1-0.3,0.2-0.5,0.4-0.7 c0.6-0.9,0.9-1.9,1-2.9v-0.2C15.8,8.4,14,6.8,11.8,6.9z M14.4,10.9c-0.1,0.8-0.5,1.5-0.8,2.2c-0.2,0.3-0.4,0.7-0.5,1l0,0 c-0.2,0.6-0.2,1.3-0.2,1.8h-1.7c-0.1-0.6-0.3-1.3-0.4-1.8l0-0.1c-0.1-0.3-0.3-0.5-0.5-0.8c-0.5-0.7-0.8-1.5-0.9-2.3 c0-1.4,1.1-2.4,2.4-2.4h0.2c1.3-0.1,2.4,1,2.5,2.3V10.9L14.4,10.9z"
161
+ }, /*#__PURE__*/React.createElement("path", {
162
+ d: "M11.8,6.9L11.8,6.9c-2.3,0-4.1,1.8-4.1,4C7.7,12,8.1,13.1,8.7,14c0.2,0.2,0.2,0.4,0.3,0.5c0.2,0.7,0.4,1.4,0.4,2.1c0,0.5,0.4,0.8,0.8,0.8h3.3c0.5,0,0.8-0.4,0.8-0.8l0,0c0-0.8,0.1-1.4,0.2-2.1c0.1-0.3,0.2-0.5,0.4-0.7c0.6-0.9,0.9-1.9,1-2.9v-0.2C15.8,8.4,14,6.8,11.8,6.9z M14.4,10.9c-0.1,0.8-0.5,1.5-0.8,2.2c-0.2,0.3-0.4,0.7-0.5,1l0,0c-0.2,0.6-0.2,1.3-0.2,1.8h-1.7c-0.1-0.6-0.3-1.3-0.4-1.8l0-0.1c-0.1-0.3-0.3-0.5-0.5-0.8c-0.5-0.7-0.8-1.5-0.9-2.3c0-1.4,1.1-2.4,2.4-2.4h0.2c1.3-0.1,2.4,1,2.5,2.3V10.9L14.4,10.9z"
137
163
  }), /*#__PURE__*/React.createElement("path", {
138
- class: "st3",
139
- d: "M19.7,9.4c-0.1,0-0.1,0-0.2,0h-2c-0.5-0.1-0.8,0.3-0.9,0.8c-0.1,0.5,0.3,0.8,0.8,0.9c0.1,0,0.1,0,0.2,0h2 c0.5,0.1,0.8-0.3,0.9-0.8C20.5,9.9,20.1,9.4,19.7,9.4z"
164
+ d: "M19.7,9.4c-0.1,0-0.1,0-0.2,0h-2c-0.5-0.1-0.8,0.3-0.9,0.8c-0.1,0.5,0.3,0.8,0.8,0.9c0.1,0,0.1,0,0.2,0h2c0.5,0.1,0.8-0.3,0.9-0.8C20.5,9.9,20.1,9.4,19.7,9.4z"
140
165
  }), /*#__PURE__*/React.createElement("path", {
141
- class: "st3",
142
- d: "M18.6,6.3C19,6,19.1,5.6,18.8,5.2S18,4.7,17.7,5l0,0l-1.5,1.3c-0.3,0.3-0.4,0.8-0.1,1.1 c0.2,0.2,0.4,0.3,0.6,0.3s0.4-0.1,0.5-0.2L18.6,6.3z"
166
+ d: "M18.6,6.3C19,6,19.1,5.6,18.8,5.2S18,4.7,17.7,5l0,0l-1.5,1.3c-0.3,0.3-0.4,0.8-0.1,1.1c0.2,0.2,0.4,0.3,0.6,0.3s0.4-0.1,0.5-0.2L18.6,6.3z"
143
167
  }), /*#__PURE__*/React.createElement("path", {
144
- class: "st3",
145
- d: "M11.8,6.4c0.5,0,0.8-0.4,0.8-0.8v-2c-0.2-0.5-0.6-0.7-1-0.5c-0.3,0.1-0.5,0.3-0.5,0.6v2 C11.1,6,11.4,6.4,11.8,6.4z"
168
+ d: "M11.8,6.4c0.5,0,0.8-0.4,0.8-0.8v-2c-0.2-0.5-0.6-0.7-1-0.5c-0.3,0.1-0.5,0.3-0.5,0.6v2C11.1,6,11.4,6.4,11.8,6.4z"
146
169
  }), /*#__PURE__*/React.createElement("path", {
147
- class: "st3",
148
- d: "M6,10c-0.1,0-0.1,0-0.2,0H4.1c-0.5,0.1-0.8,0.5-0.8,0.9c0,0.4,0.4,0.7,0.8,0.8h1.7c0.5,0.1,0.8-0.3,0.9-0.8 C6.8,10.3,6.4,10,6,10z"
170
+ d: "M6,10c-0.1,0-0.1,0-0.2,0H4.1c-0.5,0.1-0.8,0.5-0.8,0.9c0,0.4,0.4,0.7,0.8,0.8h1.7c0.5,0.1,0.8-0.3,0.9-0.8C6.8,10.3,6.4,10,6,10z"
149
171
  }), /*#__PURE__*/React.createElement("path", {
150
- class: "st3",
151
- d: "M7.9,7c0-0.2-0.1-0.5-0.3-0.6l0,0L6.1,5.1C5.7,4.8,5.2,4.9,4.9,5.2C4.6,5.6,4.7,6.1,5.1,6.4l1.5,1.2 c0.2,0.2,0.3,0.2,0.5,0.2C7.5,7.8,7.9,7.4,7.9,7z"
172
+ d: "M7.9,7c0-0.2-0.1-0.5-0.3-0.6l0,0L6.1,5.1C5.7,4.8,5.2,4.9,4.9,5.2C4.6,5.6,4.7,6.1,5.1,6.4l1.5,1.2c0.2,0.2,0.3,0.2,0.5,0.2C7.5,7.8,7.9,7.4,7.9,7z"
152
173
  }), /*#__PURE__*/React.createElement("path", {
153
- class: "st3",
154
- d: "M14,18.1H9.7c-0.1,0-0.2,0.1-0.2,0.2v1.1l0,0c0,0.1,0,0.6,0.2,0.9c0.2,0.2,0.8,0.8,0.8,0.8s0.1,0.1,0.2,0.1 h2.2c0.1,0,0.2,0,0.3-0.1c0,0,0.8-0.5,0.8-0.8c0.1-0.2,0.2-0.8,0.2-0.9l0,0v-1.1C14.1,18.1,14,18.1,14,18.1z"
155
- })))));
174
+ d: "M14,18.1H9.7c-0.1,0-0.2,0.1-0.2,0.2v1.1l0,0c0,0.1,0,0.6,0.2,0.9c0.2,0.2,0.8,0.8,0.8,0.8s0.1,0.1,0.2,0.1h2.2c0.1,0,0.2,0,0.3-0.1c0,0,0.8-0.5,0.8-0.8c0.1-0.2,0.2-0.8,0.2-0.9l0,0v-1.1C14.1,18.1,14,18.1,14,18.1z"
175
+ }));
156
176
  };
157
- const TwitchIcon = _ref9 => {
177
+ const TwitchIcon = _ref10 => {
158
178
  let {
159
179
  sx
160
- } = _ref9;
180
+ } = _ref10;
161
181
  return /*#__PURE__*/React.createElement(SvgIcon, {
162
182
  sx: sx
163
- }, /*#__PURE__*/React.createElement("g", {
164
- xmlns: "http://www.w3.org/2000/svg",
165
- id: "Twitch"
166
- }, /*#__PURE__*/React.createElement("g", {
167
- id: "Group_30490_1_",
168
- transform: "translate(4.76 51.928)"
169
- }, /*#__PURE__*/React.createElement("g", {
170
- id: "Group_29262_1_"
171
- }, /*#__PURE__*/React.createElement("g", {
172
- id: "Group_29258_1_"
173
183
  }, /*#__PURE__*/React.createElement("path", {
174
- id: "Subtraction_13_1_",
175
- class: "st3",
176
- d: "M3-30.8L3-30.8v-3.3h-3.8v-11.5l3.2-3.2h12.2v9l-5.7,5.7H6.1L3-30.8L3-30.8z M5.8-37.9v2.2l2.1-2.3h2.7l2.5-2.5v-7H2.8v9.6H5.8z"
177
- }), /*#__PURE__*/React.createElement("g", {
178
- transform: "matrix(1, 0, 0, 1, -4.76, -51.93)"
179
- }, /*#__PURE__*/React.createElement("rect", {
180
- id: "Rectangle_2404-2_1_",
184
+ d: "M7.76-30.8L7.76-30.8v-3.3h-3.8v-11.5l3.2-3.2h12.2v9l-5.7,5.7H10.86L7.76-30.8L7.76-30.8z M10.56-37.9v2.2l2.1-2.3h2.7l2.5-2.5v-7H7.56v9.6H10.56z",
185
+ transform: "translate(0 52)"
186
+ }), /*#__PURE__*/React.createElement("rect", {
181
187
  x: "11.2",
182
188
  y: "6.6",
183
- class: "st3",
184
189
  width: "1.2",
185
190
  height: "3.7"
186
- })), /*#__PURE__*/React.createElement("g", {
187
- transform: "matrix(1, 0, 0, 1, -4.76, -51.93)"
188
- }, /*#__PURE__*/React.createElement("rect", {
189
- id: "Rectangle_2405-2_1_",
191
+ }), /*#__PURE__*/React.createElement("rect", {
190
192
  x: "14.7",
191
193
  y: "6.6",
192
- class: "st3",
193
194
  width: "1.2",
194
195
  height: "3.7"
195
- })))))));
196
+ }));
196
197
  };
197
- const BlerpyIcon = _ref10 => {
198
+ const BlerpyIcon = _ref11 => {
198
199
  let {
199
200
  sx
200
- } = _ref10;
201
+ } = _ref11;
201
202
  return /*#__PURE__*/React.createElement(SvgIcon, {
202
203
  sx: sx
203
- }, /*#__PURE__*/React.createElement("g", {
204
- xmlns: "http://www.w3.org/2000/svg",
205
- id: "Blerpy_1_"
206
204
  }, /*#__PURE__*/React.createElement("path", {
207
- id: "Path_16629",
208
- class: "st3",
209
- d: "M18,10.6c-0.4-1.9,1.3-3.3,0.2-4.8c-1.6-1.9-3.5,0.7-5.2-0.1c-1.1-0.5-2.3-2.2-4-1.6 S7.5,6.9,7,8c-0.9,1.7-4,0.9-4,3.4c0,1.8,2.2,1.8,3.2,3.5c1,1.7-1.2,3.8,0.7,5.4c2.4,2,4.8-2,6.9-2.8l0,0c2.1-0.8,6.5,0.8,7.1-2.3 C21.4,12.7,18.4,12.5,18,10.6z M12.7,14.3c-1.5,0.5-3.2-0.1-4.1-1.4c-0.2-0.3-0.1-0.6,0.1-0.8C8.7,12,8.8,12,8.9,12 c0.9-0.1,1.8-0.3,2.6-0.6c0.9-0.3,1.7-0.7,2.4-1.2c0.3-0.2,0.6-0.1,0.8,0.2c0.1,0.1,0.1,0.2,0.1,0.3C15.1,12.2,14.2,13.7,12.7,14.3 L12.7,14.3z"
210
- })));
205
+ d: "M18,10.6c-0.4-1.9,1.3-3.3,0.2-4.8c-1.6-1.9-3.5,0.7-5.2-0.1c-1.1-0.5-2.3-2.2-4-1.6S7.5,6.9,7,8c-0.9,1.7-4,0.9-4,3.4c0,1.8,2.2,1.8,3.2,3.5c1,1.7-1.2,3.8,0.7,5.4c2.4,2,4.8-2,6.9-2.8l0,0c2.1-0.8,6.5,0.8,7.1-2.3C21.4,12.7,18.4,12.5,18,10.6z M12.7,14.3c-1.5,0.5-3.2-0.1-4.1-1.4c-0.2-0.3-0.1-0.6,0.1-0.8C8.7,12,8.8,12,8.9,12c0.9-0.1,1.8-0.3,2.6-0.6c0.9-0.3,1.7-0.7,2.4-1.2c0.3-0.2,0.6-0.1,0.8,0.2c0.1,0.1,0.1,0.2,0.1,0.3C15.1,12.2,14.2,13.7,12.7,14.3L12.7,14.3z"
206
+ }));
211
207
  };
212
- const RadarDishIcon = _ref11 => {
208
+ const RadarDishIcon = _ref12 => {
213
209
  let {
214
210
  sx
215
- } = _ref11;
211
+ } = _ref12;
216
212
  return /*#__PURE__*/React.createElement(SvgIcon, {
217
213
  sx: sx
218
- }, /*#__PURE__*/React.createElement("g", {
219
- xmlns: "http://www.w3.org/2000/svg",
220
- id: "SharingOutput"
221
- }, /*#__PURE__*/React.createElement("g", null, /*#__PURE__*/React.createElement("path", {
222
- class: "st3",
223
- d: "M13.6,17.5c-2,1.2-4.6,0.8-6.2-0.8c-1.7-1.7-2-4.3-0.8-6.3C7,9.7,6.8,8.8,6.1,8.4C5.4,8,4.6,8.2,4.2,8.9 c-1.8,3.1-1.3,7.1,1.2,9.7C6.9,20.2,9,21,11,21c1.4,0,2.7-0.4,4-1.1c0.7-0.4,0.9-1.3,0.5-1.9C15.1,17.3,14.3,17.1,13.6,17.5z"
214
+ }, /*#__PURE__*/React.createElement("path", {
215
+ d: "M13.6,17.5c-2,1.2-4.6,0.8-6.2-0.8c-1.7-1.7-2-4.3-0.8-6.3C7,9.7,6.8,8.8,6.1,8.4C5.4,8,4.6,8.2,4.2,8.9c-1.8,3.1-1.3,7.1,1.2,9.7C6.9,20.2,9,21,11,21c1.4,0,2.7-0.4,4-1.1c0.7-0.4,0.9-1.3,0.5-1.9C15.1,17.3,14.3,17.1,13.6,17.5z"
224
216
  }), /*#__PURE__*/React.createElement("path", {
225
- class: "st3",
226
- d: "M9.1,15.6c0.2,0,0.4-0.1,0.5-0.2l2-2c0.5,0.1,1,0,1.3-0.3c0.6-0.6,0.6-1.4,0-2c-0.6-0.6-1.4-0.6-2,0 c-0.4,0.4-0.5,0.9-0.3,1.3l-2,2c-0.3,0.3-0.3,0.7,0,1C8.8,15.5,8.9,15.6,9.1,15.6z"
217
+ d: "M9.1,15.6c0.2,0,0.4-0.1,0.5-0.2l2-2c0.5,0.1,1,0,1.3-0.3c0.6-0.6,0.6-1.4,0-2c-0.6-0.6-1.4-0.6-2,0c-0.4,0.4-0.5,0.9-0.3,1.3l-2,2c-0.3,0.3-0.3,0.7,0,1C8.8,15.5,8.9,15.6,9.1,15.6z"
227
218
  }), /*#__PURE__*/React.createElement("path", {
228
- class: "st3",
229
- d: "M12.6,6.1C12.2,6.2,12,6.6,12,7c0.1,0.4,0.5,0.6,0.8,0.5c1-0.2,2,0.1,2.7,0.8c0.7,0.7,1,1.8,0.8,2.8 c-0.1,0.4,0.2,0.8,0.6,0.8c0,0,0.1,0,0.1,0c0.3,0,0.6-0.2,0.7-0.6c0.3-1.5-0.2-3-1.2-4C15.6,6.3,14.1,5.8,12.6,6.1z"
219
+ d: "M12.6,6.1C12.2,6.2,12,6.6,12,7c0.1,0.4,0.5,0.6,0.8,0.5c1-0.2,2,0.1,2.7,0.8c0.7,0.7,1,1.8,0.8,2.8c-0.1,0.4,0.2,0.8,0.6,0.8c0,0,0.1,0,0.1,0c0.3,0,0.6-0.2,0.7-0.6c0.3-1.5-0.2-3-1.2-4C15.6,6.3,14.1,5.8,12.6,6.1z"
230
220
  }), /*#__PURE__*/React.createElement("path", {
231
- class: "st3",
232
- d: "M19.1,4.9c-1.5-1.6-3.7-2.2-5.8-1.8c-0.4,0.1-0.6,0.4-0.6,0.8c0.1,0.4,0.5,0.6,0.8,0.6 c1.7-0.3,3.4,0.2,4.6,1.4c1.2,1.2,1.7,2.9,1.4,4.6c-0.1,0.4,0.2,0.8,0.6,0.8c0,0,0.1,0,0.1,0c0.3,0,0.6-0.2,0.7-0.6 C21.2,8.7,20.6,6.5,19.1,4.9z"
233
- }))));
221
+ d: "M19.1,4.9c-1.5-1.6-3.7-2.2-5.8-1.8c-0.4,0.1-0.6,0.4-0.6,0.8c0.1,0.4,0.5,0.6,0.8,0.6c1.7-0.3,3.4,0.2,4.6,1.4c1.2,1.2,1.7,2.9,1.4,4.6c-0.1,0.4,0.2,0.8,0.6,0.8c0,0,0.1,0,0.1,0c0.3,0,0.6-0.2,0.7-0.6C21.2,8.7,20.6,6.5,19.1,4.9z"
222
+ }));
234
223
  };
235
- const ChannelPointsIcon = _ref12 => {
224
+ const ChannelPointsIcon = _ref13 => {
236
225
  let {
237
226
  sx
238
- } = _ref12;
227
+ } = _ref13;
239
228
  return /*#__PURE__*/React.createElement(SvgIcon, {
240
229
  sx: sx
241
- }, /*#__PURE__*/React.createElement("g", {
242
- xmlns: "http://www.w3.org/2000/svg",
243
- id: "Channel_Points"
244
- }, /*#__PURE__*/React.createElement("g", {
245
- id: "Group_25892_1_"
246
- }, /*#__PURE__*/React.createElement("g", {
247
- id: "Ellipse_4998_1_"
248
- }, /*#__PURE__*/React.createElement("g", null, /*#__PURE__*/React.createElement("path", {
249
- class: "st3",
250
- d: "M12,21c-5,0-9-4-9-9c0-5,4-9,9-9s9,4,9,9C21,17,17,21,12,21z M12,5.2c-3.7,0-6.8,3-6.8,6.8 c0,3.7,3,6.8,6.8,6.8s6.7-3,6.7-6.8C18.7,8.3,15.7,5.2,12,5.2z"
251
- }))), /*#__PURE__*/React.createElement("g", {
252
- id: "Path_15683_1_"
253
230
  }, /*#__PURE__*/React.createElement("path", {
254
- class: "st3",
255
- d: "M16.6,11.3l-2.2,0c0-0.5-0.1-0.9-0.4-1.1c-0.4-0.4-1-0.4-1.3-0.4c0,0,0,0,0,0l0-2.2c0,0,0,0,0,0 c1.2,0,2.2,0.4,2.9,1.1C16.1,9,16.7,9.9,16.6,11.3z"
256
- })))));
231
+ d: "M12,21c-5,0-9-4-9-9c0-5,4-9,9-9s9,4,9,9C21,17,17,21,12,21z M12,5.2c-3.7,0-6.8,3-6.8,6.8c0,3.7,3,6.8,6.8,6.8s6.7-3,6.7-6.8C18.7,8.3,15.7,5.2,12,5.2z"
232
+ }), /*#__PURE__*/React.createElement("path", {
233
+ d: "M16.6,11.3l-2.2,0c0-0.5-0.1-0.9-0.4-1.1c-0.4-0.4-1-0.4-1.3-0.4c0,0,0,0,0,0l0-2.2c0,0,0,0,0,0c1.2,0,2.2,0.4,2.9,1.1C16.1,9,16.7,9.9,16.6,11.3z"
234
+ }));
257
235
  };
258
- const GiftIcon = _ref13 => {
236
+ const GiftIcon = _ref14 => {
259
237
  let {
260
238
  sx
261
- } = _ref13;
239
+ } = _ref14;
262
240
  return /*#__PURE__*/React.createElement(SvgIcon, {
263
241
  sx: sx
264
242
  }, /*#__PURE__*/React.createElement("path", {
265
- xmlns: "http://www.w3.org/2000/svg",
266
- class: "st3",
267
- d: "M19.4,7.7h-2c0.2-0.4,0.4-0.8,0.4-1.3c0-1.3-1.1-2.4-2.4-2.4c-1.8,0-2.8,1.4-3.3,2.5C11.5,5.4,10.4,4,8.7,4 C7.3,4,6.2,5.1,6.2,6.4c0,0.5,0.1,0.9,0.4,1.3h-2C4.3,7.7,4,8,4,8.3V12c0,0.3,0.3,0.6,0.6,0.6h0.9v6.9c0,0.3,0.3,0.6,0.6,0.6h11.9 c0.3,0,0.6-0.3,0.6-0.6v-6.9h0.9c0.3,0,0.6-0.3,0.6-0.6V8.3C20,8,19.7,7.7,19.4,7.7z M15.3,5.1c0.7,0,1.3,0.6,1.3,1.3 s-0.6,1.3-1.3,1.3h-2.6C13.1,6.8,13.9,5.1,15.3,5.1z M7.4,6.4c0-0.7,0.6-1.3,1.3-1.3c1.5,0,2.3,1.6,2.6,2.6H8.7 C7.9,7.7,7.4,7.1,7.4,6.4z M5.1,8.9h3.5h2.8v2.6H5.1V8.9z M6.6,12.6h4.8v6.3H6.6V12.6z M17.4,18.9h-4.8v-6.3h4.8V18.9z M18.9,11.4 h-6.3V8.9h2.8h3.5V11.4z"
243
+ d: "M19.4,7.7h-2c0.2-0.4,0.4-0.8,0.4-1.3c0-1.3-1.1-2.4-2.4-2.4c-1.8,0-2.8,1.4-3.3,2.5C11.5,5.4,10.4,4,8.7,4C7.3,4,6.2,5.1,6.2,6.4c0,0.5,0.1,0.9,0.4,1.3h-2C4.3,7.7,4,8,4,8.3V12c0,0.3,0.3,0.6,0.6,0.6h0.9v6.9c0,0.3,0.3,0.6,0.6,0.6h11.9c0.3,0,0.6-0.3,0.6-0.6v-6.9h0.9c0.3,0,0.6-0.3,0.6-0.6V8.3C20,8,19.7,7.7,19.4,7.7z M15.3,5.1c0.7,0,1.3,0.6,1.3,1.3s-0.6,1.3-1.3,1.3h-2.6C13.1,6.8,13.9,5.1,15.3,5.1z M7.4,6.4c0-0.7,0.6-1.3,1.3-1.3c1.5,0,2.3,1.6,2.6,2.6H8.7C7.9,7.7,7.4,7.1,7.4,6.4z M5.1,8.9h3.5h2.8v2.6H5.1V8.9z M6.6,12.6h4.8v6.3H6.6V12.6z M17.4,18.9h-4.8v-6.3h4.8V18.9z M18.9,11.4h-6.3V8.9h2.8h3.5V11.4z"
268
244
  }));
269
245
  };
270
- const WalkonIcon = _ref14 => {
246
+ const WalkonIcon = _ref15 => {
271
247
  let {
272
248
  sx
273
- } = _ref14;
249
+ } = _ref15;
274
250
  return /*#__PURE__*/React.createElement(SvgIcon, {
275
251
  sx: sx
276
- }, /*#__PURE__*/React.createElement("g", {
277
- xmlns: "http://www.w3.org/2000/svg",
278
- id: "WalkOn"
279
252
  }, /*#__PURE__*/React.createElement("path", {
280
- id: "Icon_metro-steps_1_",
281
- class: "st3",
282
- d: "M8.5,3C7.1,3,6,5,6,7.5c0.1,1.7,0.3,3.4,0.6,5.1c0.3,1.8,0.9,3.2,1.9,3.2 s1.8-1,1.8-2.8c0-0.6-0.5-1.6-0.5-2.4c0-1.5,0.9-2.1,0.9-3.5C10.8,4.7,10,3,8.5,3L8.5,3z M15.5,8.1c-1.4,0-2.2,1.7-2.2,4.2 c0,1.4,1,2,0.9,3.5c0,0.8-0.5,1.8-0.5,2.4c0,1.8,0.7,2.8,1.8,2.8s1.7-1.5,1.9-3.2c0.3-1.7,0.5-3.4,0.6-5.1 C18,10.2,16.9,8.1,15.5,8.1L15.5,8.1z"
283
- })));
253
+ d: "M8.5,3C7.1,3,6,5,6,7.5c0.1,1.7,0.3,3.4,0.6,5.1c0.3,1.8,0.9,3.2,1.9,3.2s1.8-1,1.8-2.8c0-0.6-0.5-1.6-0.5-2.4c0-1.5,0.9-2.1,0.9-3.5C10.8,4.7,10,3,8.5,3L8.5,3z M15.5,8.1c-1.4,0-2.2,1.7-2.2,4.2c0,1.4,1,2,0.9,3.5c0,0.8-0.5,1.8-0.5,2.4c0,1.8,0.7,2.8,1.8,2.8s1.7-1.5,1.9-3.2c0.3-1.7,0.5-3.4,0.6-5.1C18,10.2,16.9,8.1,15.5,8.1L15.5,8.1z"
254
+ }));
284
255
  };
285
- const PointerFingerIcon = _ref15 => {
256
+ const PointerFingerIcon = _ref16 => {
286
257
  let {
287
258
  sx
288
- } = _ref15;
259
+ } = _ref16;
289
260
  return /*#__PURE__*/React.createElement(SvgIcon, {
290
261
  sx: sx
291
- }, /*#__PURE__*/React.createElement("g", {
292
- xmlns: "http://www.w3.org/2000/svg",
293
- id: "Suggest"
294
- }, /*#__PURE__*/React.createElement("g", null, /*#__PURE__*/React.createElement("path", {
295
- class: "st3",
296
- d: "M17.1,12.8c-0.6,0-1,0.5-1,1.1h-0.2v-0.6c0,0,0-0.1,0-0.1c0-0.6-0.5-1-1.1-1c-0.6,0-1,0.5-1,1.1v0.6h-0.2 c0,0,0-1.1,0-1.2c0-0.6-0.5-1-1.1-1c-0.6,0-1,0.5-1,1.1v1.1h-0.2V8.5c0,0,0,0,0,0c0-0.6-0.4-1-1-1.1c-0.6,0-1,0.5-1,1.1v7.3 l-0.8-1.1c0,0,0,0,0-0.1c-0.3-0.4-0.9-0.5-1.4-0.2c-0.5,0.4-0.6,1-0.2,1.5l3.2,4.6c0.2,0.3,0.5,0.4,0.8,0.4h5.2 c0.5,0,0.9-0.3,1-0.8l0.8-3.6c0-0.1,0-0.2,0-0.2v-2.5v0c0,0,0-0.1,0-0.1C18.1,13.2,17.6,12.7,17.1,12.8z"
262
+ }, /*#__PURE__*/React.createElement("path", {
263
+ d: "M17.1,12.8c-0.6,0-1,0.5-1,1.1h-0.2v-0.6c0,0,0-0.1,0-0.1c0-0.6-0.5-1-1.1-1c-0.6,0-1,0.5-1,1.1v0.6h-0.2c0,0,0-1.1,0-1.2c0-0.6-0.5-1-1.1-1c-0.6,0-1,0.5-1,1.1v1.1h-0.2V8.5c0,0,0,0,0,0c0-0.6-0.4-1-1-1.1c-0.6,0-1,0.5-1,1.1v7.3l-0.8-1.1c0,0,0,0,0-0.1c-0.3-0.4-0.9-0.5-1.4-0.2c-0.5,0.4-0.6,1-0.2,1.5l3.2,4.6c0.2,0.3,0.5,0.4,0.8,0.4h5.2c0.5,0,0.9-0.3,1-0.8l0.8-3.6c0-0.1,0-0.2,0-0.2v-2.5v0c0,0,0-0.1,0-0.1C18.1,13.2,17.6,12.7,17.1,12.8z"
297
264
  }), /*#__PURE__*/React.createElement("path", {
298
- class: "st3",
299
- d: "M12.3,8.4c0,0.2,0.2,0.4,0.4,0.4h1.9c0.2,0,0.4-0.2,0.4-0.4c0-0.2-0.2-0.4-0.4-0.4h-1.9 C12.5,8,12.3,8.2,12.3,8.4z"
265
+ d: "M12.3,8.4c0,0.2,0.2,0.4,0.4,0.4h1.9c0.2,0,0.4-0.2,0.4-0.4c0-0.2-0.2-0.4-0.4-0.4h-1.9C12.5,8,12.3,8.2,12.3,8.4z"
300
266
  }), /*#__PURE__*/React.createElement("path", {
301
- class: "st3",
302
- d: "M12.4,7.1c0.1,0,0.2,0,0.2-0.1l1.6-1.4c0.1-0.1,0.2-0.4,0-0.5c-0.1-0.1-0.4-0.2-0.5,0l-1.6,1.4 c-0.1,0.1-0.2,0.4,0,0.5C12.2,7.1,12.3,7.1,12.4,7.1z"
267
+ d: "M12.4,7.1c0.1,0,0.2,0,0.2-0.1l1.6-1.4c0.1-0.1,0.2-0.4,0-0.5c-0.1-0.1-0.4-0.2-0.5,0l-1.6,1.4c-0.1,0.1-0.2,0.4,0,0.5C12.2,7.1,12.3,7.1,12.4,7.1z"
303
268
  }), /*#__PURE__*/React.createElement("path", {
304
- class: "st3",
305
- d: "M10.5,6.1c0.2,0,0.4-0.2,0.4-0.4V3.4c0-0.2-0.2-0.4-0.4-0.4c-0.2,0-0.4,0.2-0.4,0.4v2.4 C10.2,5.9,10.3,6.1,10.5,6.1z"
269
+ d: "M10.5,6.1c0.2,0,0.4-0.2,0.4-0.4V3.4c0-0.2-0.2-0.4-0.4-0.4c-0.2,0-0.4,0.2-0.4,0.4v2.4C10.2,5.9,10.3,6.1,10.5,6.1z"
306
270
  }), /*#__PURE__*/React.createElement("path", {
307
- class: "st3",
308
271
  d: "M8.5,8.4C8.5,8.2,8.3,8,8.2,8H6.2C6,8,5.9,8.2,5.9,8.4c0,0.2,0.2,0.4,0.4,0.4h1.9C8.3,8.7,8.5,8.6,8.5,8.4z"
309
272
  }), /*#__PURE__*/React.createElement("path", {
310
- class: "st3",
311
- d: "M8.1,7c0.1,0.1,0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.3-0.1c0.1-0.1,0.1-0.4,0-0.5L7,5.1C6.8,4.9,6.6,5,6.5,5.1 c-0.1,0.1-0.1,0.4,0,0.5L8.1,7z"
312
- }))));
313
- };
314
- const UnsafeIcon = _ref16 => {
315
- let {
316
- sx
317
- } = _ref16;
318
- return /*#__PURE__*/React.createElement(SvgIcon, {
319
- sx: sx
320
- }, /*#__PURE__*/React.createElement("g", {
321
- xmlns: "http://www.w3.org/2000/svg",
322
- id: "Unsafe"
323
- }, /*#__PURE__*/React.createElement("g", {
324
- id: "Group_30027",
325
- transform: "translate(0.001)"
326
- }, /*#__PURE__*/React.createElement("path", {
327
- id: "Subtraction_1057",
328
- class: "st3",
329
- d: "M12,21c-1.2-0.5-2.2-1.2-3.2-2c-1.5-1-2.7-2.3-3.7-3.8c-0.6-1.6-1-3.3-1-5 c-0.2-1.5,0-3,0.4-4.4C5.2,4.2,11.3,3,12,3c0.8,0,6.6,1.3,7.6,2.8s0.3,7.1-0.9,9.4c-1,1.5-2.2,2.7-3.6,3.8 C14.2,19.8,13.1,20.5,12,21z M11.8,12L11.8,12l2.4,2.3c0.1,0.1,0.3,0.2,0.4,0.2c0.2,0,0.3-0.1,0.4-0.2c0.1-0.1,0.2-0.3,0.2-0.4 c0-0.2-0.1-0.3-0.2-0.4l-2.4-2.3l2.4-2.3c0.1-0.1,0.2-0.3,0.2-0.4c0-0.2-0.1-0.3-0.2-0.4C15,8,14.8,7.9,14.6,7.9 c-0.2,0-0.3,0.1-0.4,0.2l-2.4,2.3L9.5,8.2C9.4,8.1,9.2,8,9.1,8C8.9,8,8.7,8.1,8.6,8.2C8.5,8.3,8.4,8.5,8.4,8.6 c0,0.2,0.1,0.3,0.2,0.4l2.3,2.2l-2.3,2.2c-0.1,0.1-0.2,0.3-0.2,0.4c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.2,0.4,0.2 c0.2,0,0.3-0.1,0.4-0.2L11.8,12L11.8,12z"
330
- }))));
273
+ d: "M8.1,7c0.1,0.1,0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.3-0.1c0.1-0.1,0.1-0.4,0-0.5L7,5.1C6.8,4.9,6.6,5,6.5,5.1c-0.1,0.1-0.1,0.4,0,0.5L8.1,7z"
274
+ }));
331
275
  };
332
- const DiscordIcon = _ref17 => {
276
+ const UnsafeIcon = _ref17 => {
333
277
  let {
334
278
  sx
335
279
  } = _ref17;
336
280
  return /*#__PURE__*/React.createElement(SvgIcon, {
337
281
  sx: sx
338
- }, /*#__PURE__*/React.createElement("g", {
339
- xmlns: "http://www.w3.org/2000/svg",
340
- id: "Discord"
341
- }, /*#__PURE__*/React.createElement("g", {
342
- id: "Discord_logo",
343
- transform: "translate(-733.648 -925.604)"
344
282
  }, /*#__PURE__*/React.createElement("path", {
345
- id: "Path_4058",
346
- class: "st3",
347
- d: "M743.7,935.3c-0.5,0-0.9,0.5-0.9,1.1c0,0.5,0.5,0.9,1.1,0.9c0.5,0,0.9-0.5,0.9-1 C744.8,935.7,744.3,935.3,743.7,935.3C743.8,935.3,743.7,935.3,743.7,935.3z M747.6,935.3c-0.5,0-0.9,0.5-0.9,1.1 c0,0.5,0.5,0.9,1.1,0.9c0.5,0,0.9-0.5,0.9-1C748.6,935.7,748.1,935.3,747.6,935.3C747.6,935.3,747.6,935.3,747.6,935.3z"
348
- }), /*#__PURE__*/React.createElement("path", {
349
- id: "Discord_logo-2",
350
- class: "st3",
351
- d: "M751.7,928.6h-12.1c-1,0-1.8,0.8-1.8,1.9c0,0,0,0,0,0v12.2c0,1,0.8,1.9,1.8,1.9 c0,0,0,0,0,0h10.2l-0.5-1.7l1.2,1.1l1.1,1l1.9,1.7v-16.1C753.5,929.4,752.7,928.6,751.7,928.6 C751.7,928.6,751.7,928.6,751.7,928.6z M748.2,940.4c0,0-0.3-0.4-0.6-0.7c0.7-0.2,1.2-0.5,1.6-1.1c-0.3,0.2-0.7,0.4-1,0.5 c-0.4,0.2-0.9,0.3-1.3,0.4c-0.8,0.1-1.6,0.1-2.3,0c-0.5-0.1-0.9-0.2-1.3-0.4c-0.2-0.1-0.4-0.2-0.7-0.3c0,0-0.1,0-0.1,0 c0,0,0,0,0,0c-0.2-0.1-0.3-0.2-0.3-0.2c0.4,0.5,0.9,0.9,1.6,1.1c-0.3,0.3-0.6,0.7-0.6,0.7c-1.1,0-2.1-0.5-2.7-1.4 c0-1.8,0.5-3.6,1.3-5.2c0.7-0.6,1.6-0.9,2.5-0.9l0.1,0.1c-0.9,0.2-1.7,0.6-2.4,1.2c0,0,0.2-0.1,0.5-0.3c0.6-0.3,1.3-0.5,2-0.6 c0.1,0,0.1,0,0.2,0c0.6-0.1,1.2-0.1,1.8,0c1,0.1,1.9,0.4,2.7,0.9c-0.7-0.5-1.4-0.9-2.2-1.1l0.1-0.1c0.9,0,1.8,0.4,2.5,0.9 c0.8,1.6,1.3,3.4,1.3,5.2C750.3,939.9,749.3,940.4,748.2,940.4z"
352
- }))));
283
+ d: "M12,21c-1.2-0.5-2.2-1.2-3.2-2c-1.5-1-2.7-2.3-3.7-3.8c-0.6-1.6-1-3.3-1-5c-0.2-1.5,0-3,0.4-4.4C5.2,4.2,11.3,3,12,3c0.8,0,6.6,1.3,7.6,2.8s0.3,7.1-0.9,9.4c-1,1.5-2.2,2.7-3.6,3.8C14.2,19.8,13.1,20.5,12,21z M11.8,12L11.8,12l2.4,2.3c0.1,0.1,0.3,0.2,0.4,0.2c0.2,0,0.3-0.1,0.4-0.2c0.1-0.1,0.2-0.3,0.2-0.4c0-0.2-0.1-0.3-0.2-0.4l-2.4-2.3l2.4-2.3c0.1-0.1,0.2-0.3,0.2-0.4c0-0.2-0.1-0.3-0.2-0.4C15,8,14.8,7.9,14.6,7.9c-0.2,0-0.3,0.1-0.4,0.2l-2.4,2.3L9.5,8.2C9.4,8.1,9.2,8,9.1,8C8.9,8,8.7,8.1,8.6,8.2C8.5,8.3,8.4,8.5,8.4,8.6c0,0.2,0.1,0.3,0.2,0.4l2.3,2.2l-2.3,2.2c-0.1,0.1-0.2,0.3-0.2,0.4c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.2,0.4,0.2c0.2,0,0.3-0.1,0.4-0.2L11.8,12L11.8,12z"
284
+ }));
353
285
  };
354
- const NewDiscordIcon = _ref18 => {
286
+ const DiscordIcon = _ref18 => {
355
287
  let {
356
288
  sx
357
289
  } = _ref18;
358
290
  return /*#__PURE__*/React.createElement(SvgIcon, {
359
291
  sx: sx
360
- }, /*#__PURE__*/React.createElement("svg", {
361
- width: "24",
362
- height: "20",
363
- viewBox: "0 0 28 20",
364
- fill: "none",
365
- xmlns: "http://www.w3.org/2000/svg"
366
- }, /*#__PURE__*/React.createElement("g", {
367
- "clip-path": "url(#clip0_2134_147978)"
368
292
  }, /*#__PURE__*/React.createElement("path", {
369
- "fill-rule": "evenodd",
370
- "clip-rule": "evenodd",
371
- d: "M20.6554 19.3905C20.6559 19.3911 20.6561 19.3913 20.6561 19.3913L20.6553 19.3905C20.6553 19.3905 20.6554 19.3905 20.6554 19.3905ZM19.1066 17.5645C19.8014 18.4255 20.6282 19.3597 20.6554 19.3905C22.0541 19.4493 23.4466 19.1791 24.7117 18.6034C25.9769 18.0277 27.0763 17.164 27.9143 16.0874C27.8282 11.5196 26.659 7.03072 24.4953 2.96158C22.6098 1.53278 20.3055 0.706747 17.9058 0.599472L17.5867 0.960263C19.7209 1.50698 21.7108 2.48004 23.4262 3.81579C21.2438 2.65525 18.8476 1.91231 16.3703 1.62816C14.7954 1.45169 13.2045 1.45169 11.6297 1.62816C11.4949 1.63018 11.3608 1.64848 11.2308 1.68263C9.38994 1.87717 7.59342 2.35346 5.9095 3.09342C5.04346 3.47631 4.53107 3.74947 4.53107 3.74947C6.33579 2.34135 8.44201 1.3329 10.6995 0.796052L10.4601 0.533157C8.06156 0.64131 5.75843 1.46759 3.87393 2.89605C1.71294 6.96614 0.543848 11.4544 0.45498 16.0218C1.26338 17.1099 2.33746 17.991 3.58309 18.5879C4.82871 19.1849 6.20786 19.4794 7.59965 19.4458C7.59965 19.4458 8.47721 18.4289 9.17218 17.5755C7.52371 17.1756 6.07261 16.2354 5.06978 14.9174C5.28144 15.0568 5.50111 15.1846 5.72774 15.3003C5.75383 15.3272 5.78475 15.3494 5.81903 15.3658L6.03534 15.4858C6.58786 15.775 7.15866 16.0307 7.7444 16.2516C8.85354 16.6649 9.99732 16.9869 11.1633 17.2139C13.1703 17.5773 15.2303 17.5773 17.2372 17.2139C18.4122 17.023 19.5598 16.7 20.6561 16.2516C21.6071 15.8947 22.5132 15.436 23.3571 14.8842C22.3149 16.2318 20.809 17.1814 19.1066 17.5645ZM8.02553 9.66743C8.47792 9.20332 9.09718 8.92164 9.75785 8.87945C10.0859 8.89025 10.4085 8.96364 10.7068 9.09535C11.005 9.22706 11.2729 9.41445 11.4949 9.64659C11.7169 9.87873 11.8886 10.151 11.9998 10.4474C12.1111 10.7439 12.1598 11.0587 12.143 11.3734C12.1583 11.6883 12.1088 12.0031 11.9971 12.2996C11.8854 12.5961 11.7139 12.8686 11.4923 13.1013C11.2707 13.334 11.0034 13.5225 10.7058 13.6558C10.4081 13.7892 10.086 13.8648 9.75785 13.8784C9.09718 13.8362 8.47792 13.5545 8.02553 13.0904C7.57314 12.6263 7.32145 12.0145 7.32145 11.3789C7.32145 10.7433 7.57314 10.1315 8.02553 9.66743ZM16.5832 9.66743C17.0356 9.20332 17.6548 8.92164 18.3155 8.87945H18.3196C18.9796 8.90794 19.6008 9.18647 20.0472 9.65398C20.4935 10.1215 20.7285 10.7398 20.7006 11.3734C20.716 11.6883 20.6664 12.0031 20.5547 12.2996C20.4431 12.5961 20.2715 12.8686 20.0499 13.1013C19.8284 13.334 19.5611 13.5225 19.2634 13.6558C18.9658 13.7892 18.6437 13.8648 18.3155 13.8784C17.6548 13.8362 17.0356 13.5545 16.5832 13.0904C16.1308 12.6263 15.8791 12.0145 15.8791 11.3789C15.8791 10.7433 16.1308 10.1315 16.5832 9.66743Z",
372
- fill: "#252525"
373
- })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
374
- id: "clip0_2134_147978"
375
- }, /*#__PURE__*/React.createElement("rect", {
376
- width: "28",
377
- height: "20",
378
- fill: "white"
379
- })))));
293
+ d: "M10.7,11.3c-0.5,0-0.9,0.5-0.9,1.1c0,0.5,0.5,0.9,1.1,0.9c0.5,0,0.9-0.5,0.9-1C11.8,11.7,11.3,11.3,10.7,11.3C10.8,11.3,10.7,11.3,10.7,11.3z M14.6,11.3c-0.5,0-0.9,0.5-0.9,1.1c0,0.5,0.5,0.9,1.1,0.9c0.5,0,0.9-0.5,0.9-1C15.6,11.7,15.1,11.3,14.6,11.3C14.6,11.3,14.6,11.3,14.6,11.3z"
294
+ }), /*#__PURE__*/React.createElement("path", {
295
+ d: "M18.7,4.6h-12.1c-1,0-1.8,0.8-1.8,1.9c0,0,0,0,0,0v12.2c0,1,0.8,1.9,1.8,1.9c0,0,0,0,0,0h10.2l-0.5-1.7l1.2,1.1l1.1,1l1.9,1.7v-16.1C20.5,5.4,19.7,4.6,18.7,4.6C18.7,4.6,18.7,4.6,18.7,4.6z M15.2,16.4c0,0-0.3-0.4-0.6-0.7c0.7-0.2,1.2-0.5,1.6-1.1c-0.3,0.2-0.7,0.4-1,0.5c-0.4,0.2-0.9,0.3-1.3,0.4c-0.8,0.1-1.6,0.1-2.3,0c-0.5-0.1-0.9-0.2-1.3-0.4c-0.2-0.1-0.4-0.2-0.7-0.3c0,0-0.1,0-0.1,0c0,0,0,0,0,0c-0.2-0.1-0.3-0.2-0.3-0.2c0.4,0.5,0.9,0.9,1.6,1.1c-0.3,0.3-0.6,0.7-0.6,0.7c-1.1,0-2.1-0.5-2.7-1.4c0-1.8,0.5-3.6,1.3-5.2c0.7-0.6,1.6-0.9,2.5-0.9l0.1,0.1c-0.9,0.2-1.7,0.6-2.4,1.2c0,0,0.2-0.1,0.5-0.3c0.6-0.3,1.3-0.5,2-0.6c0.1,0,0.1,0,0.2,0c0.6-0.1,1.2-0.1,1.8,0c1,0.1,1.9,0.4,2.7,0.9c-0.7-0.5-1.4-0.9-2.2-1.1l0.1-0.1c0.9,0,1.8,0.4,2.5,0.9c0.8,1.6,1.3,3.4,1.3,5.2C17.3,15.9,16.3,16.4,15.2,16.4z"
296
+ }));
380
297
  };
381
- const BookmarkAddRounded = _ref19 => {
298
+ const NewDiscordIcon = _ref19 => {
382
299
  let {
383
300
  sx
384
301
  } = _ref19;
385
302
  return /*#__PURE__*/React.createElement(SvgIcon, {
386
- sx: sx
387
- }, /*#__PURE__*/React.createElement("g", {
388
- xmlns: "http://www.w3.org/2000/svg",
389
- id: "bookmark_add"
390
- }, /*#__PURE__*/React.createElement("g", {
391
- id: "Bookmarkopen-StarlingPurple",
392
- transform: "translate(0.75)"
393
- }, /*#__PURE__*/React.createElement("path", {
394
- id: "Union_1",
395
- class: "st7",
396
- d: "M13.8,9.7V8.6h-1.1c-0.4,0-0.7-0.3-0.7-0.7c0-0.4,0.3-0.7,0.7-0.7c0,0,0,0,0,0h1.1V6.1 c0-0.4,0.4-0.7,0.8-0.7c0.4,0,0.7,0.3,0.7,0.7v1.1h1.1c0.4,0,0.7,0.3,0.7,0.7s-0.3,0.7-0.7,0.7c0,0,0,0,0,0h-1.1v1.1 c0,0.4-0.4,0.7-0.8,0.7C14.1,10.4,13.8,10.1,13.8,9.7z"
397
- }), /*#__PURE__*/React.createElement("g", {
398
- id: "Path_16725"
303
+ sx: sx,
304
+ viewBox: "0 0 28 20"
399
305
  }, /*#__PURE__*/React.createElement("path", {
400
- class: "st7",
401
- d: "M14.2,18.6c-0.6,0-1.3-0.5-1.7-0.8l-2.1-1.5l-2.7,1.9c-0.3,0.3-0.8,0.4-1.3,0.3c-0.7-0.2-1-0.8-1-1.3 l0.1-8.2C5.5,8.5,5.7,8,6,7.6c0.5-0.4,1-0.7,1.6-0.7l3.4,0v1.5H7.6c-0.2,0-0.4,0.1-0.6,0.3C7,8.7,7,8.9,7,9.1L6.9,17l3.5-2.5 l3,2.2c0.2,0.1,0.3,0.2,0.5,0.3c0,0,0,0,0,0l0-5.3h1.5v5.3c0,0.6-0.2,1.5-1,1.7C14.3,18.6,14.2,18.6,14.2,18.6z"
402
- })))));
306
+ fillRule: "evenodd",
307
+ clipRule: "evenodd",
308
+ d: "M20.6554 19.3905C20.6559 19.3911 20.6561 19.3913 20.6561 19.3913L20.6553 19.3905C20.6553 19.3905 20.6554 19.3905 20.6554 19.3905ZM19.1066 17.5645C19.8014 18.4255 20.6282 19.3597 20.6554 19.3905C22.0541 19.4493 23.4466 19.1791 24.7117 18.6034C25.9769 18.0277 27.0763 17.164 27.9143 16.0874C27.8282 11.5196 26.659 7.03072 24.4953 2.96158C22.6098 1.53278 20.3055 0.706747 17.9058 0.599472L17.5867 0.960263C19.7209 1.50698 21.7108 2.48004 23.4262 3.81579C21.2438 2.65525 18.8476 1.91231 16.3703 1.62816C14.7954 1.45169 13.2045 1.45169 11.6297 1.62816C11.4949 1.63018 11.3608 1.64848 11.2308 1.68263C9.38994 1.87717 7.59342 2.35346 5.9095 3.09342C5.04346 3.47631 4.53107 3.74947 4.53107 3.74947C6.33579 2.34135 8.44201 1.3329 10.6995 0.796052L10.4601 0.533157C8.06156 0.64131 5.75843 1.46759 3.87393 2.89605C1.71294 6.96614 0.543848 11.4544 0.45498 16.0218C1.26338 17.1099 2.33746 17.991 3.58309 18.5879C4.82871 19.1849 6.20786 19.4794 7.59965 19.4458C7.59965 19.4458 8.47721 18.4289 9.17218 17.5755C7.52371 17.1756 6.07261 16.2354 5.06978 14.9174C5.28144 15.0568 5.50111 15.1846 5.72774 15.3003C5.75383 15.3272 5.78475 15.3494 5.81903 15.3658L6.03534 15.4858C6.58786 15.775 7.15866 16.0307 7.7444 16.2516C8.85354 16.6649 9.99732 16.9869 11.1633 17.2139C13.1703 17.5773 15.2303 17.5773 17.2372 17.2139C18.4122 17.023 19.5598 16.7 20.6561 16.2516C21.6071 15.8947 22.5132 15.436 23.3571 14.8842C22.3149 16.2318 20.809 17.1814 19.1066 17.5645ZM8.02553 9.66743C8.47792 9.20332 9.09718 8.92164 9.75785 8.87945C10.0859 8.89025 10.4085 8.96364 10.7068 9.09535C11.005 9.22706 11.2729 9.41445 11.4949 9.64659C11.7169 9.87873 11.8886 10.151 11.9998 10.4474C12.1111 10.7439 12.1598 11.0587 12.143 11.3734C12.1583 11.6883 12.1088 12.0031 11.9971 12.2996C11.8854 12.5961 11.7139 12.8686 11.4923 13.1013C11.2707 13.334 11.0034 13.5225 10.7058 13.6558C10.4081 13.7892 10.086 13.8648 9.75785 13.8784C9.09718 13.8362 8.47792 13.5545 8.02553 13.0904C7.57314 12.6263 7.32145 12.0145 7.32145 11.3789C7.32145 10.7433 7.57314 10.1315 8.02553 9.66743ZM16.5832 9.66743C17.0356 9.20332 17.6548 8.92164 18.3155 8.87945H18.3196C18.9796 8.90794 19.6008 9.18647 20.0472 9.65398C20.4935 10.1215 20.7285 10.7398 20.7006 11.3734C20.716 11.6883 20.6664 12.0031 20.5547 12.2996C20.4431 12.5961 20.2715 12.8686 20.0499 13.1013C19.8284 13.334 19.5611 13.5225 19.2634 13.6558C18.9658 13.7892 18.6437 13.8648 18.3155 13.8784C17.6548 13.8362 17.0356 13.5545 16.5832 13.0904C16.1308 12.6263 15.8791 12.0145 15.8791 11.3789C15.8791 10.7433 16.1308 10.1315 16.5832 9.66743Z"
309
+ }));
403
310
  };
404
- const DiamondIcon = _ref20 => {
311
+ const BookmarkAddRounded = _ref20 => {
405
312
  let {
406
313
  sx
407
314
  } = _ref20;
408
315
  return /*#__PURE__*/React.createElement(SvgIcon, {
409
316
  sx: sx
410
- }, /*#__PURE__*/React.createElement("g", {
411
- xmlns: "http://www.w3.org/2000/svg",
412
- id: "Group_32567",
413
- transform: "translate(-10106.58 -641)"
414
317
  }, /*#__PURE__*/React.createElement("path", {
415
- id: "Subtraction_1462",
416
- class: "st0",
417
- d: "M10118.5,660.2c-0.3,0-0.7-0.1-0.9-0.2l-7.5-7.4c-0.7-0.6-0.7-1.5-0.3-2.2l2.5-3.4 c0.6-0.7,1.5-1.1,2.4-1.1h7.7c0.9-0.1,1.8,0.3,2.4,1.1l2.6,3.5c0.4,0.7,0.2,1.6-0.4,2.1l-7.5,7.4 C10119.2,660.1,10118.8,660.2,10118.5,660.2z M10122.7,648.6c-0.1,0-0.2,0.1-0.2,0.2c0,0.2,0.2,0.5,0.4,0.7 c0.3,0.4,0.5,0.9,0.5,1.4c0,0.2-0.1,0.6-0.2,0.7c-0.4,0.7-1,1.4-1.6,2c-0.8,0.9-1.7,1.7-1.5,1.9l0.2,0.2c0.6,0,3.2-3.2,3.2-3.2 c0.3-0.4,0.5-0.8,0.6-1.3c-0.1-0.7-0.3-1.2-0.7-1.8C10123.3,649.2,10122.9,648.6,10122.7,648.6L10122.7,648.6z"
418
- })));
318
+ d: "M13.8,9.7V8.6h-1.1c-0.4,0-0.7-0.3-0.7-0.7c0-0.4,0.3-0.7,0.7-0.7c0,0,0,0,0,0h1.1V6.1c0-0.4,0.4-0.7,0.8-0.7c0.4,0,0.7,0.3,0.7,0.7v1.1h1.1c0.4,0,0.7,0.3,0.7,0.7s-0.3,0.7-0.7,0.7c0,0,0,0,0,0h-1.1v1.1c0,0.4-0.4,0.7-0.8,0.7C14.1,10.4,13.8,10.1,13.8,9.7z"
319
+ }), /*#__PURE__*/React.createElement("path", {
320
+ d: "M14.2,18.6c-0.6,0-1.3-0.5-1.7-0.8l-2.1-1.5l-2.7,1.9c-0.3,0.3-0.8,0.4-1.3,0.3c-0.7-0.2-1-0.8-1-1.3l0.1-8.2C5.5,8.5,5.7,8,6,7.6c0.5-0.4,1-0.7,1.6-0.7l3.4,0v1.5H7.6c-0.2,0-0.4,0.1-0.6,0.3C7,8.7,7,8.9,7,9.1L6.9,17l3.5-2.5l3,2.2c0.2,0.1,0.3,0.2,0.5,0.3c0,0,0,0,0,0l0-5.3h1.5v5.3c0,0.6-0.2,1.5-1,1.7C14.3,18.6,14.2,18.6,14.2,18.6z"
321
+ }));
419
322
  };
420
- const BlerpCardIcon = _ref21 => {
323
+ const DiamondIcon = _ref21 => {
421
324
  let {
422
325
  sx
423
326
  } = _ref21;
424
327
  return /*#__PURE__*/React.createElement(SvgIcon, {
425
328
  sx: sx
426
- }, /*#__PURE__*/React.createElement("g", {
427
- xmlns: "http://www.w3.org/2000/svg",
428
- id: "Layer_21"
429
- }, /*#__PURE__*/React.createElement("g", null, /*#__PURE__*/React.createElement("g", null, /*#__PURE__*/React.createElement("path", {
430
- class: "st3",
431
- d: "M9.8,3H9C8.5,3,8.1,3.2,7.8,3.5L9.8,3z"
432
- }), /*#__PURE__*/React.createElement("path", {
433
- class: "st3",
434
- d: "M18.3,3h-3.1c0,0.1,0.1,0.2,0.1,0.3l3.8,14.2c0.1,0.4,0.1,0.9-0.2,1.3c-0.2,0.4-0.6,0.7-1,0.8l-4.6,1.2h4.9 c0.9,0,1.6-0.7,1.6-1.6V4.6C19.9,3.7,19.2,3,18.3,3z"
435
- })), /*#__PURE__*/React.createElement("g", null, /*#__PURE__*/React.createElement("path", {
436
- class: "st3",
437
- d: "M18.2,17.8L14.3,3.6c0-0.2-0.1-0.3-0.3-0.4c-0.1-0.1-0.3-0.1-0.5-0.1l-9,2.4C4.3,5.6,4.1,6,4.1,6.3L8,20.5 c0.1,0.3,0.4,0.5,0.8,0.4l9-2.4c0.2,0,0.3-0.1,0.4-0.3C18.2,18.1,18.2,18,18.2,17.8z M15.5,13.7c-0.3,1.4-2.3,0.7-3.3,1.1 c-1,0.4-2.1,2.2-3.2,1.3c-0.9-0.8,0.1-1.7-0.3-2.5c-0.4-0.8-1.5-0.8-1.5-1.6c0-1.2,1.4-0.8,1.8-1.6C9.3,9.9,9.2,8.9,10,8.7 c0.8-0.3,1.3,0.5,1.8,0.7c0.8,0.4,1.7-0.9,2.4,0c0.5,0.7-0.2,1.3-0.1,2.2C14.3,12.5,15.7,12.6,15.5,13.7z"
438
- }), /*#__PURE__*/React.createElement("path", {
439
- class: "st3",
440
- d: "M12.3,11.4c-0.4,0.2-0.7,0.4-1.1,0.6c-0.4,0.1-0.8,0.2-1.2,0.3c0,0-0.1,0-0.1,0.1c-0.1,0.1-0.1,0.3-0.1,0.4 c0.4,0.6,1.2,0.9,1.9,0.6l0,0c0.7-0.3,1.1-1,1-1.7c0,0,0-0.1,0-0.1C12.6,11.3,12.4,11.3,12.3,11.4z"
441
- })))));
329
+ }, /*#__PURE__*/React.createElement("path", {
330
+ d: "M12,19.2c-0.3,0-0.7-0.1-0.9-0.2l-7.5-7.4c-0.7-0.6-0.7-1.5-0.3-2.2l2.5-3.4c0.6-0.7,1.5-1.1,2.4-1.1h7.7c0.9-0.1,1.8,0.3,2.4,1.1l2.6,3.5c0.4,0.7,0.2,1.6-0.4,2.1l-7.5,7.4C12.7,19.1,12.3,19.2,12,19.2z M16.2,7.6c-0.1,0-0.2,0.1-0.2,0.2c0,0.2,0.2,0.5,0.4,0.7c0.3,0.4,0.5,0.9,0.5,1.4c0,0.2-0.1,0.6-0.2,0.7c-0.4,0.7-1,1.4-1.6,2c-0.8,0.9-1.7,1.7-1.5,1.9l0.2,0.2c0.6,0,3.2-3.2,3.2-3.2c0.3-0.4,0.5-0.8,0.6-1.3c-0.1-0.7-0.3-1.2-0.7-1.8C16.8,8.2,16.4,7.6,16.2,7.6L16.2,7.6z"
331
+ }));
442
332
  };
443
- const CrownIcon = _ref22 => {
333
+ const BlerpCardIcon = _ref22 => {
444
334
  let {
445
335
  sx
446
336
  } = _ref22;
447
337
  return /*#__PURE__*/React.createElement(SvgIcon, {
448
338
  sx: sx
449
- }, /*#__PURE__*/React.createElement("g", {
450
- xmlns: "http://www.w3.org/2000/svg",
451
- id: "Crown"
452
339
  }, /*#__PURE__*/React.createElement("path", {
453
- id: "Icon_awesome-crown",
454
- class: "st3",
455
- d: "M17.8,17.4H6.2c-0.2,0-0.4,0.2-0.4,0.4v0.9c0,0.2,0.2,0.4,0.4,0.4h11.7 c0.2,0,0.4-0.2,0.4-0.4v-0.9C18.3,17.6,18.1,17.4,17.8,17.4C17.8,17.4,17.8,17.4,17.8,17.4z M19.6,8.4c-0.7,0-1.3,0.6-1.3,1.4 c0,0,0,0,0,0c0,0.2,0,0.4,0.1,0.6l-2,1.2c-0.4,0.3-1,0.1-1.2-0.3c0,0,0,0,0,0l-2.3-4c0.6-0.5,0.7-1.3,0.2-1.9 c-0.5-0.6-1.3-0.7-1.9-0.2C10.6,5.6,10.5,6.4,11,7c0.1,0.1,0.1,0.1,0.2,0.2l-2.3,4c-0.2,0.4-0.8,0.6-1.2,0.3c0,0,0,0,0,0l-2-1.2 c0.3-0.7,0-1.5-0.7-1.8s-1.5,0-1.8,0.7s0,1.5,0.7,1.8c0.2,0.1,0.4,0.1,0.6,0.1c0.1,0,0.1,0,0.2,0l2,5.4h10.8l2-5.4 c0.1,0,0.1,0,0.2,0c0.7,0,1.3-0.6,1.3-1.3C21,9,20.4,8.4,19.6,8.4L19.6,8.4z"
456
- })));
340
+ d: "M9.8,3H9C8.5,3,8.1,3.2,7.8,3.5L9.8,3z"
341
+ }), /*#__PURE__*/React.createElement("path", {
342
+ d: "M18.3,3h-3.1c0,0.1,0.1,0.2,0.1,0.3l3.8,14.2c0.1,0.4,0.1,0.9-0.2,1.3c-0.2,0.4-0.6,0.7-1,0.8l-4.6,1.2h4.9c0.9,0,1.6-0.7,1.6-1.6V4.6C19.9,3.7,19.2,3,18.3,3z"
343
+ }), /*#__PURE__*/React.createElement("path", {
344
+ d: "M18.2,17.8L14.3,3.6c0-0.2-0.1-0.3-0.3-0.4c-0.1-0.1-0.3-0.1-0.5-0.1l-9,2.4C4.3,5.6,4.1,6,4.1,6.3L8,20.5c0.1,0.3,0.4,0.5,0.8,0.4l9-2.4c0.2,0,0.3-0.1,0.4-0.3C18.2,18.1,18.2,18,18.2,17.8z M15.5,13.7c-0.3,1.4-2.3,0.7-3.3,1.1c-1,0.4-2.1,2.2-3.2,1.3c-0.9-0.8,0.1-1.7-0.3-2.5c-0.4-0.8-1.5-0.8-1.5-1.6c0-1.2,1.4-0.8,1.8-1.6C9.3,9.9,9.2,8.9,10,8.7c0.8-0.3,1.3,0.5,1.8,0.7c0.8,0.4,1.7-0.9,2.4,0c0.5,0.7-0.2,1.3-0.1,2.2C14.3,12.5,15.7,12.6,15.5,13.7z"
345
+ }), /*#__PURE__*/React.createElement("path", {
346
+ d: "M12.3,11.4c-0.4,0.2-0.7,0.4-1.1,0.6c-0.4,0.1-0.8,0.2-1.2,0.3c0,0-0.1,0-0.1,0.1c-0.1,0.1-0.1,0.3-0.1,0.4c0.4,0.6,1.2,0.9,1.9,0.6l0,0c0.7-0.3,1.1-1,1-1.7c0,0,0-0.1,0-0.1C12.6,11.3,12.4,11.3,12.3,11.4z"
347
+ }));
457
348
  };
458
- const CogIcon = _ref23 => {
349
+ const CrownIcon = _ref23 => {
459
350
  let {
460
351
  sx
461
352
  } = _ref23;
462
353
  return /*#__PURE__*/React.createElement(SvgIcon, {
463
354
  sx: sx
464
- }, /*#__PURE__*/React.createElement("g", {
465
- xmlns: "http://www.w3.org/2000/svg",
466
- id: "Layer_22"
467
355
  }, /*#__PURE__*/React.createElement("path", {
468
- id: "Settings-IbisRed",
469
- class: "st3",
470
- d: "M12,21c-0.9,0-1.6-0.7-1.6-1.6v-0.1c-0.1-0.8-0.7-1.3-1.4-1.3c-0.4,0-0.7,0.1-0.9,0.4 l0,0c-0.6,0.6-1.7,0.7-2.3,0s-0.7-1.7,0-2.3c0,0,0,0,0,0l0,0c0.5-0.5,0.5-1.4,0-1.9c-0.2-0.2-0.6-0.4-0.9-0.4H4.6 C3.7,13.7,3,13,3,12s0.7-1.6,1.6-1.6h0.1c0.6,0,1-0.4,1.2-0.9C6.1,9,6,8.4,5.7,8L5.6,8C5,7.4,5,6.3,5.6,5.7s1.7-0.6,2.3,0l0,0l0,0 c0.4,0.4,1,0.5,1.5,0.3h0.1c0.5-0.2,0.8-0.7,0.8-1.2V4.6C10.4,3.7,11.1,3,12,3c0.9,0,1.6,0.7,1.6,1.6v0.1c0,0.5,0.3,1,0.8,1.2 c0.5,0.2,1.1,0.1,1.5-0.3l0,0c0.3-0.3,0.7-0.5,1.2-0.5c0.9,0,1.6,0.7,1.6,1.6c0,0.4-0.2,0.8-0.5,1.2l0,0c-0.4,0.4-0.5,1-0.3,1.5 v0.1c0.2,0.5,0.7,0.8,1.2,0.8h0.1c0.9,0,1.6,0.7,1.7,1.6c0,0.9-0.7,1.6-1.6,1.7c0,0,0,0-0.1,0h-0.1c-0.7,0-1.4,0.6-1.3,1.4 c0,0.3,0.1,0.7,0.4,0.9l0,0c0.6,0.6,0.6,1.7,0,2.3c-0.6,0.6-1.7,0.6-2.3,0l0,0l0,0c-0.5-0.5-1.4-0.5-1.9,0 c-0.2,0.3-0.4,0.6-0.4,0.9v0.1C13.7,20.2,12.9,21,12,21z M12,9.5c-1.4,0-2.4,1.1-2.4,2.4s1.1,2.4,2.4,2.4s2.4-1.1,2.4-2.4l0,0 C14.4,10.6,13.3,9.5,12,9.5z"
471
- })));
356
+ d: "M17.8,17.4H6.2c-0.2,0-0.4,0.2-0.4,0.4v0.9c0,0.2,0.2,0.4,0.4,0.4h11.7c0.2,0,0.4-0.2,0.4-0.4v-0.9C18.3,17.6,18.1,17.4,17.8,17.4C17.8,17.4,17.8,17.4,17.8,17.4z M19.6,8.4c-0.7,0-1.3,0.6-1.3,1.4c0,0,0,0,0,0c0,0.2,0,0.4,0.1,0.6l-2,1.2c-0.4,0.3-1,0.1-1.2-0.3c0,0,0,0,0,0l-2.3-4c0.6-0.5,0.7-1.3,0.2-1.9c-0.5-0.6-1.3-0.7-1.9-0.2C10.6,5.6,10.5,6.4,11,7c0.1,0.1,0.1,0.1,0.2,0.2l-2.3,4c-0.2,0.4-0.8,0.6-1.2,0.3c0,0,0,0,0,0l-2-1.2c0.3-0.7,0-1.5-0.7-1.8s-1.5,0-1.8,0.7s0,1.5,0.7,1.8c0.2,0.1,0.4,0.1,0.6,0.1c0.1,0,0.1,0,0.2,0l2,5.4h10.8l2-5.4c0.1,0,0.1,0,0.2,0c0.7,0,1.3-0.6,1.3-1.3C21,9,20.4,8.4,19.6,8.4L19.6,8.4z"
357
+ }));
472
358
  };
473
- const ClockIcon = _ref24 => {
359
+ const CogIcon = _ref24 => {
474
360
  let {
475
361
  sx
476
362
  } = _ref24;
477
363
  return /*#__PURE__*/React.createElement(SvgIcon, {
478
364
  sx: sx
479
- }, /*#__PURE__*/React.createElement("g", {
480
- xmlns: "http://www.w3.org/2000/svg",
481
- id: "Layer_23"
482
365
  }, /*#__PURE__*/React.createElement("path", {
483
- id: "icon_datetime_clock",
484
- class: "st0",
485
- d: "M12,18.9c4,0,7.2-3.2,7.2-7.2S16,4.5,12,4.5s-7.2,3.2-7.2,7.2S8,18.9,12,18.9 M12,2.7 c5,0,9,4,9,9s-4,9-9,9s-9-4-9-9S7,2.7,12,2.7 M12.4,7.2v4.7l4.1,2.4l-0.7,1.1l-4.7-2.8V7.2H12.4z"
486
- })));
366
+ d: "M12,21c-0.9,0-1.6-0.7-1.6-1.6v-0.1c-0.1-0.8-0.7-1.3-1.4-1.3c-0.4,0-0.7,0.1-0.9,0.4l0,0c-0.6,0.6-1.7,0.7-2.3,0s-0.7-1.7,0-2.3c0,0,0,0,0,0l0,0c0.5-0.5,0.5-1.4,0-1.9c-0.2-0.2-0.6-0.4-0.9-0.4H4.6C3.7,13.7,3,13,3,12s0.7-1.6,1.6-1.6h0.1c0.6,0,1-0.4,1.2-0.9C6.1,9,6,8.4,5.7,8L5.6,8C5,7.4,5,6.3,5.6,5.7s1.7-0.6,2.3,0l0,0l0,0c0.4,0.4,1,0.5,1.5,0.3h0.1c0.5-0.2,0.8-0.7,0.8-1.2V4.6C10.4,3.7,11.1,3,12,3c0.9,0,1.6,0.7,1.6,1.6v0.1c0,0.5,0.3,1,0.8,1.2c0.5,0.2,1.1,0.1,1.5-0.3l0,0c0.3-0.3,0.7-0.5,1.2-0.5c0.9,0,1.6,0.7,1.6,1.6c0,0.4-0.2,0.8-0.5,1.2l0,0c-0.4,0.4-0.5,1-0.3,1.5v0.1c0.2,0.5,0.7,0.8,1.2,0.8h0.1c0.9,0,1.6,0.7,1.7,1.6c0,0.9-0.7,1.6-1.6,1.7c0,0,0,0-0.1,0h-0.1c-0.7,0-1.4,0.6-1.3,1.4c0,0.3,0.1,0.7,0.4,0.9l0,0c0.6,0.6,0.6,1.7,0,2.3c-0.6,0.6-1.7,0.6-2.3,0l0,0l0,0c-0.5-0.5-1.4-0.5-1.9,0c-0.2,0.3-0.4,0.6-0.4,0.9v0.1C13.7,20.2,12.9,21,12,21z M12,9.5c-1.4,0-2.4,1.1-2.4,2.4s1.1,2.4,2.4,2.4s2.4-1.1,2.4-2.4l0,0C14.4,10.6,13.3,9.5,12,9.5z"
367
+ }));
487
368
  };
488
- const OpenLockIcon = _ref25 => {
369
+ const ClockIcon = _ref25 => {
489
370
  let {
490
371
  sx
491
372
  } = _ref25;
492
373
  return /*#__PURE__*/React.createElement(SvgIcon, {
493
374
  sx: sx
494
- }, /*#__PURE__*/React.createElement("g", {
495
- xmlns: "http://www.w3.org/2000/svg",
496
- id: "Layer_24"
497
375
  }, /*#__PURE__*/React.createElement("path", {
498
- xmlns: "http://www.w3.org/2000/svg",
499
- d: "M19.5,3.2c-0.7-0.7-1.7-1-2.9-1c-1.1,0-2,0.4-2.7,1.1c-1.4,1.5-1.4,4.1-1.3,6.7H6.5c-1.4,0-2.5,1.1-2.5,2.4v6.1 c0,1.4,1.1,2.4,2.5,2.4h7.4c1.4,0,2.5-1.1,2.5-2.4v-6.1c0-1.3-1-2.3-2.3-2.4C14,7.8,14,5.4,15,4.4c0.4-0.4,0.9-0.6,1.6-0.6 c0.8,0,1.4,0.2,1.8,0.6c0.8,0.7,0.7,2.2,0.7,3l0,0.2h1.5l0-0.2C20.7,6.3,20.7,4.4,19.5,3.2z M11,15.2l-0.2,0.2v2 c0,0.3-0.3,0.6-0.6,0.6c-0.3,0-0.6-0.3-0.6-0.6v-2l-0.2-0.2C9.1,15,9,14.7,9,14.3v0c0-0.7,0.6-1.2,1.2-1.2c0.3,0,0.6,0.1,0.9,0.4 c0.2,0.2,0.4,0.5,0.4,0.9C11.4,14.7,11.3,15,11,15.2z"
500
- })));
376
+ d: "M12,18.9c4,0,7.2-3.2,7.2-7.2S16,4.5,12,4.5s-7.2,3.2-7.2,7.2S8,18.9,12,18.9 M12,2.7c5,0,9,4,9,9s-4,9-9,9s-9-4-9-9S7,2.7,12,2.7 M12.4,7.2v4.7l4.1,2.4l-0.7,1.1l-4.7-2.8V7.2H12.4z"
377
+ }));
501
378
  };
502
- const WindowsIcon = _ref26 => {
379
+ const OpenLockIcon = _ref26 => {
503
380
  let {
504
381
  sx
505
382
  } = _ref26;
506
383
  return /*#__PURE__*/React.createElement(SvgIcon, {
507
384
  sx: sx
508
385
  }, /*#__PURE__*/React.createElement("path", {
509
- id: "windows",
510
- d: "M3,5.5l7.4-1v7.1H3V5.5z M3,18.5l7.4,1v-7H3V18.5L3,18.5z M11.2,19.6L21,21v-8.5h-9.8V19.6z M11.2,4.4v7.2H21 V3L11.2,4.4z"
386
+ d: "M19.5,3.2c-0.7-0.7-1.7-1-2.9-1c-1.1,0-2,0.4-2.7,1.1c-1.4,1.5-1.4,4.1-1.3,6.7H6.5c-1.4,0-2.5,1.1-2.5,2.4v6.1c0,1.4,1.1,2.4,2.5,2.4h7.4c1.4,0,2.5-1.1,2.5-2.4v-6.1c0-1.3-1-2.3-2.3-2.4C14,7.8,14,5.4,15,4.4c0.4-0.4,0.9-0.6,1.6-0.6c0.8,0,1.4,0.2,1.8,0.6c0.8,0.7,0.7,2.2,0.7,3l0,0.2h1.5l0-0.2C20.7,6.3,20.7,4.4,19.5,3.2z M11,15.2l-0.2,0.2v2c0,0.3-0.3,0.6-0.6,0.6c-0.3,0-0.6-0.3-0.6-0.6v-2l-0.2-0.2C9.1,15,9,14.7,9,14.3v0c0-0.7,0.6-1.2,1.2-1.2c0.3,0,0.6,0.1,0.9,0.4c0.2,0.2,0.4,0.5,0.4,0.9C11.4,14.7,11.3,15,11,15.2z"
511
387
  }));
512
388
  };
513
- const BroomIcon = _ref27 => {
389
+ const WindowsIcon = _ref27 => {
514
390
  let {
515
391
  sx
516
392
  } = _ref27;
517
393
  return /*#__PURE__*/React.createElement(SvgIcon, {
518
394
  sx: sx
519
- }, /*#__PURE__*/React.createElement("g", {
520
- id: "Layer_2"
521
- }, /*#__PURE__*/React.createElement("g", {
522
- id: "Component_727_4",
523
- transform: "translate(0.5)"
524
- }, /*#__PURE__*/React.createElement("g", {
525
- id: "Union_53"
526
- }, /*#__PURE__*/React.createElement("path", {
527
- d: "M7.1,20.2c1.9-1.2,3.1-2,3.1-2S8,19.5,7.1,19.9c-0.4,0.3-0.9,0.3-1.4,0.2c0,0,2.6-0.7,4.1-2.2c0.9-0.9,1.6-2,2.3-3 c0.3-0.4,0.7-0.7,1.1-0.9l2.5,1.3c0,0.6-0.2,1.2-0.5,1.7c-0.3,0.6-0.6,1.3-0.9,1.9c-0.9,1.2-1.6,1.1-1.6,1.1s0.1,0-0.8,0 c-0.1,0-0.2,0-0.5,0c-0.1,0-0.3,0-0.5,0c-0.2,0-0.5,0-0.8,0.1c-0.4,0-0.7,0.1-1.1,0c0.6-0.2,1.2-0.6,1.8-1 c0.4-0.4,0.7-0.9,0.9-1.5c-0.4,0.5-0.8,1-1.2,1.5c-0.6,0.5-1.4,0.8-2.2,1c-0.1,0-0.3,0-0.4,0c-0.1,0-0.3,0-0.4,0 C7.4,20.2,7.2,20.2,7.1,20.2z M13.4,13.7l0-1.2c0-0.1,0.1-0.2,0.2-0.2c0,0,0.1,0,0.1,0l1,0.5L19.4,4c0.1-0.2,0.3-0.2,0.4-0.1 L20.3,4c0.2,0.1,0.2,0.3,0.1,0.4c0,0,0,0,0,0l-4.5,8.8l1,0.5c0.1,0.1,0.2,0.2,0.1,0.3c0,0,0,0.1-0.1,0.1l-1,0.7L13.4,13.7z"
528
- })), /*#__PURE__*/React.createElement("g", {
529
- id: "Group_28896",
530
- transform: "translate(-45.5 3.636)"
531
- }, /*#__PURE__*/React.createElement("g", {
532
- id: "Line_2285"
533
- }, /*#__PURE__*/React.createElement("path", {
534
- d: "M53.9,13.8h-6c-0.3,0-0.5-0.2-0.5-0.5s0.2-0.5,0.5-0.5h6c0.3,0,0.5,0.2,0.5,0.5S54.2,13.8,53.9,13.8z"
535
- })), /*#__PURE__*/React.createElement("g", {
536
- id: "Path_16256"
537
- }, /*#__PURE__*/React.createElement("path", {
538
- d: "M55.1,11.2h-3.9c-0.3,0-0.5-0.2-0.5-0.5s0.2-0.5,0.5-0.5h3.9c0.3,0,0.5,0.2,0.5,0.5S55.4,11.2,55.1,11.2z"
539
- })), /*#__PURE__*/React.createElement("g", {
540
- id: "Line_2287"
541
395
  }, /*#__PURE__*/React.createElement("path", {
542
- d: "M56.8,8.6h-1.7c-0.3,0-0.5-0.2-0.5-0.5c0-0.3,0.2-0.5,0.5-0.5h1.7c0.3,0,0.5,0.2,0.5,0.5C57.3,8.4,57.1,8.6,56.8,8.6z"
543
- }))))));
396
+ d: "M3,5.5l7.4-1v7.1H3V5.5z M3,18.5l7.4,1v-7H3V18.5L3,18.5z M11.2,19.6L21,21v-8.5h-9.8V19.6z M11.2,4.4v7.2H21V3L11.2,4.4z"
397
+ }));
544
398
  };
545
- const TikTokIcon = _ref28 => {
399
+ const BroomIcon = _ref28 => {
546
400
  let {
547
401
  sx
548
402
  } = _ref28;
549
403
  return /*#__PURE__*/React.createElement(SvgIcon, {
550
404
  sx: sx
551
- }, /*#__PURE__*/React.createElement("svg", {
552
- width: "19",
553
- height: "22",
554
- viewBox: "0 0 19 22",
555
- fill: "none",
556
- xmlns: "http://www.w3.org/2000/svg"
557
- }, /*#__PURE__*/React.createElement("g", {
558
- clipPath: "url(#clip0_2134_147976)"
559
405
  }, /*#__PURE__*/React.createElement("path", {
560
- d: "M9.98196 0.0183333C11.1726 0 12.3573 0.00916667 13.5419 0C13.5786 1.43014 14.1477 2.7943 15.1366 3.8225C16.2058 4.78871 17.5662 5.36644 19.0002 5.46333V9.1575C17.6777 9.12527 16.3756 8.82275 15.173 8.26833C14.6602 8.02106 14.1667 7.73506 13.6968 7.41278C13.6877 10.0894 13.7059 12.7661 13.6786 15.4336C13.609 16.7289 13.1831 17.9793 12.4484 19.0453C11.8436 19.9263 11.0413 20.652 10.1063 21.1637C9.17135 21.6753 8.12988 21.9587 7.06598 21.9908C5.76139 22.0505 4.46823 21.7221 3.34812 21.0467C2.42561 20.4961 1.64403 19.736 1.06595 18.8271C0.487867 17.9182 0.129333 16.8858 0.0190465 15.8125C0.00082171 15.3542 -0.00829077 14.8958 0.00993406 14.4467C0.10287 13.5064 0.386792 12.5953 0.844104 11.7699C1.30142 10.9445 1.92237 10.2224 2.66849 9.64827C3.4146 9.07418 4.26997 8.66036 5.18159 8.43245C6.09321 8.20454 7.04164 8.1674 7.96811 8.32333C7.98634 9.68 7.93166 11.0367 7.93166 12.3933C7.54282 12.2561 7.13085 12.1976 6.71944 12.2211C6.30803 12.2445 5.90529 12.3496 5.53438 12.5302C5.16347 12.7108 4.8317 12.9634 4.55815 13.2734C4.2846 13.5834 4.07467 13.9448 3.94042 14.3367C3.79768 14.8146 3.75425 15.317 3.81285 15.8125C3.93139 16.5681 4.32175 17.2535 4.90975 17.7386C5.49776 18.2236 6.24241 18.4744 7.0022 18.4433C7.51183 18.4282 8.00964 18.2854 8.45044 18.0276C8.89123 17.7699 9.26106 17.4055 9.52634 16.9675C9.72946 16.68 9.8579 16.346 9.89995 15.9958C9.99107 14.355 9.95462 12.7233 9.9607 11.0825C9.96981 7.38833 9.95158 3.70333 9.98196 0.0183333Z",
561
- fill: "#252525"
562
- })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
563
- id: "clip0_2134_147976"
564
- }, /*#__PURE__*/React.createElement("rect", {
565
- width: "19",
566
- height: "22",
567
- fill: "white"
568
- })))));
406
+ d: "M7.1,20.2c1.9-1.2,3.1-2,3.1-2S8,19.5,7.1,19.9c-0.4,0.3-0.9,0.3-1.4,0.2c0,0,2.6-0.7,4.1-2.2c0.9-0.9,1.6-2,2.3-3c0.3-0.4,0.7-0.7,1.1-0.9l2.5,1.3c0,0.6-0.2,1.2-0.5,1.7c-0.3,0.6-0.6,1.3-0.9,1.9c-0.9,1.2-1.6,1.1-1.6,1.1s0.1,0-0.8,0c-0.1,0-0.2,0-0.5,0c-0.1,0-0.3,0-0.5,0c-0.2,0-0.5,0-0.8,0.1c-0.4,0-0.7,0.1-1.1,0c0.6-0.2,1.2-0.6,1.8-1c0.4-0.4,0.7-0.9,0.9-1.5c-0.4,0.5-0.8,1-1.2,1.5c-0.6,0.5-1.4,0.8-2.2,1c-0.1,0-0.3,0-0.4,0c-0.1,0-0.3,0-0.4,0C7.4,20.2,7.2,20.2,7.1,20.2z M13.4,13.7l0-1.2c0-0.1,0.1-0.2,0.2-0.2c0,0,0.1,0,0.1,0l1,0.5L19.4,4c0.1-0.2,0.3-0.2,0.4-0.1L20.3,4c0.2,0.1,0.2,0.3,0.1,0.4c0,0,0,0,0,0l-4.5,8.8l1,0.5c0.1,0.1,0.2,0.2,0.1,0.3c0,0,0,0.1-0.1,0.1l-1,0.7L13.4,13.7z"
407
+ }), /*#__PURE__*/React.createElement("path", {
408
+ d: "M53.9,13.8h-6c-0.3,0-0.5-0.2-0.5-0.5s0.2-0.5,0.5-0.5h6c0.3,0,0.5,0.2,0.5,0.5S54.2,13.8,53.9,13.8z",
409
+ transform: "translate(-45.5 3.636)"
410
+ }), /*#__PURE__*/React.createElement("path", {
411
+ d: "M55.1,11.2h-3.9c-0.3,0-0.5-0.2-0.5-0.5s0.2-0.5,0.5-0.5h3.9c0.3,0,0.5,0.2,0.5,0.5S55.4,11.2,55.1,11.2z",
412
+ transform: "translate(-45.5 3.636)"
413
+ }), /*#__PURE__*/React.createElement("path", {
414
+ d: "M56.8,8.6h-1.7c-0.3,0-0.5-0.2-0.5-0.5c0-0.3,0.2-0.5,0.5-0.5h1.7c0.3,0,0.5,0.2,0.5,0.5C57.3,8.4,57.1,8.6,56.8,8.6z",
415
+ transform: "translate(-45.5 3.636)"
416
+ }));
417
+ };
418
+ const TikTokIcon = _ref29 => {
419
+ let {
420
+ sx
421
+ } = _ref29;
422
+ return /*#__PURE__*/React.createElement(SvgIcon, {
423
+ sx: sx,
424
+ viewBox: "0 0 19 22"
425
+ }, /*#__PURE__*/React.createElement("path", {
426
+ d: "M9.98196 0.0183333C11.1726 0 12.3573 0.00916667 13.5419 0C13.5786 1.43014 14.1477 2.7943 15.1366 3.8225C16.2058 4.78871 17.5662 5.36644 19.0002 5.46333V9.1575C17.6777 9.12527 16.3756 8.82275 15.173 8.26833C14.6602 8.02106 14.1667 7.73506 13.6968 7.41278C13.6877 10.0894 13.7059 12.7661 13.6786 15.4336C13.609 16.7289 13.1831 17.9793 12.4484 19.0453C11.8436 19.9263 11.0413 20.652 10.1063 21.1637C9.17135 21.6753 8.12988 21.9587 7.06598 21.9908C5.76139 22.0505 4.46823 21.7221 3.34812 21.0467C2.42561 20.4961 1.64403 19.736 1.06595 18.8271C0.487867 17.9182 0.129333 16.8858 0.0190465 15.8125C0.00082171 15.3542 -0.00829077 14.8958 0.00993406 14.4467C0.10287 13.5064 0.386792 12.5953 0.844104 11.7699C1.30142 10.9445 1.92237 10.2224 2.66849 9.64827C3.4146 9.07418 4.26997 8.66036 5.18159 8.43245C6.09321 8.20454 7.04164 8.1674 7.96811 8.32333C7.98634 9.68 7.93166 11.0367 7.93166 12.3933C7.54282 12.2561 7.13085 12.1976 6.71944 12.2211C6.30803 12.2445 5.90529 12.3496 5.53438 12.5302C5.16347 12.7108 4.8317 12.9634 4.55815 13.2734C4.2846 13.5834 4.07467 13.9448 3.94042 14.3367C3.79768 14.8146 3.75425 15.317 3.81285 15.8125C3.93139 16.5681 4.32175 17.2535 4.90975 17.7386C5.49776 18.2236 6.24241 18.4744 7.0022 18.4433C7.51183 18.4282 8.00964 18.2854 8.45044 18.0276C8.89123 17.7699 9.26106 17.4055 9.52634 16.9675C9.72946 16.68 9.8579 16.346 9.89995 15.9958C9.99107 14.355 9.95462 12.7233 9.9607 11.0825C9.96981 7.38833 9.95158 3.70333 9.98196 0.0183333Z"
427
+ }));
569
428
  };
570
429
 
571
430
  export { BlerpCardIcon, BlerpCoinsIcon, BlerpyIcon, BookmarkAddRounded, BroomIcon, ChannelPointsIcon, ClockIcon, CogIcon, CrownIcon, DiamondIcon, DiscordIcon, GiftIcon, LightbulbIcon, NewDiscordIcon, OpenLockIcon, PlayOutlineIcon, PlaySolidIcon, PointerFingerIcon, PresentGiftIcon, RadarDishIcon, ShortcutIcon, SparkleGiftIcon, TikTokIcon, TwitchBitIcon, TwitchIcon, UnsafeIcon, WalkonIcon, WindowsIcon };