@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.
- package/dist/commonjs/features/exampleSolution/ExampleSolutionModal.js +31 -0
- package/dist/commonjs/features/exampleSolution/ExampleSolutionModal.js.map +1 -0
- package/dist/commonjs/features/exampleSolution/assets/grid.png +0 -0
- package/dist/commonjs/features/exampleSolution/components/ExampleSolutionModalContent.js +97 -0
- package/dist/commonjs/features/exampleSolution/components/ExampleSolutionModalContent.js.map +1 -0
- package/dist/commonjs/features/exampleSolution/components/LavaIcon.js +44 -0
- package/dist/commonjs/features/exampleSolution/components/LavaIcon.js.map +1 -0
- package/dist/commonjs/features/exampleSolution/components/MessageBlock.js +61 -0
- package/dist/commonjs/features/exampleSolution/components/MessageBlock.js.map +1 -0
- package/dist/commonjs/features/exampleSolution/components/QuestionSection.js +68 -0
- package/dist/commonjs/features/exampleSolution/components/QuestionSection.js.map +1 -0
- package/dist/commonjs/features/exampleSolution/components/SolutionSection.js +75 -0
- package/dist/commonjs/features/exampleSolution/components/SolutionSection.js.map +1 -0
- package/dist/commonjs/features/exampleSolution/constants.js +13 -0
- package/dist/commonjs/features/exampleSolution/constants.js.map +1 -0
- package/dist/commonjs/features/exampleSolution/hooks/useExampleSolution.js +61 -0
- package/dist/commonjs/features/exampleSolution/hooks/useExampleSolution.js.map +1 -0
- package/dist/commonjs/features/exampleSolution/index.js +39 -0
- package/dist/commonjs/features/exampleSolution/index.js.map +1 -0
- package/dist/commonjs/features/exampleSolution/model/ExampleSolution.model.js +22 -0
- package/dist/commonjs/features/exampleSolution/model/ExampleSolution.model.js.map +1 -0
- package/dist/commonjs/features/exampleSolution/model/ExampleSolutionApi.js +32 -0
- package/dist/commonjs/features/exampleSolution/model/ExampleSolutionApi.js.map +1 -0
- package/dist/commonjs/features/exampleSolution/model/ExampleSolutionCache.js +18 -0
- package/dist/commonjs/features/exampleSolution/model/ExampleSolutionCache.js.map +1 -0
- package/dist/commonjs/features/exampleSolution/types.js +6 -0
- package/dist/commonjs/features/exampleSolution/types.js.map +1 -0
- package/dist/commonjs/features/problemSelector/components/ProblemSelectorButton.js +1 -1
- package/dist/commonjs/features/problemSelector/components/ProblemSelectorButton.js.map +1 -1
- package/dist/commonjs/index.js +24 -0
- package/dist/commonjs/index.js.map +1 -1
- package/dist/commonjs/shared/icons/ExcitedLavaIcon.js +681 -0
- package/dist/commonjs/shared/icons/ExcitedLavaIcon.js.map +1 -0
- package/dist/commonjs/shared/icons/LavaIconInGlasses.js +616 -0
- package/dist/commonjs/shared/icons/LavaIconInGlasses.js.map +1 -0
- package/dist/commonjs/shared/icons/index.js +204 -0
- package/dist/commonjs/shared/icons/index.js.map +1 -0
- package/dist/commonjs/shared/translation/localization/ca.json +6 -0
- package/dist/commonjs/shared/translation/localization/en.json +6 -0
- package/dist/commonjs/shared/translation/localization/gb.json +6 -0
- package/dist/commonjs/shared/translation/localization/sct.json +6 -0
- package/dist/commonjs/shared/translation/localization/sw.json +6 -0
- package/dist/module/features/exampleSolution/ExampleSolutionModal.js +25 -0
- package/dist/module/features/exampleSolution/ExampleSolutionModal.js.map +1 -0
- package/dist/module/features/exampleSolution/assets/grid.png +0 -0
- package/dist/module/features/exampleSolution/components/ExampleSolutionModalContent.js +91 -0
- package/dist/module/features/exampleSolution/components/ExampleSolutionModalContent.js.map +1 -0
- package/dist/module/features/exampleSolution/components/LavaIcon.js +36 -0
- package/dist/module/features/exampleSolution/components/LavaIcon.js.map +1 -0
- package/dist/module/features/exampleSolution/components/MessageBlock.js +53 -0
- package/dist/module/features/exampleSolution/components/MessageBlock.js.map +1 -0
- package/dist/module/features/exampleSolution/components/QuestionSection.js +60 -0
- package/dist/module/features/exampleSolution/components/QuestionSection.js.map +1 -0
- package/dist/module/features/exampleSolution/components/SolutionSection.js +67 -0
- package/dist/module/features/exampleSolution/components/SolutionSection.js.map +1 -0
- package/dist/module/features/exampleSolution/constants.js +9 -0
- package/dist/module/features/exampleSolution/constants.js.map +1 -0
- package/dist/module/features/exampleSolution/hooks/useExampleSolution.js +56 -0
- package/dist/module/features/exampleSolution/hooks/useExampleSolution.js.map +1 -0
- package/dist/module/features/exampleSolution/index.js +6 -0
- package/dist/module/features/exampleSolution/index.js.map +1 -0
- package/dist/module/features/exampleSolution/model/ExampleSolution.model.js +17 -0
- package/dist/module/features/exampleSolution/model/ExampleSolution.model.js.map +1 -0
- package/dist/module/features/exampleSolution/model/ExampleSolutionApi.js +27 -0
- package/dist/module/features/exampleSolution/model/ExampleSolutionApi.js.map +1 -0
- package/dist/module/features/exampleSolution/model/ExampleSolutionCache.js +13 -0
- package/dist/module/features/exampleSolution/model/ExampleSolutionCache.js.map +1 -0
- package/dist/module/features/exampleSolution/types.js +4 -0
- package/dist/module/features/exampleSolution/types.js.map +1 -0
- package/dist/module/features/problemSelector/components/ProblemSelectorButton.js +1 -1
- package/dist/module/features/problemSelector/components/ProblemSelectorButton.js.map +1 -1
- package/dist/module/index.js +2 -0
- package/dist/module/index.js.map +1 -1
- package/dist/module/shared/icons/ExcitedLavaIcon.js +673 -0
- package/dist/module/shared/icons/ExcitedLavaIcon.js.map +1 -0
- package/dist/module/shared/icons/LavaIconInGlasses.js +608 -0
- package/dist/module/shared/icons/LavaIconInGlasses.js.map +1 -0
- package/dist/module/shared/icons/index.js +21 -0
- package/dist/module/shared/icons/index.js.map +1 -0
- package/dist/module/shared/translation/localization/ca.json +6 -0
- package/dist/module/shared/translation/localization/en.json +6 -0
- package/dist/module/shared/translation/localization/gb.json +6 -0
- package/dist/module/shared/translation/localization/sct.json +6 -0
- package/dist/module/shared/translation/localization/sw.json +6 -0
- package/dist/typescript/commonjs/features/exampleSolution/ExampleSolutionModal.d.ts +11 -0
- package/dist/typescript/commonjs/features/exampleSolution/ExampleSolutionModal.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/exampleSolution/components/ExampleSolutionModalContent.d.ts +4 -0
- package/dist/typescript/commonjs/features/exampleSolution/components/ExampleSolutionModalContent.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/exampleSolution/components/LavaIcon.d.ts +10 -0
- package/dist/typescript/commonjs/features/exampleSolution/components/LavaIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/exampleSolution/components/MessageBlock.d.ts +10 -0
- package/dist/typescript/commonjs/features/exampleSolution/components/MessageBlock.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/exampleSolution/components/QuestionSection.d.ts +9 -0
- package/dist/typescript/commonjs/features/exampleSolution/components/QuestionSection.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/exampleSolution/components/SolutionSection.d.ts +9 -0
- package/dist/typescript/commonjs/features/exampleSolution/components/SolutionSection.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/exampleSolution/constants.d.ts +6 -0
- package/dist/typescript/commonjs/features/exampleSolution/constants.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/exampleSolution/hooks/useExampleSolution.d.ts +9 -0
- package/dist/typescript/commonjs/features/exampleSolution/hooks/useExampleSolution.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/exampleSolution/index.d.ts +4 -0
- package/dist/typescript/commonjs/features/exampleSolution/index.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/exampleSolution/model/ExampleSolution.model.d.ts +9 -0
- package/dist/typescript/commonjs/features/exampleSolution/model/ExampleSolution.model.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/exampleSolution/model/ExampleSolutionApi.d.ts +13 -0
- package/dist/typescript/commonjs/features/exampleSolution/model/ExampleSolutionApi.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/exampleSolution/model/ExampleSolutionCache.d.ts +11 -0
- package/dist/typescript/commonjs/features/exampleSolution/model/ExampleSolutionCache.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/exampleSolution/types.d.ts +26 -0
- package/dist/typescript/commonjs/features/exampleSolution/types.d.ts.map +1 -0
- package/dist/typescript/commonjs/index.d.ts +2 -0
- package/dist/typescript/commonjs/index.d.ts.map +1 -1
- package/dist/typescript/commonjs/shared/icons/ExcitedLavaIcon.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/ExcitedLavaIcon.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/LavaIconInGlasses.d.ts +4 -0
- package/dist/typescript/commonjs/shared/icons/LavaIconInGlasses.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/icons/index.d.ts +19 -0
- package/dist/typescript/commonjs/shared/icons/index.d.ts.map +1 -0
- package/dist/typescript/commonjs/shared/translation/constants.d.ts +30 -0
- package/dist/typescript/commonjs/shared/translation/constants.d.ts.map +1 -1
- package/dist/typescript/commonjs/shared/translation/model.d.ts +12 -0
- package/dist/typescript/commonjs/shared/translation/model.d.ts.map +1 -1
- package/dist/typescript/module/features/exampleSolution/ExampleSolutionModal.d.ts +11 -0
- package/dist/typescript/module/features/exampleSolution/ExampleSolutionModal.d.ts.map +1 -0
- package/dist/typescript/module/features/exampleSolution/components/ExampleSolutionModalContent.d.ts +4 -0
- package/dist/typescript/module/features/exampleSolution/components/ExampleSolutionModalContent.d.ts.map +1 -0
- package/dist/typescript/module/features/exampleSolution/components/LavaIcon.d.ts +10 -0
- package/dist/typescript/module/features/exampleSolution/components/LavaIcon.d.ts.map +1 -0
- package/dist/typescript/module/features/exampleSolution/components/MessageBlock.d.ts +10 -0
- package/dist/typescript/module/features/exampleSolution/components/MessageBlock.d.ts.map +1 -0
- package/dist/typescript/module/features/exampleSolution/components/QuestionSection.d.ts +9 -0
- package/dist/typescript/module/features/exampleSolution/components/QuestionSection.d.ts.map +1 -0
- package/dist/typescript/module/features/exampleSolution/components/SolutionSection.d.ts +9 -0
- package/dist/typescript/module/features/exampleSolution/components/SolutionSection.d.ts.map +1 -0
- package/dist/typescript/module/features/exampleSolution/constants.d.ts +6 -0
- package/dist/typescript/module/features/exampleSolution/constants.d.ts.map +1 -0
- package/dist/typescript/module/features/exampleSolution/hooks/useExampleSolution.d.ts +9 -0
- package/dist/typescript/module/features/exampleSolution/hooks/useExampleSolution.d.ts.map +1 -0
- package/dist/typescript/module/features/exampleSolution/index.d.ts +4 -0
- package/dist/typescript/module/features/exampleSolution/index.d.ts.map +1 -0
- package/dist/typescript/module/features/exampleSolution/model/ExampleSolution.model.d.ts +9 -0
- package/dist/typescript/module/features/exampleSolution/model/ExampleSolution.model.d.ts.map +1 -0
- package/dist/typescript/module/features/exampleSolution/model/ExampleSolutionApi.d.ts +13 -0
- package/dist/typescript/module/features/exampleSolution/model/ExampleSolutionApi.d.ts.map +1 -0
- package/dist/typescript/module/features/exampleSolution/model/ExampleSolutionCache.d.ts +11 -0
- package/dist/typescript/module/features/exampleSolution/model/ExampleSolutionCache.d.ts.map +1 -0
- package/dist/typescript/module/features/exampleSolution/types.d.ts +26 -0
- package/dist/typescript/module/features/exampleSolution/types.d.ts.map +1 -0
- package/dist/typescript/module/index.d.ts +2 -0
- package/dist/typescript/module/index.d.ts.map +1 -1
- package/dist/typescript/module/shared/icons/ExcitedLavaIcon.d.ts +4 -0
- package/dist/typescript/module/shared/icons/ExcitedLavaIcon.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/LavaIconInGlasses.d.ts +4 -0
- package/dist/typescript/module/shared/icons/LavaIconInGlasses.d.ts.map +1 -0
- package/dist/typescript/module/shared/icons/index.d.ts +19 -0
- package/dist/typescript/module/shared/icons/index.d.ts.map +1 -0
- package/dist/typescript/module/shared/translation/constants.d.ts +30 -0
- package/dist/typescript/module/shared/translation/constants.d.ts.map +1 -1
- package/dist/typescript/module/shared/translation/model.d.ts +12 -0
- package/dist/typescript/module/shared/translation/model.d.ts.map +1 -1
- package/package.json +7 -3
- package/src/features/exampleSolution/ExampleSolutionModal.tsx +29 -0
- package/src/features/exampleSolution/assets/grid.png +0 -0
- package/src/features/exampleSolution/components/ExampleSolutionModalContent.tsx +71 -0
- package/src/features/exampleSolution/components/LavaIcon.tsx +35 -0
- package/src/features/exampleSolution/components/MessageBlock.tsx +67 -0
- package/src/features/exampleSolution/components/QuestionSection.tsx +56 -0
- package/src/features/exampleSolution/components/SolutionSection.tsx +69 -0
- package/src/features/exampleSolution/constants.ts +5 -0
- package/src/features/exampleSolution/hooks/useExampleSolution.ts +66 -0
- package/src/features/exampleSolution/index.ts +3 -0
- package/src/features/exampleSolution/model/ExampleSolution.model.ts +12 -0
- package/src/features/exampleSolution/model/ExampleSolutionApi.ts +33 -0
- package/src/features/exampleSolution/model/ExampleSolutionCache.ts +20 -0
- package/src/features/exampleSolution/types.ts +26 -0
- package/src/features/problemSelector/components/ProblemSelectorButton.tsx +1 -1
- package/src/index.ts +2 -0
- package/src/shared/icons/ExcitedLavaIcon.tsx +541 -0
- package/src/shared/icons/LavaIconInGlasses.tsx +489 -0
- package/src/shared/icons/index.ts +18 -0
- package/src/shared/translation/localization/ca.json +6 -0
- package/src/shared/translation/localization/en.json +6 -0
- package/src/shared/translation/localization/gb.json +6 -0
- package/src/shared/translation/localization/sct.json +6 -0
- package/src/shared/translation/localization/sw.json +6 -0
|
@@ -0,0 +1,489 @@
|
|
|
1
|
+
import React from 'react'
|
|
2
|
+
import Svg, {
|
|
3
|
+
Defs,
|
|
4
|
+
LinearGradient,
|
|
5
|
+
Path,
|
|
6
|
+
Stop,
|
|
7
|
+
G,
|
|
8
|
+
RadialGradient,
|
|
9
|
+
ClipPath,
|
|
10
|
+
} from 'react-native-svg'
|
|
11
|
+
import { IconProps } from './icon.types'
|
|
12
|
+
|
|
13
|
+
export const LavaIconInGlasses = ({ width = 80, height = 100 }: IconProps) => {
|
|
14
|
+
return (
|
|
15
|
+
<Svg width={width} height={height} viewBox="0 0 78 113" fill="none">
|
|
16
|
+
<G clipPath="url(#clip0_606_428)">
|
|
17
|
+
<Path
|
|
18
|
+
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"
|
|
19
|
+
fill="url(#paint0_linear_606_428)"
|
|
20
|
+
/>
|
|
21
|
+
<G
|
|
22
|
+
style={{
|
|
23
|
+
mixBlendMode: 'screen',
|
|
24
|
+
}}
|
|
25
|
+
opacity={0.37}
|
|
26
|
+
>
|
|
27
|
+
<Path
|
|
28
|
+
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"
|
|
29
|
+
fill="url(#paint1_radial_606_428)"
|
|
30
|
+
/>
|
|
31
|
+
<Path
|
|
32
|
+
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"
|
|
33
|
+
fill="url(#paint2_radial_606_428)"
|
|
34
|
+
/>
|
|
35
|
+
<Path
|
|
36
|
+
d="M66.542 58.41a2.106 2.106 0 01-.132.07l.132-.07z"
|
|
37
|
+
fill="url(#paint3_radial_606_428)"
|
|
38
|
+
/>
|
|
39
|
+
<Path d="M66.902 58.19z" fill="url(#paint4_radial_606_428)" />
|
|
40
|
+
<Path
|
|
41
|
+
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"
|
|
42
|
+
fill="url(#paint5_radial_606_428)"
|
|
43
|
+
/>
|
|
44
|
+
<Path
|
|
45
|
+
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"
|
|
46
|
+
fill="url(#paint6_radial_606_428)"
|
|
47
|
+
/>
|
|
48
|
+
<Path
|
|
49
|
+
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"
|
|
50
|
+
fill="url(#paint7_radial_606_428)"
|
|
51
|
+
/>
|
|
52
|
+
</G>
|
|
53
|
+
<G
|
|
54
|
+
style={{
|
|
55
|
+
mixBlendMode: 'screen',
|
|
56
|
+
}}
|
|
57
|
+
opacity={0.4}
|
|
58
|
+
>
|
|
59
|
+
<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
|
+
/>
|
|
63
|
+
<Path
|
|
64
|
+
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"
|
|
65
|
+
fill="url(#paint9_radial_606_428)"
|
|
66
|
+
/>
|
|
67
|
+
<Path
|
|
68
|
+
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"
|
|
69
|
+
fill="url(#paint10_radial_606_428)"
|
|
70
|
+
/>
|
|
71
|
+
<Path
|
|
72
|
+
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"
|
|
73
|
+
fill="url(#paint11_radial_606_428)"
|
|
74
|
+
/>
|
|
75
|
+
<Path
|
|
76
|
+
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"
|
|
77
|
+
fill="url(#paint12_radial_606_428)"
|
|
78
|
+
/>
|
|
79
|
+
<Path
|
|
80
|
+
opacity={0.6}
|
|
81
|
+
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"
|
|
82
|
+
fill="url(#paint13_radial_606_428)"
|
|
83
|
+
/>
|
|
84
|
+
<Path
|
|
85
|
+
opacity={0.5}
|
|
86
|
+
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"
|
|
87
|
+
fill="url(#paint14_radial_606_428)"
|
|
88
|
+
/>
|
|
89
|
+
</G>
|
|
90
|
+
<G
|
|
91
|
+
style={{
|
|
92
|
+
mixBlendMode: 'multiply',
|
|
93
|
+
}}
|
|
94
|
+
opacity={0.6}
|
|
95
|
+
>
|
|
96
|
+
<Path
|
|
97
|
+
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"
|
|
98
|
+
fill="url(#paint15_linear_606_428)"
|
|
99
|
+
/>
|
|
100
|
+
<Path
|
|
101
|
+
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"
|
|
102
|
+
fill="url(#paint16_radial_606_428)"
|
|
103
|
+
/>
|
|
104
|
+
<Path
|
|
105
|
+
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"
|
|
106
|
+
fill="url(#paint17_radial_606_428)"
|
|
107
|
+
/>
|
|
108
|
+
<Path
|
|
109
|
+
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"
|
|
110
|
+
fill="url(#paint18_radial_606_428)"
|
|
111
|
+
/>
|
|
112
|
+
</G>
|
|
113
|
+
<Path
|
|
114
|
+
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"
|
|
115
|
+
fill="url(#paint19_radial_606_428)"
|
|
116
|
+
/>
|
|
117
|
+
<Path
|
|
118
|
+
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"
|
|
119
|
+
fill="url(#paint20_radial_606_428)"
|
|
120
|
+
/>
|
|
121
|
+
<Path
|
|
122
|
+
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"
|
|
123
|
+
fill="url(#paint21_radial_606_428)"
|
|
124
|
+
/>
|
|
125
|
+
<Path
|
|
126
|
+
opacity={0.4}
|
|
127
|
+
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"
|
|
128
|
+
fill="url(#paint22_radial_606_428)"
|
|
129
|
+
/>
|
|
130
|
+
<Path
|
|
131
|
+
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"
|
|
132
|
+
fill="#fff"
|
|
133
|
+
/>
|
|
134
|
+
<Path
|
|
135
|
+
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"
|
|
136
|
+
fill="url(#paint23_linear_606_428)"
|
|
137
|
+
/>
|
|
138
|
+
<Path
|
|
139
|
+
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"
|
|
140
|
+
fill="#4C2549"
|
|
141
|
+
/>
|
|
142
|
+
<Path
|
|
143
|
+
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"
|
|
144
|
+
fill="#4C2549"
|
|
145
|
+
/>
|
|
146
|
+
<Path
|
|
147
|
+
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"
|
|
148
|
+
fill="#fff"
|
|
149
|
+
/>
|
|
150
|
+
<Path
|
|
151
|
+
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"
|
|
152
|
+
fill="url(#paint24_linear_606_428)"
|
|
153
|
+
/>
|
|
154
|
+
<Path
|
|
155
|
+
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"
|
|
156
|
+
fill="#4C2549"
|
|
157
|
+
/>
|
|
158
|
+
<Path
|
|
159
|
+
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"
|
|
160
|
+
fill="#4C2549"
|
|
161
|
+
/>
|
|
162
|
+
<Path d="M18.188 80.181a2.466 2.466 0 100-4.932 2.466 2.466 0 000 4.933z" fill="#fff" />
|
|
163
|
+
<G opacity={0.24} filter="url(#filter0_f_606_428)">
|
|
164
|
+
<Path
|
|
165
|
+
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"
|
|
166
|
+
fill="#fff"
|
|
167
|
+
/>
|
|
168
|
+
</G>
|
|
169
|
+
<G opacity={0.24} filter="url(#filter1_f_606_428)">
|
|
170
|
+
<Path
|
|
171
|
+
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"
|
|
172
|
+
fill="#fff"
|
|
173
|
+
/>
|
|
174
|
+
</G>
|
|
175
|
+
<Path
|
|
176
|
+
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"
|
|
177
|
+
fill="#4C2549"
|
|
178
|
+
/>
|
|
179
|
+
<Path
|
|
180
|
+
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"
|
|
181
|
+
fill="#4C2549"
|
|
182
|
+
/>
|
|
183
|
+
</G>
|
|
184
|
+
<Defs>
|
|
185
|
+
<LinearGradient
|
|
186
|
+
id="paint0_linear_606_428"
|
|
187
|
+
x1={38.7658}
|
|
188
|
+
y1={60.0815}
|
|
189
|
+
x2={38.7658}
|
|
190
|
+
y2={94.4835}
|
|
191
|
+
gradientUnits="userSpaceOnUse"
|
|
192
|
+
>
|
|
193
|
+
<Stop stopColor="#FD7518" />
|
|
194
|
+
<Stop offset={1} stopColor="#F6255C" />
|
|
195
|
+
</LinearGradient>
|
|
196
|
+
<RadialGradient
|
|
197
|
+
id="paint1_radial_606_428"
|
|
198
|
+
cx={0}
|
|
199
|
+
cy={0}
|
|
200
|
+
r={1}
|
|
201
|
+
gradientUnits="userSpaceOnUse"
|
|
202
|
+
gradientTransform="translate(39.18 33.772) scale(35.432)"
|
|
203
|
+
>
|
|
204
|
+
<Stop stopColor="#F7FF9B" />
|
|
205
|
+
<Stop offset={1} stopColor="#F7FF9B" stopOpacity={0} />
|
|
206
|
+
</RadialGradient>
|
|
207
|
+
<RadialGradient
|
|
208
|
+
id="paint2_radial_606_428"
|
|
209
|
+
cx={0}
|
|
210
|
+
cy={0}
|
|
211
|
+
r={1}
|
|
212
|
+
gradientUnits="userSpaceOnUse"
|
|
213
|
+
gradientTransform="matrix(-7.4662 28.62223 -16.6009 -4.3304 41.265 51.679)"
|
|
214
|
+
>
|
|
215
|
+
<Stop stopColor="#F7FF9B" />
|
|
216
|
+
<Stop offset={1} stopColor="#F7FF9B" stopOpacity={0} />
|
|
217
|
+
</RadialGradient>
|
|
218
|
+
<RadialGradient
|
|
219
|
+
id="paint3_radial_606_428"
|
|
220
|
+
cx={0}
|
|
221
|
+
cy={0}
|
|
222
|
+
r={1}
|
|
223
|
+
gradientUnits="userSpaceOnUse"
|
|
224
|
+
gradientTransform="matrix(.136 0 0 .136 66.468 58.456)"
|
|
225
|
+
>
|
|
226
|
+
<Stop stopColor="#F7FF9B" />
|
|
227
|
+
<Stop offset={1} stopColor="#F7FF9B" stopOpacity={0} />
|
|
228
|
+
</RadialGradient>
|
|
229
|
+
<RadialGradient
|
|
230
|
+
id="paint4_radial_606_428"
|
|
231
|
+
cx={0}
|
|
232
|
+
cy={0}
|
|
233
|
+
r={1}
|
|
234
|
+
gradientUnits="userSpaceOnUse"
|
|
235
|
+
gradientTransform="matrix(.344 0 0 .344 66.72 58.324)"
|
|
236
|
+
>
|
|
237
|
+
<Stop stopColor="#F7FF9B" />
|
|
238
|
+
<Stop offset={1} stopColor="#F7FF9B" stopOpacity={0} />
|
|
239
|
+
</RadialGradient>
|
|
240
|
+
<RadialGradient
|
|
241
|
+
id="paint5_radial_606_428"
|
|
242
|
+
cx={0}
|
|
243
|
+
cy={0}
|
|
244
|
+
r={1}
|
|
245
|
+
gradientUnits="userSpaceOnUse"
|
|
246
|
+
gradientTransform="translate(63.694 59.016) scale(29.144)"
|
|
247
|
+
>
|
|
248
|
+
<Stop stopColor="#F7FF9B" />
|
|
249
|
+
<Stop offset={1} stopColor="#F7FF9B" stopOpacity={0} />
|
|
250
|
+
</RadialGradient>
|
|
251
|
+
<RadialGradient
|
|
252
|
+
id="paint6_radial_606_428"
|
|
253
|
+
cx={0}
|
|
254
|
+
cy={0}
|
|
255
|
+
r={1}
|
|
256
|
+
gradientUnits="userSpaceOnUse"
|
|
257
|
+
gradientTransform="translate(40.978 64.882) scale(15.258)"
|
|
258
|
+
>
|
|
259
|
+
<Stop stopColor="#F7FF9B" />
|
|
260
|
+
<Stop offset={1} stopColor="#F7FF9B" stopOpacity={0} />
|
|
261
|
+
</RadialGradient>
|
|
262
|
+
<RadialGradient
|
|
263
|
+
id="paint7_radial_606_428"
|
|
264
|
+
cx={0}
|
|
265
|
+
cy={0}
|
|
266
|
+
r={1}
|
|
267
|
+
gradientUnits="userSpaceOnUse"
|
|
268
|
+
gradientTransform="translate(10.318 59.058) scale(13.63)"
|
|
269
|
+
>
|
|
270
|
+
<Stop stopColor="#F7FF9B" />
|
|
271
|
+
<Stop offset={1} stopColor="#F7FF9B" stopOpacity={0} />
|
|
272
|
+
</RadialGradient>
|
|
273
|
+
<RadialGradient
|
|
274
|
+
id="paint8_radial_606_428"
|
|
275
|
+
cx={0}
|
|
276
|
+
cy={0}
|
|
277
|
+
r={1}
|
|
278
|
+
gradientUnits="userSpaceOnUse"
|
|
279
|
+
gradientTransform="translate(11.25 83.55) scale(16.124)"
|
|
280
|
+
>
|
|
281
|
+
<Stop stopColor="#FFDBB2" />
|
|
282
|
+
<Stop offset={1} stopColor="#FFDBB2" stopOpacity={0} />
|
|
283
|
+
</RadialGradient>
|
|
284
|
+
<RadialGradient
|
|
285
|
+
id="paint9_radial_606_428"
|
|
286
|
+
cx={0}
|
|
287
|
+
cy={0}
|
|
288
|
+
r={1}
|
|
289
|
+
gradientUnits="userSpaceOnUse"
|
|
290
|
+
gradientTransform="translate(26.094 102.394) scale(20.576)"
|
|
291
|
+
>
|
|
292
|
+
<Stop stopColor="#FFDBB2" />
|
|
293
|
+
<Stop offset={1} stopColor="#FFDBB2" stopOpacity={0} />
|
|
294
|
+
</RadialGradient>
|
|
295
|
+
<RadialGradient
|
|
296
|
+
id="paint10_radial_606_428"
|
|
297
|
+
cx={0}
|
|
298
|
+
cy={0}
|
|
299
|
+
r={1}
|
|
300
|
+
gradientUnits="userSpaceOnUse"
|
|
301
|
+
gradientTransform="translate(73.828 101.594) scale(20.064)"
|
|
302
|
+
>
|
|
303
|
+
<Stop stopColor="#FFDBB2" />
|
|
304
|
+
<Stop offset={1} stopColor="#FFDBB2" stopOpacity={0} />
|
|
305
|
+
</RadialGradient>
|
|
306
|
+
<RadialGradient
|
|
307
|
+
id="paint11_radial_606_428"
|
|
308
|
+
cx={0}
|
|
309
|
+
cy={0}
|
|
310
|
+
r={1}
|
|
311
|
+
gradientUnits="userSpaceOnUse"
|
|
312
|
+
gradientTransform="translate(73.828 101.594) scale(20.064)"
|
|
313
|
+
>
|
|
314
|
+
<Stop stopColor="#FFDBB2" />
|
|
315
|
+
<Stop offset={1} stopColor="#FFDBB2" stopOpacity={0} />
|
|
316
|
+
</RadialGradient>
|
|
317
|
+
<RadialGradient
|
|
318
|
+
id="paint12_radial_606_428"
|
|
319
|
+
cx={0}
|
|
320
|
+
cy={0}
|
|
321
|
+
r={1}
|
|
322
|
+
gradientUnits="userSpaceOnUse"
|
|
323
|
+
gradientTransform="translate(55.428 114.75) scale(23.364)"
|
|
324
|
+
>
|
|
325
|
+
<Stop stopColor="#FFDBB2" />
|
|
326
|
+
<Stop offset={1} stopColor="#FFDBB2" stopOpacity={0} />
|
|
327
|
+
</RadialGradient>
|
|
328
|
+
<RadialGradient
|
|
329
|
+
id="paint13_radial_606_428"
|
|
330
|
+
cx={0}
|
|
331
|
+
cy={0}
|
|
332
|
+
r={1}
|
|
333
|
+
gradientUnits="userSpaceOnUse"
|
|
334
|
+
gradientTransform="translate(37.594 111.18) scale(21.066)"
|
|
335
|
+
>
|
|
336
|
+
<Stop stopColor="#FFDBB2" />
|
|
337
|
+
<Stop offset={1} stopColor="#FFDBB2" stopOpacity={0} />
|
|
338
|
+
</RadialGradient>
|
|
339
|
+
<RadialGradient
|
|
340
|
+
id="paint14_radial_606_428"
|
|
341
|
+
cx={0}
|
|
342
|
+
cy={0}
|
|
343
|
+
r={1}
|
|
344
|
+
gradientUnits="userSpaceOnUse"
|
|
345
|
+
gradientTransform="matrix(9.96 0 0 9.96 39.916 83.903)"
|
|
346
|
+
>
|
|
347
|
+
<Stop stopColor="#FFDBB2" />
|
|
348
|
+
<Stop offset={1} stopColor="#FFDBB2" stopOpacity={0} />
|
|
349
|
+
</RadialGradient>
|
|
350
|
+
<LinearGradient
|
|
351
|
+
id="paint15_linear_606_428"
|
|
352
|
+
x1={63.9518}
|
|
353
|
+
y1={57.0637}
|
|
354
|
+
x2={69.2838}
|
|
355
|
+
y2={49.7757}
|
|
356
|
+
gradientUnits="userSpaceOnUse"
|
|
357
|
+
>
|
|
358
|
+
<Stop stopColor="#DA5B50" />
|
|
359
|
+
<Stop offset={1} stopColor="#DA5B50" stopOpacity={0} />
|
|
360
|
+
</LinearGradient>
|
|
361
|
+
<RadialGradient
|
|
362
|
+
id="paint16_radial_606_428"
|
|
363
|
+
cx={0}
|
|
364
|
+
cy={0}
|
|
365
|
+
r={1}
|
|
366
|
+
gradientUnits="userSpaceOnUse"
|
|
367
|
+
gradientTransform="translate(37.294 66.838) scale(26.676)"
|
|
368
|
+
>
|
|
369
|
+
<Stop stopColor="#DA5B50" />
|
|
370
|
+
<Stop offset={0.16} stopColor="#DA5B50" stopOpacity={0.98} />
|
|
371
|
+
<Stop offset={0.3} stopColor="#DA5B50" stopOpacity={0.94} />
|
|
372
|
+
<Stop offset={0.43} stopColor="#DA5B50" stopOpacity={0.85} />
|
|
373
|
+
<Stop offset={0.55} stopColor="#DA5B50" stopOpacity={0.74} />
|
|
374
|
+
<Stop offset={0.67} stopColor="#DA5B50" stopOpacity={0.59} />
|
|
375
|
+
<Stop offset={0.79} stopColor="#DA5B50" stopOpacity={0.41} />
|
|
376
|
+
<Stop offset={0.91} stopColor="#DA5B50" stopOpacity={0.2} />
|
|
377
|
+
<Stop offset={1} stopColor="#DA5B50" stopOpacity={0} />
|
|
378
|
+
</RadialGradient>
|
|
379
|
+
<RadialGradient
|
|
380
|
+
id="paint17_radial_606_428"
|
|
381
|
+
cx={0}
|
|
382
|
+
cy={0}
|
|
383
|
+
r={1}
|
|
384
|
+
gradientUnits="userSpaceOnUse"
|
|
385
|
+
gradientTransform="translate(15.228 64.216) scale(30.292)"
|
|
386
|
+
>
|
|
387
|
+
<Stop stopColor="#DA5B50" />
|
|
388
|
+
<Stop offset={0.2} stopColor="#DA5B50" stopOpacity={0.99} />
|
|
389
|
+
<Stop offset={0.34} stopColor="#DA5B50" stopOpacity={0.94} />
|
|
390
|
+
<Stop offset={0.46} stopColor="#DA5B50" stopOpacity={0.87} />
|
|
391
|
+
<Stop offset={0.58} stopColor="#DA5B50" stopOpacity={0.77} />
|
|
392
|
+
<Stop offset={0.68} stopColor="#DA5B50" stopOpacity={0.64} />
|
|
393
|
+
<Stop offset={0.78} stopColor="#DA5B50" stopOpacity={0.48} />
|
|
394
|
+
<Stop offset={0.88} stopColor="#DA5B50" stopOpacity={0.29} />
|
|
395
|
+
<Stop offset={0.97} stopColor="#DA5B50" stopOpacity={0.07} />
|
|
396
|
+
<Stop offset={1} stopColor="#DA5B50" stopOpacity={0} />
|
|
397
|
+
</RadialGradient>
|
|
398
|
+
<RadialGradient
|
|
399
|
+
id="paint18_radial_606_428"
|
|
400
|
+
cx={0}
|
|
401
|
+
cy={0}
|
|
402
|
+
r={1}
|
|
403
|
+
gradientUnits="userSpaceOnUse"
|
|
404
|
+
gradientTransform="translate(53.562 60.971) scale(20.796)"
|
|
405
|
+
>
|
|
406
|
+
<Stop stopColor="#DA5B50" />
|
|
407
|
+
<Stop offset={0.25} stopColor="#DA5B50" stopOpacity={0.99} />
|
|
408
|
+
<Stop offset={0.4} stopColor="#DA5B50" stopOpacity={0.95} />
|
|
409
|
+
<Stop offset={0.51} stopColor="#DA5B50" stopOpacity={0.89} />
|
|
410
|
+
<Stop offset={0.61} stopColor="#DA5B50" stopOpacity={0.8} />
|
|
411
|
+
<Stop offset={0.71} stopColor="#DA5B50" stopOpacity={0.68} />
|
|
412
|
+
<Stop offset={0.79} stopColor="#DA5B50" stopOpacity={0.53} />
|
|
413
|
+
<Stop offset={0.87} stopColor="#DA5B50" stopOpacity={0.36} />
|
|
414
|
+
<Stop offset={0.95} stopColor="#DA5B50" stopOpacity={0.17} />
|
|
415
|
+
<Stop offset={1} stopColor="#DA5B50" stopOpacity={0} />
|
|
416
|
+
</RadialGradient>
|
|
417
|
+
<RadialGradient
|
|
418
|
+
id="paint19_radial_606_428"
|
|
419
|
+
cx={0}
|
|
420
|
+
cy={0}
|
|
421
|
+
r={1}
|
|
422
|
+
gradientUnits="userSpaceOnUse"
|
|
423
|
+
gradientTransform="translate(48.76 -9.65) scale(19.502)"
|
|
424
|
+
>
|
|
425
|
+
<Stop stopColor="#F7CE28" />
|
|
426
|
+
<Stop offset={1} stopColor="#F7FF9B" stopOpacity={0} />
|
|
427
|
+
</RadialGradient>
|
|
428
|
+
<RadialGradient
|
|
429
|
+
id="paint20_radial_606_428"
|
|
430
|
+
cx={0}
|
|
431
|
+
cy={0}
|
|
432
|
+
r={1}
|
|
433
|
+
gradientUnits="userSpaceOnUse"
|
|
434
|
+
gradientTransform="translate(53.916 10.75) scale(25.994)"
|
|
435
|
+
>
|
|
436
|
+
<Stop stopColor="#F7CE28" />
|
|
437
|
+
<Stop offset={1} stopColor="#F7FF9B" stopOpacity={0} />
|
|
438
|
+
</RadialGradient>
|
|
439
|
+
<RadialGradient
|
|
440
|
+
id="paint21_radial_606_428"
|
|
441
|
+
cx={0}
|
|
442
|
+
cy={0}
|
|
443
|
+
r={1}
|
|
444
|
+
gradientUnits="userSpaceOnUse"
|
|
445
|
+
gradientTransform="translate(62.68 29.893) scale(24.244)"
|
|
446
|
+
>
|
|
447
|
+
<Stop stopColor="#F7CE28" />
|
|
448
|
+
<Stop offset={1} stopColor="#F7FF9B" stopOpacity={0} />
|
|
449
|
+
</RadialGradient>
|
|
450
|
+
<RadialGradient
|
|
451
|
+
id="paint22_radial_606_428"
|
|
452
|
+
cx={0}
|
|
453
|
+
cy={0}
|
|
454
|
+
r={1}
|
|
455
|
+
gradientUnits="userSpaceOnUse"
|
|
456
|
+
gradientTransform="translate(33.128 113.782) scale(12.534)"
|
|
457
|
+
>
|
|
458
|
+
<Stop stopColor="#FFDBB2" />
|
|
459
|
+
<Stop offset={1} stopColor="#FFDBB2" stopOpacity={0} />
|
|
460
|
+
</RadialGradient>
|
|
461
|
+
<LinearGradient
|
|
462
|
+
id="paint23_linear_606_428"
|
|
463
|
+
x1={47.7238}
|
|
464
|
+
y1={75.4775}
|
|
465
|
+
x2={48.8238}
|
|
466
|
+
y2={77.6455}
|
|
467
|
+
gradientUnits="userSpaceOnUse"
|
|
468
|
+
>
|
|
469
|
+
<Stop stopColor="#F4D7F0" />
|
|
470
|
+
<Stop offset={1} stopColor="#F5D9F1" stopOpacity={0} />
|
|
471
|
+
</LinearGradient>
|
|
472
|
+
<LinearGradient
|
|
473
|
+
id="paint24_linear_606_428"
|
|
474
|
+
x1={22.074}
|
|
475
|
+
y1={75.2695}
|
|
476
|
+
x2={20.854}
|
|
477
|
+
y2={77.6755}
|
|
478
|
+
gradientUnits="userSpaceOnUse"
|
|
479
|
+
>
|
|
480
|
+
<Stop stopColor="#F4D7F0" />
|
|
481
|
+
<Stop offset={1} stopColor="#F5D9F1" stopOpacity={0} />
|
|
482
|
+
</LinearGradient>
|
|
483
|
+
<ClipPath id="clip0_606_428">
|
|
484
|
+
<Path fill="#fff" transform="translate(0 .618)" d="M0 0H77.6V111.4H0z" />
|
|
485
|
+
</ClipPath>
|
|
486
|
+
</Defs>
|
|
487
|
+
</Svg>
|
|
488
|
+
)
|
|
489
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export * from './ArrowRightIcon'
|
|
2
|
+
export * from './ChatbotIcon'
|
|
3
|
+
export * from './CloseIcon'
|
|
4
|
+
export * from './ExcitedLavaIcon'
|
|
5
|
+
export * from './GlobeIcon'
|
|
6
|
+
export * from './Halloween'
|
|
7
|
+
export * from './HighlighterIcon'
|
|
8
|
+
export * from './LavaIconInGlasses'
|
|
9
|
+
export * from './MessageBubbleIcon'
|
|
10
|
+
export * from './PauseIcon'
|
|
11
|
+
export * from './Pi'
|
|
12
|
+
export * from './PlayIcon'
|
|
13
|
+
export * from './SpeakerIcon'
|
|
14
|
+
export * from './Star'
|
|
15
|
+
export * from './StopIcon'
|
|
16
|
+
export * from './Valentine'
|
|
17
|
+
export * from './Winter'
|
|
18
|
+
export * from './XCloseIcon'
|
|
@@ -23,5 +23,11 @@
|
|
|
23
23
|
"greatStart": "Great start!",
|
|
24
24
|
"onTheWay": "On the way!",
|
|
25
25
|
"almostThere": "Almost there"
|
|
26
|
+
},
|
|
27
|
+
"exampleSolution": {
|
|
28
|
+
"exampleSolution": "Example solution",
|
|
29
|
+
"letMeThink": "Let me think...",
|
|
30
|
+
"aha": "Aha!",
|
|
31
|
+
"errorMessage": "Something went wrong with generating an example solution"
|
|
26
32
|
}
|
|
27
33
|
}
|
|
@@ -23,5 +23,11 @@
|
|
|
23
23
|
"greatStart": "Great start!",
|
|
24
24
|
"onTheWay": "On the way!",
|
|
25
25
|
"almostThere": "Almost there"
|
|
26
|
+
},
|
|
27
|
+
"exampleSolution": {
|
|
28
|
+
"exampleSolution": "Example solution",
|
|
29
|
+
"letMeThink": "Let me think...",
|
|
30
|
+
"aha": "Aha!",
|
|
31
|
+
"errorMessage": "Something went wrong with generating an example solution"
|
|
26
32
|
}
|
|
27
33
|
}
|
|
@@ -23,5 +23,11 @@
|
|
|
23
23
|
"greatStart": "Great start!",
|
|
24
24
|
"onTheWay": "On the way!",
|
|
25
25
|
"almostThere": "Almost there"
|
|
26
|
+
},
|
|
27
|
+
"exampleSolution": {
|
|
28
|
+
"exampleSolution": "Example solution",
|
|
29
|
+
"letMeThink": "Let me think...",
|
|
30
|
+
"aha": "Aha!",
|
|
31
|
+
"errorMessage": "Something went wrong with generating an example solution"
|
|
26
32
|
}
|
|
27
33
|
}
|
|
@@ -23,5 +23,11 @@
|
|
|
23
23
|
"greatStart": "Great start!",
|
|
24
24
|
"onTheWay": "On the way!",
|
|
25
25
|
"almostThere": "Almost there"
|
|
26
|
+
},
|
|
27
|
+
"exampleSolution": {
|
|
28
|
+
"exampleSolution": "Example solution",
|
|
29
|
+
"letMeThink": "Let me think...",
|
|
30
|
+
"aha": "Aha!",
|
|
31
|
+
"errorMessage": "Something went wrong with generating an example solution"
|
|
26
32
|
}
|
|
27
33
|
}
|
|
@@ -23,5 +23,11 @@
|
|
|
23
23
|
"greatStart": "Bra start!",
|
|
24
24
|
"onTheWay": "På god väg!",
|
|
25
25
|
"almostThere": "Nästan där"
|
|
26
|
+
},
|
|
27
|
+
"exampleSolution": {
|
|
28
|
+
"exampleSolution": "Lösnings exempel",
|
|
29
|
+
"letMeThink": "Låt mig tänka...",
|
|
30
|
+
"aha": "Aha!",
|
|
31
|
+
"errorMessage": "Något gick snett med att generera en exempellösning"
|
|
26
32
|
}
|
|
27
33
|
}
|