@magmamath/students-features 0.6.12-rc.0 → 0.6.13

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 (185) hide show
  1. package/dist/commonjs/features/exampleSolution/ExampleSolutionModal.js +31 -0
  2. package/dist/commonjs/features/exampleSolution/ExampleSolutionModal.js.map +1 -0
  3. package/dist/commonjs/features/exampleSolution/assets/grid.png +0 -0
  4. package/dist/commonjs/features/exampleSolution/components/ExampleSolutionModalContent.js +97 -0
  5. package/dist/commonjs/features/exampleSolution/components/ExampleSolutionModalContent.js.map +1 -0
  6. package/dist/commonjs/features/exampleSolution/components/LavaIcon.js +44 -0
  7. package/dist/commonjs/features/exampleSolution/components/LavaIcon.js.map +1 -0
  8. package/dist/commonjs/features/exampleSolution/components/MessageBlock.js +61 -0
  9. package/dist/commonjs/features/exampleSolution/components/MessageBlock.js.map +1 -0
  10. package/dist/commonjs/features/exampleSolution/components/QuestionSection.js +68 -0
  11. package/dist/commonjs/features/exampleSolution/components/QuestionSection.js.map +1 -0
  12. package/dist/commonjs/features/exampleSolution/components/SolutionSection.js +75 -0
  13. package/dist/commonjs/features/exampleSolution/components/SolutionSection.js.map +1 -0
  14. package/dist/commonjs/features/exampleSolution/constants.js +13 -0
  15. package/dist/commonjs/features/exampleSolution/constants.js.map +1 -0
  16. package/dist/commonjs/features/exampleSolution/hooks/useExampleSolution.js +61 -0
  17. package/dist/commonjs/features/exampleSolution/hooks/useExampleSolution.js.map +1 -0
  18. package/dist/commonjs/features/exampleSolution/index.js +39 -0
  19. package/dist/commonjs/features/exampleSolution/index.js.map +1 -0
  20. package/dist/commonjs/features/exampleSolution/model/ExampleSolution.model.js +22 -0
  21. package/dist/commonjs/features/exampleSolution/model/ExampleSolution.model.js.map +1 -0
  22. package/dist/commonjs/features/exampleSolution/model/ExampleSolutionApi.js +32 -0
  23. package/dist/commonjs/features/exampleSolution/model/ExampleSolutionApi.js.map +1 -0
  24. package/dist/commonjs/features/exampleSolution/model/ExampleSolutionCache.js +18 -0
  25. package/dist/commonjs/features/exampleSolution/model/ExampleSolutionCache.js.map +1 -0
  26. package/dist/commonjs/features/exampleSolution/types.js +6 -0
  27. package/dist/commonjs/features/exampleSolution/types.js.map +1 -0
  28. package/dist/commonjs/features/problemSelector/components/ProblemSelectorButton.js +1 -1
  29. package/dist/commonjs/features/problemSelector/components/ProblemSelectorButton.js.map +1 -1
  30. package/dist/commonjs/index.js +24 -0
  31. package/dist/commonjs/index.js.map +1 -1
  32. package/dist/commonjs/shared/icons/ExcitedLavaIcon.js +681 -0
  33. package/dist/commonjs/shared/icons/ExcitedLavaIcon.js.map +1 -0
  34. package/dist/commonjs/shared/icons/LavaIconInGlasses.js +616 -0
  35. package/dist/commonjs/shared/icons/LavaIconInGlasses.js.map +1 -0
  36. package/dist/commonjs/shared/icons/index.js +204 -0
  37. package/dist/commonjs/shared/icons/index.js.map +1 -0
  38. package/dist/commonjs/shared/translation/localization/ca.json +6 -0
  39. package/dist/commonjs/shared/translation/localization/en.json +6 -0
  40. package/dist/commonjs/shared/translation/localization/gb.json +6 -0
  41. package/dist/commonjs/shared/translation/localization/sct.json +6 -0
  42. package/dist/commonjs/shared/translation/localization/sw.json +6 -0
  43. package/dist/module/features/exampleSolution/ExampleSolutionModal.js +25 -0
  44. package/dist/module/features/exampleSolution/ExampleSolutionModal.js.map +1 -0
  45. package/dist/module/features/exampleSolution/assets/grid.png +0 -0
  46. package/dist/module/features/exampleSolution/components/ExampleSolutionModalContent.js +91 -0
  47. package/dist/module/features/exampleSolution/components/ExampleSolutionModalContent.js.map +1 -0
  48. package/dist/module/features/exampleSolution/components/LavaIcon.js +36 -0
  49. package/dist/module/features/exampleSolution/components/LavaIcon.js.map +1 -0
  50. package/dist/module/features/exampleSolution/components/MessageBlock.js +53 -0
  51. package/dist/module/features/exampleSolution/components/MessageBlock.js.map +1 -0
  52. package/dist/module/features/exampleSolution/components/QuestionSection.js +60 -0
  53. package/dist/module/features/exampleSolution/components/QuestionSection.js.map +1 -0
  54. package/dist/module/features/exampleSolution/components/SolutionSection.js +67 -0
  55. package/dist/module/features/exampleSolution/components/SolutionSection.js.map +1 -0
  56. package/dist/module/features/exampleSolution/constants.js +9 -0
  57. package/dist/module/features/exampleSolution/constants.js.map +1 -0
  58. package/dist/module/features/exampleSolution/hooks/useExampleSolution.js +56 -0
  59. package/dist/module/features/exampleSolution/hooks/useExampleSolution.js.map +1 -0
  60. package/dist/module/features/exampleSolution/index.js +6 -0
  61. package/dist/module/features/exampleSolution/index.js.map +1 -0
  62. package/dist/module/features/exampleSolution/model/ExampleSolution.model.js +17 -0
  63. package/dist/module/features/exampleSolution/model/ExampleSolution.model.js.map +1 -0
  64. package/dist/module/features/exampleSolution/model/ExampleSolutionApi.js +27 -0
  65. package/dist/module/features/exampleSolution/model/ExampleSolutionApi.js.map +1 -0
  66. package/dist/module/features/exampleSolution/model/ExampleSolutionCache.js +13 -0
  67. package/dist/module/features/exampleSolution/model/ExampleSolutionCache.js.map +1 -0
  68. package/dist/module/features/exampleSolution/types.js +4 -0
  69. package/dist/module/features/exampleSolution/types.js.map +1 -0
  70. package/dist/module/features/problemSelector/components/ProblemSelectorButton.js +1 -1
  71. package/dist/module/features/problemSelector/components/ProblemSelectorButton.js.map +1 -1
  72. package/dist/module/index.js +2 -0
  73. package/dist/module/index.js.map +1 -1
  74. package/dist/module/shared/icons/ExcitedLavaIcon.js +673 -0
  75. package/dist/module/shared/icons/ExcitedLavaIcon.js.map +1 -0
  76. package/dist/module/shared/icons/LavaIconInGlasses.js +608 -0
  77. package/dist/module/shared/icons/LavaIconInGlasses.js.map +1 -0
  78. package/dist/module/shared/icons/index.js +21 -0
  79. package/dist/module/shared/icons/index.js.map +1 -0
  80. package/dist/module/shared/translation/localization/ca.json +6 -0
  81. package/dist/module/shared/translation/localization/en.json +6 -0
  82. package/dist/module/shared/translation/localization/gb.json +6 -0
  83. package/dist/module/shared/translation/localization/sct.json +6 -0
  84. package/dist/module/shared/translation/localization/sw.json +6 -0
  85. package/dist/typescript/commonjs/features/exampleSolution/ExampleSolutionModal.d.ts +11 -0
  86. package/dist/typescript/commonjs/features/exampleSolution/ExampleSolutionModal.d.ts.map +1 -0
  87. package/dist/typescript/commonjs/features/exampleSolution/components/ExampleSolutionModalContent.d.ts +4 -0
  88. package/dist/typescript/commonjs/features/exampleSolution/components/ExampleSolutionModalContent.d.ts.map +1 -0
  89. package/dist/typescript/commonjs/features/exampleSolution/components/LavaIcon.d.ts +10 -0
  90. package/dist/typescript/commonjs/features/exampleSolution/components/LavaIcon.d.ts.map +1 -0
  91. package/dist/typescript/commonjs/features/exampleSolution/components/MessageBlock.d.ts +10 -0
  92. package/dist/typescript/commonjs/features/exampleSolution/components/MessageBlock.d.ts.map +1 -0
  93. package/dist/typescript/commonjs/features/exampleSolution/components/QuestionSection.d.ts +9 -0
  94. package/dist/typescript/commonjs/features/exampleSolution/components/QuestionSection.d.ts.map +1 -0
  95. package/dist/typescript/commonjs/features/exampleSolution/components/SolutionSection.d.ts +9 -0
  96. package/dist/typescript/commonjs/features/exampleSolution/components/SolutionSection.d.ts.map +1 -0
  97. package/dist/typescript/commonjs/features/exampleSolution/constants.d.ts +6 -0
  98. package/dist/typescript/commonjs/features/exampleSolution/constants.d.ts.map +1 -0
  99. package/dist/typescript/commonjs/features/exampleSolution/hooks/useExampleSolution.d.ts +9 -0
  100. package/dist/typescript/commonjs/features/exampleSolution/hooks/useExampleSolution.d.ts.map +1 -0
  101. package/dist/typescript/commonjs/features/exampleSolution/index.d.ts +4 -0
  102. package/dist/typescript/commonjs/features/exampleSolution/index.d.ts.map +1 -0
  103. package/dist/typescript/commonjs/features/exampleSolution/model/ExampleSolution.model.d.ts +9 -0
  104. package/dist/typescript/commonjs/features/exampleSolution/model/ExampleSolution.model.d.ts.map +1 -0
  105. package/dist/typescript/commonjs/features/exampleSolution/model/ExampleSolutionApi.d.ts +13 -0
  106. package/dist/typescript/commonjs/features/exampleSolution/model/ExampleSolutionApi.d.ts.map +1 -0
  107. package/dist/typescript/commonjs/features/exampleSolution/model/ExampleSolutionCache.d.ts +11 -0
  108. package/dist/typescript/commonjs/features/exampleSolution/model/ExampleSolutionCache.d.ts.map +1 -0
  109. package/dist/typescript/commonjs/features/exampleSolution/types.d.ts +26 -0
  110. package/dist/typescript/commonjs/features/exampleSolution/types.d.ts.map +1 -0
  111. package/dist/typescript/commonjs/index.d.ts +2 -0
  112. package/dist/typescript/commonjs/index.d.ts.map +1 -1
  113. package/dist/typescript/commonjs/shared/icons/ExcitedLavaIcon.d.ts +4 -0
  114. package/dist/typescript/commonjs/shared/icons/ExcitedLavaIcon.d.ts.map +1 -0
  115. package/dist/typescript/commonjs/shared/icons/LavaIconInGlasses.d.ts +4 -0
  116. package/dist/typescript/commonjs/shared/icons/LavaIconInGlasses.d.ts.map +1 -0
  117. package/dist/typescript/commonjs/shared/icons/index.d.ts +19 -0
  118. package/dist/typescript/commonjs/shared/icons/index.d.ts.map +1 -0
  119. package/dist/typescript/commonjs/shared/translation/constants.d.ts +30 -0
  120. package/dist/typescript/commonjs/shared/translation/constants.d.ts.map +1 -1
  121. package/dist/typescript/commonjs/shared/translation/model.d.ts +12 -0
  122. package/dist/typescript/commonjs/shared/translation/model.d.ts.map +1 -1
  123. package/dist/typescript/module/features/exampleSolution/ExampleSolutionModal.d.ts +11 -0
  124. package/dist/typescript/module/features/exampleSolution/ExampleSolutionModal.d.ts.map +1 -0
  125. package/dist/typescript/module/features/exampleSolution/components/ExampleSolutionModalContent.d.ts +4 -0
  126. package/dist/typescript/module/features/exampleSolution/components/ExampleSolutionModalContent.d.ts.map +1 -0
  127. package/dist/typescript/module/features/exampleSolution/components/LavaIcon.d.ts +10 -0
  128. package/dist/typescript/module/features/exampleSolution/components/LavaIcon.d.ts.map +1 -0
  129. package/dist/typescript/module/features/exampleSolution/components/MessageBlock.d.ts +10 -0
  130. package/dist/typescript/module/features/exampleSolution/components/MessageBlock.d.ts.map +1 -0
  131. package/dist/typescript/module/features/exampleSolution/components/QuestionSection.d.ts +9 -0
  132. package/dist/typescript/module/features/exampleSolution/components/QuestionSection.d.ts.map +1 -0
  133. package/dist/typescript/module/features/exampleSolution/components/SolutionSection.d.ts +9 -0
  134. package/dist/typescript/module/features/exampleSolution/components/SolutionSection.d.ts.map +1 -0
  135. package/dist/typescript/module/features/exampleSolution/constants.d.ts +6 -0
  136. package/dist/typescript/module/features/exampleSolution/constants.d.ts.map +1 -0
  137. package/dist/typescript/module/features/exampleSolution/hooks/useExampleSolution.d.ts +9 -0
  138. package/dist/typescript/module/features/exampleSolution/hooks/useExampleSolution.d.ts.map +1 -0
  139. package/dist/typescript/module/features/exampleSolution/index.d.ts +4 -0
  140. package/dist/typescript/module/features/exampleSolution/index.d.ts.map +1 -0
  141. package/dist/typescript/module/features/exampleSolution/model/ExampleSolution.model.d.ts +9 -0
  142. package/dist/typescript/module/features/exampleSolution/model/ExampleSolution.model.d.ts.map +1 -0
  143. package/dist/typescript/module/features/exampleSolution/model/ExampleSolutionApi.d.ts +13 -0
  144. package/dist/typescript/module/features/exampleSolution/model/ExampleSolutionApi.d.ts.map +1 -0
  145. package/dist/typescript/module/features/exampleSolution/model/ExampleSolutionCache.d.ts +11 -0
  146. package/dist/typescript/module/features/exampleSolution/model/ExampleSolutionCache.d.ts.map +1 -0
  147. package/dist/typescript/module/features/exampleSolution/types.d.ts +26 -0
  148. package/dist/typescript/module/features/exampleSolution/types.d.ts.map +1 -0
  149. package/dist/typescript/module/index.d.ts +2 -0
  150. package/dist/typescript/module/index.d.ts.map +1 -1
  151. package/dist/typescript/module/shared/icons/ExcitedLavaIcon.d.ts +4 -0
  152. package/dist/typescript/module/shared/icons/ExcitedLavaIcon.d.ts.map +1 -0
  153. package/dist/typescript/module/shared/icons/LavaIconInGlasses.d.ts +4 -0
  154. package/dist/typescript/module/shared/icons/LavaIconInGlasses.d.ts.map +1 -0
  155. package/dist/typescript/module/shared/icons/index.d.ts +19 -0
  156. package/dist/typescript/module/shared/icons/index.d.ts.map +1 -0
  157. package/dist/typescript/module/shared/translation/constants.d.ts +30 -0
  158. package/dist/typescript/module/shared/translation/constants.d.ts.map +1 -1
  159. package/dist/typescript/module/shared/translation/model.d.ts +12 -0
  160. package/dist/typescript/module/shared/translation/model.d.ts.map +1 -1
  161. package/package.json +7 -3
  162. package/src/features/exampleSolution/ExampleSolutionModal.tsx +29 -0
  163. package/src/features/exampleSolution/assets/grid.png +0 -0
  164. package/src/features/exampleSolution/components/ExampleSolutionModalContent.tsx +71 -0
  165. package/src/features/exampleSolution/components/LavaIcon.tsx +35 -0
  166. package/src/features/exampleSolution/components/MessageBlock.tsx +67 -0
  167. package/src/features/exampleSolution/components/QuestionSection.tsx +56 -0
  168. package/src/features/exampleSolution/components/SolutionSection.tsx +69 -0
  169. package/src/features/exampleSolution/constants.ts +5 -0
  170. package/src/features/exampleSolution/hooks/useExampleSolution.ts +66 -0
  171. package/src/features/exampleSolution/index.ts +3 -0
  172. package/src/features/exampleSolution/model/ExampleSolution.model.ts +12 -0
  173. package/src/features/exampleSolution/model/ExampleSolutionApi.ts +33 -0
  174. package/src/features/exampleSolution/model/ExampleSolutionCache.ts +20 -0
  175. package/src/features/exampleSolution/types.ts +26 -0
  176. package/src/features/problemSelector/components/ProblemSelectorButton.tsx +1 -1
  177. package/src/index.ts +2 -0
  178. package/src/shared/icons/ExcitedLavaIcon.tsx +541 -0
  179. package/src/shared/icons/LavaIconInGlasses.tsx +489 -0
  180. package/src/shared/icons/index.ts +18 -0
  181. package/src/shared/translation/localization/ca.json +6 -0
  182. package/src/shared/translation/localization/en.json +6 -0
  183. package/src/shared/translation/localization/gb.json +6 -0
  184. package/src/shared/translation/localization/sct.json +6 -0
  185. package/src/shared/translation/localization/sw.json +6 -0
@@ -0,0 +1,616 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.LavaIconInGlasses = void 0;
7
+ var _react = _interopRequireDefault(require("react"));
8
+ var _reactNativeSvg = _interopRequireWildcard(require("react-native-svg"));
9
+ var _jsxRuntime = require("react/jsx-runtime");
10
+ function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
11
+ function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
12
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
13
+ const LavaIconInGlasses = ({
14
+ width = 80,
15
+ height = 100
16
+ }) => {
17
+ return /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.default, {
18
+ width: width,
19
+ height: height,
20
+ viewBox: "0 0 78 113",
21
+ fill: "none",
22
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.G, {
23
+ clipPath: "url(#clip0_606_428)",
24
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
25
+ d: "M75.986 60.203a35.43 35.43 0 01-1.624 3.313c-2.668 4.866-5.378 8.922-3.822 16.744 1.554 7.822.754 21.468-11.468 27.556-2.328 1.16-4.962 2.042-7.762 2.686-.824.19-1.664.36-2.514.51-.98.172-1.974.32-2.976.44-1.908.234-3.85.378-5.784.444a73.05 73.05 0 01-3.968.03c-5.314-.098-10.374-.744-14.36-1.704-1.604-.386-3.034-.822-4.236-1.294l-.072-.028C8.712 105.46-.26 97.587.006 79.594c.266-18.044 10.222-24.444 17.556-26.8 7.332-2.356 15.422-7.334 15.688-17.022.174-6.313-1.746-9.926-2.05-14.392-.162-2.392.14-5.028 1.472-8.452.488-1.13 1-2.164 1.53-3.11.384-.684.776-1.324 1.174-1.918C40.162.774 45.948-.088 48.672 1.016c.082.034.164.068.242.106.046.02.092.042.138.064a4.945 4.945 0 01.72.42c.054.038.106.074.158.114.154.114.296.232.43.358a5.558 5.558 0 011.488 2.37c.058.174.106.342.142.498.05.23-.254.368-.388.17a5.108 5.108 0 00-.546-.686c-.02-.026-.046-.05-.07-.074a3.828 3.828 0 00-.526-.466 4.375 4.375 0 00-.308-.21 2.973 2.973 0 00-.23-.132c-.05-.028-.1-.052-.152-.078a1.118 1.118 0 00-.086-.038.78.78 0 00-.094-.04c-.034-.016-.07-.03-.106-.044a3.674 3.674 0 00-.412-.132c-2.244-.578-7.2 4.334-7.732 11.556a8.557 8.557 0 00.028 1.572c.136 1.226.534 2.376 1.12 3.458 2.45 4.534 8.186 7.832 11.674 10.148 4.666 3.1 7.666 5.466 9.432 9.866.092.23.18.457.262.683.496 1.354.816 2.633.952 3.914.278 2.597-.202 5.2-1.514 8.437-2.066 5.1 1.8 8.4 5.268 3.666a19.417 19.417 0 002.508-4.652c.622-1.684.996-3.496.95-5.3-.002-.072-.004-.145-.008-.217a3.945 3.945 0 00-.012-.214c-.004-.072-.01-.144-.016-.216a9.197 9.197 0 00-.05-.471c-.012-.094-.024-.188-.04-.28-.01-.069-.02-.136-.034-.204-.016-.099-.036-.197-.056-.297-.02-.097-.042-.196-.064-.294a3.374 3.374 0 00-.038-.152 8.648 8.648 0 00-.184-.638c-.016-.051-.034-.101-.052-.153l-.066-.186c-.034-.09-.068-.18-.104-.27a7.514 7.514 0 00-.156-.364l-.002-.005a4.57 4.57 0 00-.124-.266c-.016-.034-.032-.068-.05-.102a7.323 7.323 0 00-.304-.56 6.767 6.767 0 00-.242-.392 7.52 7.52 0 00-.226-.334 4.825 4.825 0 00-.116-.163l-.008-.01a10.935 10.935 0 00-.65-.798c-.332-.37.1-.927.538-.695.052.029.104.056.156.087a14.504 14.504 0 011.158.724c.06.04.12.084.178.125a14.228 14.228 0 01.952.748c.436.373.87.793 1.292 1.264.054.063.11.124.164.188.06.069.118.137.174.207a12.76 12.76 0 011.004 1.386c.064.1.126.203.188.307l.092.156c.032.054.062.106.09.16.03.053.06.108.088.163.062.11.12.221.176.335l.082.164c.112.229.218.463.32.705.026.061.052.121.076.183l.074.186c.048.124.096.25.142.378 1.914 5.354 1.258 9.564-.376 13.454z",
26
+ fill: "url(#paint0_linear_606_428)"
27
+ }), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.G, {
28
+ style: {
29
+ mixBlendMode: 'screen'
30
+ },
31
+ opacity: 0.37,
32
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
33
+ d: "M54.184 50.772l-.132.65c-.288-.374-.838-1.5-.936-4.718-.132-4.397-1.152-6.44-2.086-8.172.036.11.694 2.084.532 4.384 0 0-.8-2.1-2.034-1.466-1.234.631-.7 2.7-.7 2.7s2.1 6.831.566 12.465c-1.532 5.63-3.798 5-4.33 2.904.054.089.802 1.259 1.83-.67 1.068-2 2.834-10.8-1.066-19.267-3.9-8.466-6.066-8.166-7.466-13.533-1.308-5.017-.724-7.905-.644-8.261-.084.284-.646 2.084-1.69 2.328-1.134.266-1.834-.466-1.834-.466s-1.288 2.724-2.994 1.73c-.162-2.392.14-5.028 1.472-8.452.488-1.13 1-2.165 1.53-3.11-.904 2.537-2.282 7.438-.108 8.932 2.978 2.044 5.2-8.446 5.2-8.446s.8.977-.222 4.934c-1.022 3.956-1.244 8.934 2.268 13.822 3.51 4.89 5.6 7.777 6.532 10.844 0 0 .4-2.089-.4-4.4 0 0 2.044 1.2 2.668 2.578 0 0 .31-1.51-1.154-4.352.082.052 2.584 1.67 4.446 7.184.114.535.262 1.06.396 1.48 0 0 1.244 3.843.356 8.378z",
34
+ fill: "url(#paint1_radial_606_428)"
35
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
36
+ d: "M41.228 50.181c-.296 3.415-2.874 6.385-2.954 6.477 1.466-2.135 2.62-7.909 1.554-8.309-.236-.087-.51.06-.826.399L39 48.75c-.684.566-1.79 1.916-3.306 5.132a24.136 24.136 0 01-3.212 5.04c-2.838 3.014-5.898 2.85-5.898 2.85 5.51-2.4 8.444-8.313 8.532-9.956.09-1.645-1.822-1.6-1.822-1.6-1.332 1.243-3.466 1.777-3.466 1.777s2.356-1.29 4.622-7.422c2.266-6.133.178-13.955.178-13.955 2.9 2.166 3.434 8.7 1.8 13.766-1.634 5.068-.2 4.834-.2 4.834 2.8-3.767 5.3-2.5 5 .965z",
37
+ fill: "url(#paint2_radial_606_428)"
38
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
39
+ d: "M66.542 58.41a2.106 2.106 0 01-.132.07l.132-.07z",
40
+ fill: "url(#paint3_radial_606_428)"
41
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
42
+ d: "M66.902 58.19z",
43
+ fill: "url(#paint4_radial_606_428)"
44
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
45
+ d: "M73.828 50.794s.622 8.978-.8 10.488c-1.268 1.348-1.9-5.388-1.958-9.418-.276.744-.6 1.464-.956 2.148.182 3.981-.898 10.4-5.952 11.803-6 1.666-6.934-6.733-2.868-12.334 2.908-4.004 3.424-7.782 3.514-9.068 0 0-1.602 6.737-4.936 8.069 0 0 1.2-12.31-4.932-17.954 0 0 4.132 5.822 2.888 13.953-1.216 7.947-1.922 9.826-1.954 9.91.046-.07.996-1.445 1.776-.71.8.757-.4 3.556.266 6.09.648 2.453 2.084 3.575 2.174 3.642-.076-.031-1.346-.537-1.95.669-.624 1.246 2.532 3.734 5.244 3.022 2.71-.71.266-2.576.266-2.576s3.29.175 5.022-3.247c1.734-3.422 1.822-5.244 1.822-5.244s.268 3.735 1.512 4c1.244.266 4.178-2.666 1.822-13.244zM63.512 67.832c-2.5.05-3.734-1.566-3.734-1.566s1.434 1.05 3.65.95c2.216-.1 3.884-1.384 3.884-1.384-.168.368-1.3 1.95-3.8 2z",
46
+ fill: "url(#paint5_radial_606_428)"
47
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
48
+ d: "M33.428 66.482l-.008.01.012.024-.004-.034zm5.556 3.868c2.31-.134 4.578-2.4 4.71-6.334l-.002.006-.004.016c-.082.354-1.202 4.834-4.66 4.578-3.366-.248-3.352-3.412-.502-7.582-.498.518-3.908 4.194-4.032 7.448 0 0-.254-.14-.516-.5-.178.518-.47 1.634-.194 2.834.378 1.644 2.91 3.068 5.91.734 0 0-3.6.578-3.778-3.246 0 0 .756 2.178 3.068 2.046zm-1.89 1.662s-.93.384-1.986-.136c-1.054-.522-1.014-2.054-1.014-2.054s.508.986 1.33 1.52c.822.534 1.67.67 1.67.67z",
49
+ fill: "url(#paint6_radial_606_428)"
50
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
51
+ d: "M22.716 54.89c-3.28.168-8.034 2.924-12.29 7.722a18.934 18.934 0 00-3.436 5.574c.358-1.724 1.466-5.324 4.698-7.9-.138.062-2.37 1.094-3.726 3.096 0 0-1.2-1.5-.868-2.7.334-1.2 1.668-1.832 2.434-1.932.766-.1 1.1.066 1.1.066s1.934-1.766 6.534-3.134c2.864-.85 4.63-.886 5.554-.792z",
52
+ fill: "url(#paint7_radial_606_428)"
53
+ })]
54
+ }), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.G, {
55
+ style: {
56
+ mixBlendMode: 'screen'
57
+ },
58
+ opacity: 0.4,
59
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
60
+ d: "M3.562 82.528l-.8-4.712S1.74 80.26 2.54 85.193c.8 4.934 3.156 7.466 5.2 8.445 2.044.977 3.734-.178 3.734-.178s-.578 2.934-4.178 1.512c0 0 1.244 3.2 4.622 1.912 3.378-1.288 3.822-6.266-.978-9.912 0 0 1.378 3.334-1.422 3.644-2.8.31-5.112-3.512-5.956-8.088z",
61
+ fill: "url(#paint8_radial_606_428)"
62
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
63
+ d: "M21.708 110.222c-1.604-.386-3.034-.822-4.236-1.294l-.072-.028c1.642-1.682-.406-4.8-2.684-4.728-2.844.088-5.154-1.244-5.154-1.244s2.354.444 5.2-.534c2.784-.958 2.16-3.493 2.134-3.597 1.998 2.269 1.954 7.375 1.954 7.375 1.754-6.054-2.508-11.718-2.62-11.867.106.076 3.486 2.566 4.886 7.423 1.044 3.618.844 6.828.592 8.494z",
64
+ fill: "url(#paint9_radial_606_428)"
65
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
66
+ d: "M70.848 90.576c-.442.578-1.222 1.232-2.52 1.34-2.4.2-2.066-2.4.266-4.666 1.276-1.24 1.944-3.269 2.288-4.85.306 2.453.362 5.28-.034 8.175z",
67
+ fill: "url(#paint10_radial_606_428)"
68
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
69
+ d: "M70.398 93.061a24.554 24.554 0 01-1.548 4.646c-1.184.033-3.372.247-5.356 1.275-2.9 1.5-4.7 1.6-5.6-.2-.9-1.8.234-4.1 2.734-6.3s3.434-4.433 3.834-6.5c0 0 .266 1.567-.2 3.468-.286 1.16.324 1.412.986 1.105-.072.572.008 1.094.246 1.56.69 1.349 2.43 2.535 4.904.947z",
70
+ fill: "url(#paint11_radial_606_428)"
71
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
72
+ d: "M63.426 102.218c-.038.084-1.302 2.766-4.664 2.848-3.356.082-5.808-1.876-5.898-1.946.028.048.348.638-.002.812-.352.176-1.802-1.572-1.928-1.722.068.134.726 1.45.394 1.64-.35.2-1.334-1.018-1.45-1.134-.116-.116-.316.984-.066 1.784 0 0-.3-.218-.534-.8 0 0-.866 1.932.084 4.166.484 1.136 1.282 2.032 1.948 2.636-.824.19-1.664.36-2.514.51-.536-.62-1.54-1.988-2.118-4.062-.816-2.934-.016-5.2-.016-5.2s.466 2.816 1.366 4.332c0 0-.066-2.132.366-2.8.434-.666.684-.332.684-.332s-.034-1.034.516-.984c0 0-.066-.634.05-1.05.118-.416.334-.266.334-.266s-.634-2.735 1-4.95c1.634-2.219 3.466-2.669 5.616-3.85 2.058-1.132 3.138-1.93 3.228-1.994-.124.122-2.15 2.112-4.96 3.694-2.9 1.632-4.068 4.7-2.9 7.266 1.166 2.566 6.264 4.3 11.464 1.402z",
73
+ fill: "url(#paint12_radial_606_428)"
74
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
75
+ opacity: 0.6,
76
+ d: "M48.494 94.816c-1.832 3.165-5.866 6.766-4.9 11.4.594 2.848 1.566 4.436 2.226 5.236-1.908.234-3.85.378-5.784.444a73.05 73.05 0 01-3.968.03c-.454-1.672.168-3.19 1.158-4.442.578-.732 1.28-1.372 1.968-1.902 2.468-1.9 3.1-1.966 4.8-4.866 1.7-2.9.134-6.434 1.6-9.1 1.468-2.666 4.734.034 2.9 3.2z",
77
+ fill: "url(#paint13_radial_606_428)"
78
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
79
+ opacity: 0.5,
80
+ d: "M34.046 80.578s3.434 1.861 5.188 5.843c1.754 3.982 1.754 4.42 1.754 4.42s-1.06-1.06-2.192-.438c-1.132.62-1.57.84-1.498 1.862.072 1.022-.146 3.032-.146 3.032s-.414-5.563-2.46-8.56c-2.046-2.995-2.922-2.703-2.63-4.822.292-2.118 1.984-1.34 1.984-1.34v.002z",
81
+ fill: "url(#paint14_radial_606_428)"
82
+ })]
83
+ }), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.G, {
84
+ style: {
85
+ mixBlendMode: 'multiply'
86
+ },
87
+ opacity: 0.6,
88
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
89
+ d: "M70.114 54.012c-.472.908-1 1.75-1.552 2.504-3.468 4.734-7.334 1.434-5.268-3.666 1.312-3.236 1.792-5.84 1.514-8.436-.09 1.286-.606 5.064-3.514 9.068-4.066 5.6-3.132 14 2.868 12.334 5.054-1.404 6.134-7.822 5.952-11.804zm-7.842 6.648c-1.778-.71-1.11-4.4-.444-5.778 0 0-.312 3.068.934 4.222 1.214 1.128 2.64.732 2.708.714-.07.076-1.466 1.536-3.198.842z",
90
+ fill: "url(#paint15_linear_606_428)"
91
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
92
+ d: "M41.916 37.328s5.778 13.155 1.866 20.265c-3.912 7.11-4.222 8.222-3.222 8.556 1 .335 2.534-.665 3.134-2.133 0 0-1.066 4.865-4.666 4.6-3.6-.266-3.334-3.867.134-8.466 3.468-4.6 5.712-11.645 2.756-22.822h-.002z",
93
+ fill: "url(#paint16_radial_606_428)"
94
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
95
+ d: "M39.828 48.35s-.4 2.8-3.4 8.466c-3 5.666-8.166 8.934-12.034 8.8-3.866-.134-5.1-2.6-3.5-5.035 1.6-2.431 3.834-3.131 4.034-3.965.2-.834-1.4-.8-1.4-.8s.2.566-.066 1.234c-.268.666-2.368.9-6.168 3.6-1.76 1.252-3.994 3.74-5.81 6.688 1.482-6.166 7.21-9.956 7.21-9.956s-4.232 1.867-6.8 6.268c-1.934 3.318-2.22 6.048-2.244 7.19-1.074 2.481-1.688 5.064-1.422 7.376.734 6.4 4.134 9.666 3.134 11.4-1 1.734-4.4 1.933-6.6-2.266-2.2-4.2-2-9.534-2-9.534s.666 4 2.532 7.666c1.868 3.668 3.534 2.334 2.934.334-.314-1.046-1.642-4.048-2.286-7.788-.956-5.546.75-11.207 4.484-15.417 4.394-4.951 9.318-7.73 12.602-7.73 4.134 0 3.356 2.023.934 3.779-2.358 1.71-4.534 5.29-.468 5.622 4.068.334 9.468-4.6 12.2-10.4 2.734-5.8 4.134-5.532 4.134-5.532z",
96
+ fill: "url(#paint17_radial_606_428)"
97
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
98
+ d: "M53.828 42.394s1.244 3.843.356 8.378c-.888 4.534-1.888 6.977-2.222 8.511-.334 1.535.112 3.444.112 3.444s.378-1.665 2.222-5.133c1.844-3.468 2.6-9.223 2.312-12.688-.288-3.466-.934-6.556-2.444-6.756-1.51-.2-.822 2.712-.334 4.244h-.002z",
99
+ fill: "url(#paint18_radial_606_428)"
100
+ })]
101
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
102
+ d: "M51.602 5.116a5.108 5.108 0 00-.546-.686c-.02-.026-.046-.05-.07-.074a3.828 3.828 0 00-.526-.466 4.375 4.375 0 00-.308-.21 2.973 2.973 0 00-.23-.132c-.05-.028-.1-.052-.152-.078a1.118 1.118 0 00-.086-.038.78.78 0 00-.094-.04c-.034-.016-.07-.03-.106-.044a3.674 3.674 0 00-.412-.132c-2.244-.578-7.2 4.334-7.732 11.556a8.557 8.557 0 00.028 1.572c-1.154-6.238 2.776-10.06.372-11.372-2.064-1.126-4.878 1.358-6.364 2.928C40.162.774 45.948-.088 48.672 1.016c.082.034.164.068.242.106.046.02.092.042.138.064a4.945 4.945 0 01.72.42c.054.038.106.074.158.114.154.114.296.232.43.358a5.558 5.558 0 011.488 2.37c.058.174.106.342.142.498.05.23-.254.368-.388.17z",
103
+ fill: "url(#paint19_radial_606_428)"
104
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
105
+ d: "M63.594 39.816c.092.23.18.457.262.683a6.24 6.24 0 01-.162-.328c-2.222-4.8-6.488-6.934-10.132-7.468-3.646-.532-5.778-3.022-10.578-11.91a16.946 16.946 0 01-.496-.991c2.45 4.534 8.186 7.832 11.674 10.148 4.666 3.1 7.666 5.466 9.432 9.866z",
106
+ fill: "url(#paint20_radial_606_428)"
107
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
108
+ d: "M76.406 58.837c2.756-6.934-1.156-14.044-2.756-13.956-1.6.09-1.6 1.69-1.6 1.69l-.03-.008c-.002-.072-.004-.144-.008-.216-.004-.072-.006-.142-.012-.214-.004-.072-.01-.143-.016-.215a9.205 9.205 0 00-.09-.752 3.607 3.607 0 00-.034-.204 15.442 15.442 0 00-.158-.742l-.042-.16a8.648 8.648 0 00-.142-.479l-.052-.154-.066-.185a8.446 8.446 0 00-.104-.27c-.03-.077-.062-.15-.094-.224a2.137 2.137 0 00-.062-.14l-.002-.005a4.57 4.57 0 00-.124-.266 2.389 2.389 0 00-.05-.101 7.323 7.323 0 00-.304-.56 5.196 5.196 0 00-.136-.226c-.034-.056-.068-.113-.106-.167a7.513 7.513 0 00-.226-.333 4.825 4.825 0 00-.116-.164l-.008-.01a10.94 10.94 0 00-.65-.798c-.332-.37.1-.926.538-.694a14.511 14.511 0 011.314.81c.06.04.12.084.178.126a14.235 14.235 0 01.952.748c.436.372.87.791 1.292 1.263.054.063.11.124.164.188.06.069.118.137.174.207a12.76 12.76 0 011.004 1.386c.064.1.126.203.188.307l.092.156c.032.054.062.106.09.16.03.053.06.108.088.163.062.11.12.221.176.335l.082.164c.112.229.218.463.32.705.026.061.052.122.076.184a16.594 16.594 0 01.216.564c1.914 5.354 1.258 9.563-.376 13.453a8.41 8.41 0 01.42-1.366z",
109
+ fill: "url(#paint21_radial_606_428)"
110
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
111
+ opacity: 0.4,
112
+ d: "M40.828 109.304c-1.178.066-.386-2.118-.358-2.198-.06.038-1.262.816-1.198 2.332.04.916.442 1.846.764 2.458a73.05 73.05 0 01-3.968.03c-.454-1.672.168-3.19 1.158-4.442 1.05-.996 2.782-2.322 3.78-1.668 1.488.978 1.022 3.422-.178 3.488z",
113
+ fill: "url(#paint22_radial_606_428)"
114
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
115
+ d: "M59.05 82.755c-1.686 2.939-5.638 4.913-9.834 4.913-2.916 0-5.376-.97-6.926-2.73-1.308-1.487-1.78-3.669-1.326-6.147.712-3.88 3.476-7.694 6.88-9.492 3.528-1.864 6.75-2.142 8.354-2.142 1.902 0 3.148.359 3.638.665.67.418.818.927.824 1.284.006.413-.176.704-.254.756l-.178.12.042.21c.016.076 1.54 7.76-1.22 12.564z",
116
+ fill: "#fff"
117
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
118
+ d: "M41.728 83.95s1.234-4.3 8.634-6.5 4.766-7.666 4.766-7.666-3.2-.567-4.266-.235c-1.066.332-2.4.334-3 .8-.6.466-2.734 1.334-3.634 2.3-.9.966-2.066 2.966-2.4 3.7-.334.734-.566.966-.734 2.266-.168 1.3-.234 1.235-.334 2.267-.1 1.031.966 3.066.966 3.066l.002.002z",
119
+ fill: "url(#paint23_linear_606_428)"
120
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
121
+ d: "M60.584 70.127c.4-.267.844-1.69-.578-2.578-1.422-.89-6.804-1.442-12.312 1.466-5.932 3.135-9.432 11.835-5.644 16.135 4.218 4.785 14.178 3.165 17.278-2.235 2.854-4.97 1.256-12.788 1.256-12.788zm-1.228 9.874c-.912 3.46-3.776 6.022-7.26 6.832-.932.219-1.902.335-2.878.335-2.772 0-5.098-.91-6.552-2.56-.004-.007-.01-.01-.014-.017-.762-.873-1.112-2.031-1.044-3.191.092-1.589.624-4.319 2.886-7.097 3.512-4.31 9.6-5.243 12.178-3.865 0 0 2.068 1.111 2.868 5.912A8.623 8.623 0 0159.356 80z",
122
+ fill: "#4C2549"
123
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
124
+ d: "M55.19 83.224c2.911-.437 4.761-4.186 4.132-8.373-.628-4.187-3.498-7.226-6.409-6.79-2.911.438-4.761 4.186-4.132 8.373.628 4.187 3.498 7.227 6.409 6.79z",
125
+ fill: "#4C2549"
126
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
127
+ d: "M48.894 79.816a2.466 2.466 0 100-4.933 2.466 2.466 0 000 4.933zM12.032 82.622c1.686 2.938 5.638 4.912 9.834 4.912 2.916 0 5.376-.97 6.926-2.73 1.308-1.486 1.78-3.668 1.326-6.146-.712-3.88-3.476-7.694-6.88-9.492-3.528-1.864-6.75-2.142-8.354-2.142-1.902 0-3.148.358-3.638.664-.67.418-.818.928-.824 1.284-.006.414.176.704.254.756l.178.12-.042.21c-.016.076-1.54 7.76 1.22 12.564z",
128
+ fill: "#fff"
129
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
130
+ d: "M29.354 83.816s-1.234-4.3-8.634-6.5-10.316-1.945-10.316-1.945 3.734-7.265 4.8-6.933c1.066.334 7.416 1.311 8.016 1.778.6.466 2.734 1.334 3.634 2.3.9.965 2.066 2.965 2.4 3.7.334.734.566.966.734 2.266.166 1.3.234 1.234.334 2.266.1 1.033-.966 3.066-.966 3.066l-.002.002z",
131
+ fill: "url(#paint24_linear_606_428)"
132
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
133
+ d: "M11.754 82.781c3.1 5.4 13.06 7.02 17.278 2.234 3.788-4.3.288-13-5.644-16.133-5.508-2.909-10.89-2.357-12.312-1.467-1.422.888-.978 2.31-.578 2.578 0 0-1.598 7.819 1.256 12.788zm-.212-6.566c.8-4.8 2.868-5.912 2.868-5.912 2.578-1.377 8.666-.444 12.178 3.867 2.262 2.778 2.794 5.507 2.886 7.096.068 1.16-.282 2.317-1.044 3.191-.004.007-.01.01-.014.017-1.454 1.65-3.78 2.56-6.552 2.56-.976 0-1.946-.117-2.878-.335-3.484-.81-6.348-3.371-7.26-6.831a8.623 8.623 0 01-.184-3.652z",
134
+ fill: "#4C2549"
135
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
136
+ d: "M27.02 73.334c-.664-.815-1.368-1.61-2.23-2.216-.63-.444-1.294-.837-1.948-1.244-.674-.192-1.354-.36-2.022-.528a1.236 1.236 0 01-.092-.029c-1.404 1.459-2.294 3.859-2.238 6.557.09 4.368 2.626 7.858 5.662 7.796 2.848-.06 5.124-3.22 5.324-7.216-.74-1.1-1.64-2.12-2.456-3.118v-.002z",
137
+ fill: "#4C2549"
138
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
139
+ d: "M18.188 80.181a2.466 2.466 0 100-4.932 2.466 2.466 0 000 4.933z",
140
+ fill: "#fff"
141
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.G, {
142
+ opacity: 0.24,
143
+ filter: "url(#filter0_f_606_428)",
144
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
145
+ d: "M30.61 84.508c0 5.904-5.256 11.11-11.61 11.11-6.354 0-11.4-5.206-11.4-11.11 0-5.904 5.046-11.29 11.4-11.29s11.61 5.386 11.61 11.29z",
146
+ fill: "#fff"
147
+ })
148
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.G, {
149
+ opacity: 0.24,
150
+ filter: "url(#filter1_f_606_428)",
151
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
152
+ d: "M62.2 84.508c0 5.904-5.336 11.31-11.7 11.31-6.364 0-11.186-5.406-11.186-11.31 0-5.904 4.822-11.39 11.186-11.39s11.7 5.486 11.7 11.39z",
153
+ fill: "#fff"
154
+ })
155
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
156
+ d: "M18.994 96.651c-6.784 0-12.304-5.52-12.304-12.303 0-6.784 5.52-12.305 12.304-12.305 6.784 0 12.304 5.52 12.304 12.304 0 6.785-5.52 12.305-12.304 12.305zm0-22.865c-5.824 0-10.564 4.737-10.564 10.564 0 5.826 4.738 10.564 10.564 10.564s10.564-4.739 10.564-10.564c0-5.826-4.738-10.564-10.564-10.564zM50.462 96.651c-6.784 0-12.304-5.52-12.304-12.303 0-6.784 5.52-12.305 12.304-12.305 6.784 0 12.304 5.52 12.304 12.304 0 6.785-5.52 12.305-12.304 12.305zm0-22.865c-5.824 0-10.564 4.737-10.564 10.564 0 5.826 4.738 10.564 10.564 10.564s10.564-4.739 10.564-10.564c0-5.826-4.738-10.564-10.564-10.564z",
157
+ fill: "#4C2549"
158
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
159
+ d: "M38.386 83.501a5.456 5.456 0 00-3.958-1.681 5.495 5.495 0 00-3.63 1.368l-1.15-1.306a7.23 7.23 0 014.78-1.803c1.984 0 3.834.787 5.21 2.215L38.386 83.5zM28.618 96.528c.13.283.466.407.748.273.87-.416 2.734-1.156 4.508-.895 1.64.24 2.924 1.067 3.582 1.575a.75.75 0 00.978-1.138c-.682-.663-1.988-1.706-3.716-2.016-2.372-.425-4.838.519-5.968 1.556a.56.56 0 00-.13.645h-.002zM30.918 60.828a.64.64 0 00-.822-.105c-.976.639-3.454 2.049-6.29 2.049s-4.51-.804-5.164-1.182a.414.414 0 00-.5.65c.692.685 2.828 2.453 6.396 2.4 3.568-.055 5.562-2.032 6.384-2.947a.642.642 0 00-.004-.863v-.002zM44.458 57.998a.64.64 0 00.822.104c.976-.638 3.454-2.048 6.29-2.048s4.51.803 5.164 1.181a.414.414 0 00.5-.65c-.692-.685-2.828-2.453-6.396-2.4-3.568.054-5.562 2.032-6.384 2.947a.642.642 0 00.004.864v.002z",
160
+ fill: "#4C2549"
161
+ })]
162
+ }), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.Defs, {
163
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.LinearGradient, {
164
+ id: "paint0_linear_606_428",
165
+ x1: 38.7658,
166
+ y1: 60.0815,
167
+ x2: 38.7658,
168
+ y2: 94.4835,
169
+ gradientUnits: "userSpaceOnUse",
170
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
171
+ stopColor: "#FD7518"
172
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
173
+ offset: 1,
174
+ stopColor: "#F6255C"
175
+ })]
176
+ }), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.RadialGradient, {
177
+ id: "paint1_radial_606_428",
178
+ cx: 0,
179
+ cy: 0,
180
+ r: 1,
181
+ gradientUnits: "userSpaceOnUse",
182
+ gradientTransform: "translate(39.18 33.772) scale(35.432)",
183
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
184
+ stopColor: "#F7FF9B"
185
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
186
+ offset: 1,
187
+ stopColor: "#F7FF9B",
188
+ stopOpacity: 0
189
+ })]
190
+ }), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.RadialGradient, {
191
+ id: "paint2_radial_606_428",
192
+ cx: 0,
193
+ cy: 0,
194
+ r: 1,
195
+ gradientUnits: "userSpaceOnUse",
196
+ gradientTransform: "matrix(-7.4662 28.62223 -16.6009 -4.3304 41.265 51.679)",
197
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
198
+ stopColor: "#F7FF9B"
199
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
200
+ offset: 1,
201
+ stopColor: "#F7FF9B",
202
+ stopOpacity: 0
203
+ })]
204
+ }), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.RadialGradient, {
205
+ id: "paint3_radial_606_428",
206
+ cx: 0,
207
+ cy: 0,
208
+ r: 1,
209
+ gradientUnits: "userSpaceOnUse",
210
+ gradientTransform: "matrix(.136 0 0 .136 66.468 58.456)",
211
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
212
+ stopColor: "#F7FF9B"
213
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
214
+ offset: 1,
215
+ stopColor: "#F7FF9B",
216
+ stopOpacity: 0
217
+ })]
218
+ }), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.RadialGradient, {
219
+ id: "paint4_radial_606_428",
220
+ cx: 0,
221
+ cy: 0,
222
+ r: 1,
223
+ gradientUnits: "userSpaceOnUse",
224
+ gradientTransform: "matrix(.344 0 0 .344 66.72 58.324)",
225
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
226
+ stopColor: "#F7FF9B"
227
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
228
+ offset: 1,
229
+ stopColor: "#F7FF9B",
230
+ stopOpacity: 0
231
+ })]
232
+ }), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.RadialGradient, {
233
+ id: "paint5_radial_606_428",
234
+ cx: 0,
235
+ cy: 0,
236
+ r: 1,
237
+ gradientUnits: "userSpaceOnUse",
238
+ gradientTransform: "translate(63.694 59.016) scale(29.144)",
239
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
240
+ stopColor: "#F7FF9B"
241
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
242
+ offset: 1,
243
+ stopColor: "#F7FF9B",
244
+ stopOpacity: 0
245
+ })]
246
+ }), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.RadialGradient, {
247
+ id: "paint6_radial_606_428",
248
+ cx: 0,
249
+ cy: 0,
250
+ r: 1,
251
+ gradientUnits: "userSpaceOnUse",
252
+ gradientTransform: "translate(40.978 64.882) scale(15.258)",
253
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
254
+ stopColor: "#F7FF9B"
255
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
256
+ offset: 1,
257
+ stopColor: "#F7FF9B",
258
+ stopOpacity: 0
259
+ })]
260
+ }), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.RadialGradient, {
261
+ id: "paint7_radial_606_428",
262
+ cx: 0,
263
+ cy: 0,
264
+ r: 1,
265
+ gradientUnits: "userSpaceOnUse",
266
+ gradientTransform: "translate(10.318 59.058) scale(13.63)",
267
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
268
+ stopColor: "#F7FF9B"
269
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
270
+ offset: 1,
271
+ stopColor: "#F7FF9B",
272
+ stopOpacity: 0
273
+ })]
274
+ }), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.RadialGradient, {
275
+ id: "paint8_radial_606_428",
276
+ cx: 0,
277
+ cy: 0,
278
+ r: 1,
279
+ gradientUnits: "userSpaceOnUse",
280
+ gradientTransform: "translate(11.25 83.55) scale(16.124)",
281
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
282
+ stopColor: "#FFDBB2"
283
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
284
+ offset: 1,
285
+ stopColor: "#FFDBB2",
286
+ stopOpacity: 0
287
+ })]
288
+ }), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.RadialGradient, {
289
+ id: "paint9_radial_606_428",
290
+ cx: 0,
291
+ cy: 0,
292
+ r: 1,
293
+ gradientUnits: "userSpaceOnUse",
294
+ gradientTransform: "translate(26.094 102.394) scale(20.576)",
295
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
296
+ stopColor: "#FFDBB2"
297
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
298
+ offset: 1,
299
+ stopColor: "#FFDBB2",
300
+ stopOpacity: 0
301
+ })]
302
+ }), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.RadialGradient, {
303
+ id: "paint10_radial_606_428",
304
+ cx: 0,
305
+ cy: 0,
306
+ r: 1,
307
+ gradientUnits: "userSpaceOnUse",
308
+ gradientTransform: "translate(73.828 101.594) scale(20.064)",
309
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
310
+ stopColor: "#FFDBB2"
311
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
312
+ offset: 1,
313
+ stopColor: "#FFDBB2",
314
+ stopOpacity: 0
315
+ })]
316
+ }), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.RadialGradient, {
317
+ id: "paint11_radial_606_428",
318
+ cx: 0,
319
+ cy: 0,
320
+ r: 1,
321
+ gradientUnits: "userSpaceOnUse",
322
+ gradientTransform: "translate(73.828 101.594) scale(20.064)",
323
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
324
+ stopColor: "#FFDBB2"
325
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
326
+ offset: 1,
327
+ stopColor: "#FFDBB2",
328
+ stopOpacity: 0
329
+ })]
330
+ }), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.RadialGradient, {
331
+ id: "paint12_radial_606_428",
332
+ cx: 0,
333
+ cy: 0,
334
+ r: 1,
335
+ gradientUnits: "userSpaceOnUse",
336
+ gradientTransform: "translate(55.428 114.75) scale(23.364)",
337
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
338
+ stopColor: "#FFDBB2"
339
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
340
+ offset: 1,
341
+ stopColor: "#FFDBB2",
342
+ stopOpacity: 0
343
+ })]
344
+ }), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.RadialGradient, {
345
+ id: "paint13_radial_606_428",
346
+ cx: 0,
347
+ cy: 0,
348
+ r: 1,
349
+ gradientUnits: "userSpaceOnUse",
350
+ gradientTransform: "translate(37.594 111.18) scale(21.066)",
351
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
352
+ stopColor: "#FFDBB2"
353
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
354
+ offset: 1,
355
+ stopColor: "#FFDBB2",
356
+ stopOpacity: 0
357
+ })]
358
+ }), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.RadialGradient, {
359
+ id: "paint14_radial_606_428",
360
+ cx: 0,
361
+ cy: 0,
362
+ r: 1,
363
+ gradientUnits: "userSpaceOnUse",
364
+ gradientTransform: "matrix(9.96 0 0 9.96 39.916 83.903)",
365
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
366
+ stopColor: "#FFDBB2"
367
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
368
+ offset: 1,
369
+ stopColor: "#FFDBB2",
370
+ stopOpacity: 0
371
+ })]
372
+ }), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.LinearGradient, {
373
+ id: "paint15_linear_606_428",
374
+ x1: 63.9518,
375
+ y1: 57.0637,
376
+ x2: 69.2838,
377
+ y2: 49.7757,
378
+ gradientUnits: "userSpaceOnUse",
379
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
380
+ stopColor: "#DA5B50"
381
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
382
+ offset: 1,
383
+ stopColor: "#DA5B50",
384
+ stopOpacity: 0
385
+ })]
386
+ }), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.RadialGradient, {
387
+ id: "paint16_radial_606_428",
388
+ cx: 0,
389
+ cy: 0,
390
+ r: 1,
391
+ gradientUnits: "userSpaceOnUse",
392
+ gradientTransform: "translate(37.294 66.838) scale(26.676)",
393
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
394
+ stopColor: "#DA5B50"
395
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
396
+ offset: 0.16,
397
+ stopColor: "#DA5B50",
398
+ stopOpacity: 0.98
399
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
400
+ offset: 0.3,
401
+ stopColor: "#DA5B50",
402
+ stopOpacity: 0.94
403
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
404
+ offset: 0.43,
405
+ stopColor: "#DA5B50",
406
+ stopOpacity: 0.85
407
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
408
+ offset: 0.55,
409
+ stopColor: "#DA5B50",
410
+ stopOpacity: 0.74
411
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
412
+ offset: 0.67,
413
+ stopColor: "#DA5B50",
414
+ stopOpacity: 0.59
415
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
416
+ offset: 0.79,
417
+ stopColor: "#DA5B50",
418
+ stopOpacity: 0.41
419
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
420
+ offset: 0.91,
421
+ stopColor: "#DA5B50",
422
+ stopOpacity: 0.2
423
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
424
+ offset: 1,
425
+ stopColor: "#DA5B50",
426
+ stopOpacity: 0
427
+ })]
428
+ }), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.RadialGradient, {
429
+ id: "paint17_radial_606_428",
430
+ cx: 0,
431
+ cy: 0,
432
+ r: 1,
433
+ gradientUnits: "userSpaceOnUse",
434
+ gradientTransform: "translate(15.228 64.216) scale(30.292)",
435
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
436
+ stopColor: "#DA5B50"
437
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
438
+ offset: 0.2,
439
+ stopColor: "#DA5B50",
440
+ stopOpacity: 0.99
441
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
442
+ offset: 0.34,
443
+ stopColor: "#DA5B50",
444
+ stopOpacity: 0.94
445
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
446
+ offset: 0.46,
447
+ stopColor: "#DA5B50",
448
+ stopOpacity: 0.87
449
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
450
+ offset: 0.58,
451
+ stopColor: "#DA5B50",
452
+ stopOpacity: 0.77
453
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
454
+ offset: 0.68,
455
+ stopColor: "#DA5B50",
456
+ stopOpacity: 0.64
457
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
458
+ offset: 0.78,
459
+ stopColor: "#DA5B50",
460
+ stopOpacity: 0.48
461
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
462
+ offset: 0.88,
463
+ stopColor: "#DA5B50",
464
+ stopOpacity: 0.29
465
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
466
+ offset: 0.97,
467
+ stopColor: "#DA5B50",
468
+ stopOpacity: 0.07
469
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
470
+ offset: 1,
471
+ stopColor: "#DA5B50",
472
+ stopOpacity: 0
473
+ })]
474
+ }), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.RadialGradient, {
475
+ id: "paint18_radial_606_428",
476
+ cx: 0,
477
+ cy: 0,
478
+ r: 1,
479
+ gradientUnits: "userSpaceOnUse",
480
+ gradientTransform: "translate(53.562 60.971) scale(20.796)",
481
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
482
+ stopColor: "#DA5B50"
483
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
484
+ offset: 0.25,
485
+ stopColor: "#DA5B50",
486
+ stopOpacity: 0.99
487
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
488
+ offset: 0.4,
489
+ stopColor: "#DA5B50",
490
+ stopOpacity: 0.95
491
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
492
+ offset: 0.51,
493
+ stopColor: "#DA5B50",
494
+ stopOpacity: 0.89
495
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
496
+ offset: 0.61,
497
+ stopColor: "#DA5B50",
498
+ stopOpacity: 0.8
499
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
500
+ offset: 0.71,
501
+ stopColor: "#DA5B50",
502
+ stopOpacity: 0.68
503
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
504
+ offset: 0.79,
505
+ stopColor: "#DA5B50",
506
+ stopOpacity: 0.53
507
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
508
+ offset: 0.87,
509
+ stopColor: "#DA5B50",
510
+ stopOpacity: 0.36
511
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
512
+ offset: 0.95,
513
+ stopColor: "#DA5B50",
514
+ stopOpacity: 0.17
515
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
516
+ offset: 1,
517
+ stopColor: "#DA5B50",
518
+ stopOpacity: 0
519
+ })]
520
+ }), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.RadialGradient, {
521
+ id: "paint19_radial_606_428",
522
+ cx: 0,
523
+ cy: 0,
524
+ r: 1,
525
+ gradientUnits: "userSpaceOnUse",
526
+ gradientTransform: "translate(48.76 -9.65) scale(19.502)",
527
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
528
+ stopColor: "#F7CE28"
529
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
530
+ offset: 1,
531
+ stopColor: "#F7FF9B",
532
+ stopOpacity: 0
533
+ })]
534
+ }), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.RadialGradient, {
535
+ id: "paint20_radial_606_428",
536
+ cx: 0,
537
+ cy: 0,
538
+ r: 1,
539
+ gradientUnits: "userSpaceOnUse",
540
+ gradientTransform: "translate(53.916 10.75) scale(25.994)",
541
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
542
+ stopColor: "#F7CE28"
543
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
544
+ offset: 1,
545
+ stopColor: "#F7FF9B",
546
+ stopOpacity: 0
547
+ })]
548
+ }), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.RadialGradient, {
549
+ id: "paint21_radial_606_428",
550
+ cx: 0,
551
+ cy: 0,
552
+ r: 1,
553
+ gradientUnits: "userSpaceOnUse",
554
+ gradientTransform: "translate(62.68 29.893) scale(24.244)",
555
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
556
+ stopColor: "#F7CE28"
557
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
558
+ offset: 1,
559
+ stopColor: "#F7FF9B",
560
+ stopOpacity: 0
561
+ })]
562
+ }), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.RadialGradient, {
563
+ id: "paint22_radial_606_428",
564
+ cx: 0,
565
+ cy: 0,
566
+ r: 1,
567
+ gradientUnits: "userSpaceOnUse",
568
+ gradientTransform: "translate(33.128 113.782) scale(12.534)",
569
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
570
+ stopColor: "#FFDBB2"
571
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
572
+ offset: 1,
573
+ stopColor: "#FFDBB2",
574
+ stopOpacity: 0
575
+ })]
576
+ }), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.LinearGradient, {
577
+ id: "paint23_linear_606_428",
578
+ x1: 47.7238,
579
+ y1: 75.4775,
580
+ x2: 48.8238,
581
+ y2: 77.6455,
582
+ gradientUnits: "userSpaceOnUse",
583
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
584
+ stopColor: "#F4D7F0"
585
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
586
+ offset: 1,
587
+ stopColor: "#F5D9F1",
588
+ stopOpacity: 0
589
+ })]
590
+ }), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.LinearGradient, {
591
+ id: "paint24_linear_606_428",
592
+ x1: 22.074,
593
+ y1: 75.2695,
594
+ x2: 20.854,
595
+ y2: 77.6755,
596
+ gradientUnits: "userSpaceOnUse",
597
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
598
+ stopColor: "#F4D7F0"
599
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
600
+ offset: 1,
601
+ stopColor: "#F5D9F1",
602
+ stopOpacity: 0
603
+ })]
604
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.ClipPath, {
605
+ id: "clip0_606_428",
606
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
607
+ fill: "#fff",
608
+ transform: "translate(0 .618)",
609
+ d: "M0 0H77.6V111.4H0z"
610
+ })
611
+ })]
612
+ })]
613
+ });
614
+ };
615
+ exports.LavaIconInGlasses = LavaIconInGlasses;
616
+ //# sourceMappingURL=LavaIconInGlasses.js.map