@magmamath/students-features 0.2.22 → 0.3.0-rc.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/commonjs/features/chatbot/components/Alternatives/Alternatives.js +8 -10
- package/dist/commonjs/features/chatbot/components/Alternatives/Alternatives.js.map +1 -1
- package/dist/commonjs/features/chatbot/components/ChatControls/ChatControls.js +6 -15
- package/dist/commonjs/features/chatbot/components/ChatControls/ChatControls.js.map +1 -1
- package/dist/commonjs/features/chatbot/components/ChatMessage/MessageLoader.js +3 -4
- package/dist/commonjs/features/chatbot/components/ChatMessage/MessageLoader.js.map +1 -1
- package/dist/commonjs/features/chatbot/components/ChatMessage/MessageTextToSpeech.js +3 -2
- package/dist/commonjs/features/chatbot/components/ChatMessage/MessageTextToSpeech.js.map +1 -1
- package/dist/commonjs/features/chatbot/components/ChatMessage/ReceivedMessage.js +4 -5
- package/dist/commonjs/features/chatbot/components/ChatMessage/ReceivedMessage.js.map +1 -1
- package/dist/commonjs/features/chatbot/components/ChatMessages/ChatbotMessages.js +14 -23
- package/dist/commonjs/features/chatbot/components/ChatMessages/ChatbotMessages.js.map +1 -1
- package/dist/commonjs/features/chatbot/components/Chatbot.js +6 -9
- package/dist/commonjs/features/chatbot/components/Chatbot.js.map +1 -1
- package/dist/commonjs/features/chatbot/index.js +2 -2
- package/dist/commonjs/features/chatbot/index.js.map +1 -1
- package/dist/commonjs/features/chatbot/model/{model.js → ChatBotModel.js} +83 -117
- package/dist/commonjs/features/chatbot/model/ChatBotModel.js.map +1 -0
- package/dist/commonjs/features/chatbot/model/t2s.js +7 -4
- package/dist/commonjs/features/chatbot/model/t2s.js.map +1 -1
- package/dist/commonjs/features/chatbot/model/translation.js +15 -30
- package/dist/commonjs/features/chatbot/model/translation.js.map +1 -1
- package/dist/commonjs/features/chatbot/types/model.types.js.map +1 -1
- package/dist/commonjs/features/feedback/model/model.js +1 -1
- package/dist/commonjs/features/feedback/model/model.js.map +1 -1
- package/dist/commonjs/lib/effector/createEntityFieldStore.js +8 -26
- package/dist/commonjs/lib/effector/createEntityFieldStore.js.map +1 -1
- package/dist/commonjs/shared/icons/ChatbotIcon.js +106 -613
- package/dist/commonjs/shared/icons/ChatbotIcon.js.map +1 -1
- package/dist/module/features/chatbot/components/Alternatives/Alternatives.js +6 -8
- package/dist/module/features/chatbot/components/Alternatives/Alternatives.js.map +1 -1
- package/dist/module/features/chatbot/components/ChatControls/ChatControls.js +6 -15
- package/dist/module/features/chatbot/components/ChatControls/ChatControls.js.map +1 -1
- package/dist/module/features/chatbot/components/ChatMessage/MessageLoader.js +3 -4
- package/dist/module/features/chatbot/components/ChatMessage/MessageLoader.js.map +1 -1
- package/dist/module/features/chatbot/components/ChatMessage/MessageTextToSpeech.js +3 -2
- package/dist/module/features/chatbot/components/ChatMessage/MessageTextToSpeech.js.map +1 -1
- package/dist/module/features/chatbot/components/ChatMessage/ReceivedMessage.js +4 -5
- package/dist/module/features/chatbot/components/ChatMessage/ReceivedMessage.js.map +1 -1
- package/dist/module/features/chatbot/components/ChatMessages/ChatbotMessages.js +14 -23
- package/dist/module/features/chatbot/components/ChatMessages/ChatbotMessages.js.map +1 -1
- package/dist/module/features/chatbot/components/Chatbot.js +6 -9
- package/dist/module/features/chatbot/components/Chatbot.js.map +1 -1
- package/dist/module/features/chatbot/index.js +1 -1
- package/dist/module/features/chatbot/index.js.map +1 -1
- package/dist/module/features/chatbot/model/ChatBotModel.js +208 -0
- package/dist/module/features/chatbot/model/ChatBotModel.js.map +1 -0
- package/dist/module/features/chatbot/model/t2s.js +8 -5
- package/dist/module/features/chatbot/model/t2s.js.map +1 -1
- package/dist/module/features/chatbot/model/translation.js +15 -30
- package/dist/module/features/chatbot/model/translation.js.map +1 -1
- package/dist/module/features/chatbot/types/model.types.js.map +1 -1
- package/dist/module/features/feedback/model/model.js +1 -1
- package/dist/module/features/feedback/model/model.js.map +1 -1
- package/dist/module/lib/effector/createEntityFieldStore.js +8 -26
- package/dist/module/lib/effector/createEntityFieldStore.js.map +1 -1
- package/dist/module/shared/icons/ChatbotIcon.js +107 -614
- package/dist/module/shared/icons/ChatbotIcon.js.map +1 -1
- package/dist/typescript/commonjs/features/chatbot/components/Alternatives/Alternatives.d.ts +1 -1
- package/dist/typescript/commonjs/features/chatbot/components/Alternatives/Alternatives.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/chatbot/components/ChatControls/ChatControls.d.ts +2 -6
- package/dist/typescript/commonjs/features/chatbot/components/ChatControls/ChatControls.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/chatbot/components/ChatMessages/ChatbotMessages.d.ts +1 -1
- package/dist/typescript/commonjs/features/chatbot/components/ChatMessages/ChatbotMessages.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/chatbot/components/Chatbot.d.ts +2 -6
- package/dist/typescript/commonjs/features/chatbot/components/Chatbot.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/chatbot/index.d.ts +1 -1
- package/dist/typescript/commonjs/features/chatbot/index.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/chatbot/model/{model.d.ts → ChatBotModel.d.ts} +19 -35
- package/dist/typescript/commonjs/features/chatbot/model/ChatBotModel.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/chatbot/model/t2s.d.ts +1 -1
- package/dist/typescript/commonjs/features/chatbot/model/t2s.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/chatbot/model/translation.d.ts +1 -1
- package/dist/typescript/commonjs/features/chatbot/model/translation.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/chatbot/types/model.types.d.ts +8 -20
- package/dist/typescript/commonjs/features/chatbot/types/model.types.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/chatbot/types/translation.types.d.ts +1 -5
- package/dist/typescript/commonjs/features/chatbot/types/translation.types.d.ts.map +1 -1
- package/dist/typescript/commonjs/lib/effector/createEntityFieldStore.d.ts +4 -9
- package/dist/typescript/commonjs/lib/effector/createEntityFieldStore.d.ts.map +1 -1
- package/dist/typescript/commonjs/shared/icons/ChatbotIcon.d.ts.map +1 -1
- package/dist/typescript/module/features/chatbot/components/Alternatives/Alternatives.d.ts +1 -1
- package/dist/typescript/module/features/chatbot/components/Alternatives/Alternatives.d.ts.map +1 -1
- package/dist/typescript/module/features/chatbot/components/ChatControls/ChatControls.d.ts +2 -6
- package/dist/typescript/module/features/chatbot/components/ChatControls/ChatControls.d.ts.map +1 -1
- package/dist/typescript/module/features/chatbot/components/ChatMessages/ChatbotMessages.d.ts +1 -1
- package/dist/typescript/module/features/chatbot/components/ChatMessages/ChatbotMessages.d.ts.map +1 -1
- package/dist/typescript/module/features/chatbot/components/Chatbot.d.ts +2 -6
- package/dist/typescript/module/features/chatbot/components/Chatbot.d.ts.map +1 -1
- package/dist/typescript/module/features/chatbot/index.d.ts +1 -1
- package/dist/typescript/module/features/chatbot/index.d.ts.map +1 -1
- package/dist/typescript/module/features/chatbot/model/{model.d.ts → ChatBotModel.d.ts} +19 -35
- package/dist/typescript/module/features/chatbot/model/ChatBotModel.d.ts.map +1 -0
- package/dist/typescript/module/features/chatbot/model/t2s.d.ts +1 -1
- package/dist/typescript/module/features/chatbot/model/t2s.d.ts.map +1 -1
- package/dist/typescript/module/features/chatbot/model/translation.d.ts +1 -1
- package/dist/typescript/module/features/chatbot/model/translation.d.ts.map +1 -1
- package/dist/typescript/module/features/chatbot/types/model.types.d.ts +8 -20
- package/dist/typescript/module/features/chatbot/types/model.types.d.ts.map +1 -1
- package/dist/typescript/module/features/chatbot/types/translation.types.d.ts +1 -5
- package/dist/typescript/module/features/chatbot/types/translation.types.d.ts.map +1 -1
- package/dist/typescript/module/lib/effector/createEntityFieldStore.d.ts +4 -9
- package/dist/typescript/module/lib/effector/createEntityFieldStore.d.ts.map +1 -1
- package/dist/typescript/module/shared/icons/ChatbotIcon.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/features/chatbot/components/Alternatives/Alternatives.tsx +7 -10
- package/src/features/chatbot/components/ChatControls/ChatControls.tsx +5 -10
- package/src/features/chatbot/components/ChatMessage/MessageLoader.tsx +2 -3
- package/src/features/chatbot/components/ChatMessage/MessageTextToSpeech.tsx +2 -1
- package/src/features/chatbot/components/ChatMessage/ReceivedMessage.tsx +3 -4
- package/src/features/chatbot/components/ChatMessages/ChatbotMessages.tsx +15 -24
- package/src/features/chatbot/components/Chatbot.tsx +6 -10
- package/src/features/chatbot/index.ts +1 -1
- package/src/features/chatbot/model/ChatBotModel.ts +222 -0
- package/src/features/chatbot/model/t2s.ts +8 -5
- package/src/features/chatbot/model/translation.ts +181 -201
- package/src/features/chatbot/types/model.types.ts +8 -14
- package/src/features/chatbot/types/translation.types.ts +10 -12
- package/src/features/feedback/model/model.ts +1 -1
- package/src/lib/effector/createEntityFieldStore.ts +9 -35
- package/src/shared/icons/ChatbotIcon.tsx +85 -500
- package/dist/commonjs/features/chatbot/model/model.js.map +0 -1
- package/dist/module/features/chatbot/model/model.js +0 -242
- package/dist/module/features/chatbot/model/model.js.map +0 -1
- package/dist/typescript/commonjs/features/chatbot/model/model.d.ts.map +0 -1
- package/dist/typescript/module/features/chatbot/model/model.d.ts.map +0 -1
- package/src/features/chatbot/model/model.ts +0 -268
|
@@ -16,639 +16,132 @@ const ChatbotIcon = ({
|
|
|
16
16
|
}) => /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.default, {
|
|
17
17
|
width: width,
|
|
18
18
|
height: height,
|
|
19
|
-
viewBox: "0 0
|
|
19
|
+
viewBox: "0 0 60 60",
|
|
20
20
|
fill: "none",
|
|
21
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
fill: "url(#paint4_radial_653_513)"
|
|
41
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
42
|
-
d: "M369.139 250.878s3.11 44.89-4 52.44c-6.34 6.74-9.5-26.94-9.79-47.09-1.38 3.72-3 7.32-4.78 10.74.91 19.91-4.49 52-29.76 59.02-30 8.33-34.67-33.67-14.34-61.67 14.54-20.02 17.12-38.91 17.57-45.34 0 0-8.01 33.68-24.68 40.34 0 0 6-61.55-24.66-89.77 0 0 20.66 29.11 14.44 69.77-6.08 39.73-9.61 49.13-9.77 49.55.23-.35 4.98-7.23 8.88-3.55 4 3.78-2 17.78 1.33 30.45 3.24 12.26 10.42 17.87 10.87 18.21-.38-.16-6.73-2.69-9.75 3.34-3.12 6.23 12.66 18.67 26.22 15.11 13.55-3.55 1.33-12.88 1.33-12.88s16.45.88 25.11-16.23c8.67-17.11 9.11-26.22 9.11-26.22s1.34 18.67 7.56 20c6.22 1.33 20.89-13.33 9.11-66.22zm-51.58 85.19c-12.5.25-18.67-7.83-18.67-7.83s7.17 5.25 18.25 4.75 19.42-6.92 19.42-6.92c-.84 1.84-6.5 9.75-19 10z",
|
|
43
|
-
fill: "url(#paint5_radial_653_513)"
|
|
21
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.Mask, {
|
|
22
|
+
id: "a",
|
|
23
|
+
maskUnits: "userSpaceOnUse",
|
|
24
|
+
x: 0,
|
|
25
|
+
y: 0,
|
|
26
|
+
width: 60,
|
|
27
|
+
height: 60,
|
|
28
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Rect, {
|
|
29
|
+
x: "0",
|
|
30
|
+
y: "0",
|
|
31
|
+
width: "60",
|
|
32
|
+
height: "60",
|
|
33
|
+
fill: "white"
|
|
34
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Rect, {
|
|
35
|
+
x: "10",
|
|
36
|
+
y: "10",
|
|
37
|
+
width: "40",
|
|
38
|
+
height: "40",
|
|
39
|
+
fill: "black"
|
|
44
40
|
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
45
|
-
d: "
|
|
46
|
-
fill: "
|
|
47
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
48
|
-
d: "M113.579 271.358c-16.4.84-40.17 14.62-61.45 38.61a94.666 94.666 0 00-17.18 27.87c1.79-8.62 7.33-26.62 23.49-39.5-.69.31-11.85 5.47-18.63 15.48 0 0-6-7.5-4.34-13.5 1.67-6 8.34-9.16 12.17-9.66s5.5.33 5.5.33 9.67-8.83 32.67-15.67c14.32-4.25 23.15-4.43 27.77-3.96z",
|
|
49
|
-
fill: "url(#paint7_radial_653_513)"
|
|
41
|
+
d: "M60 0H0v60h60V0z",
|
|
42
|
+
fill: "#ffffff"
|
|
50
43
|
})]
|
|
51
44
|
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.G, {
|
|
52
|
-
|
|
53
|
-
mixBlendMode: 'screen'
|
|
54
|
-
},
|
|
55
|
-
opacity: 0.4,
|
|
45
|
+
mask: "url(#a)",
|
|
56
46
|
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
57
|
-
d: "
|
|
58
|
-
|
|
47
|
+
d: "M53.869 8.767v14.384M6.448 8.767v14.384",
|
|
48
|
+
stroke: "#A83900",
|
|
49
|
+
strokeWidth: 1.0538,
|
|
50
|
+
strokeLinecap: "round"
|
|
59
51
|
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
60
|
-
d: "
|
|
61
|
-
fill: "
|
|
52
|
+
d: "M1.705 25.206c1.897-3.92 6.06-3.53 7.904-2.845L5.025 33.426c-1.897-1.107-5.216-4.3-3.32-8.22z",
|
|
53
|
+
fill: "#FF7819"
|
|
62
54
|
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
63
|
-
d: "
|
|
64
|
-
fill: "
|
|
55
|
+
d: "M58.295 25.206c-1.897-3.92-6.06-3.53-7.904-2.845l4.584 11.065c1.897-1.107 5.216-4.3 3.32-8.22z",
|
|
56
|
+
fill: "#FF275E"
|
|
65
57
|
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
66
|
-
d: "
|
|
67
|
-
fill: "
|
|
58
|
+
d: "M5.025 44.594v-9.168c.474-6.112 3.952-18.673 25.133-18.81 21.182-.138 25.186 12.593 25.291 18.81v9.168c0 6.111-4.954 11.065-11.064 11.065H16.09c-6.111 0-11.065-4.954-11.065-11.065z",
|
|
59
|
+
fill: "#A83900"
|
|
68
60
|
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
69
|
-
d: "
|
|
70
|
-
fill: "url(#
|
|
61
|
+
d: "M5.025 42.594v-9.168c.474-6.112 3.952-18.673 25.133-18.81 21.182-.138 25.186 12.593 25.291 18.81v9.168c0 6.111-4.954 11.065-11.064 11.065H16.09c-6.111 0-11.065-4.954-11.065-11.065z",
|
|
62
|
+
fill: "url(#paint0_linear_722_2)"
|
|
63
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Mask, {
|
|
64
|
+
id: "b",
|
|
65
|
+
maskUnits: "userSpaceOnUse",
|
|
66
|
+
x: "10",
|
|
67
|
+
y: "22",
|
|
68
|
+
width: "40",
|
|
69
|
+
height: "26",
|
|
70
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
71
|
+
d: "M42.356 47.81H18.118c-4.001 0-7.244-3.244-7.244-7.244v-7.298c0-6.639 5.674-11.223 11.855-11.223 2.96 0 5.071 1.202 6.287 2.092.703.515 1.597.53 2.302.02 1.86-1.348 3.617-2.112 6.902-2.112 6.006 0 11.38 5.532 11.38 11.223v7.298c0 4-3.243 7.244-7.244 7.244z",
|
|
72
|
+
fill: "white"
|
|
73
|
+
})
|
|
74
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Rect, {
|
|
75
|
+
x: "0",
|
|
76
|
+
y: "0",
|
|
77
|
+
width: "60",
|
|
78
|
+
height: "60",
|
|
79
|
+
fill: "#ffffff",
|
|
80
|
+
mask: "url(#b)"
|
|
81
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.G, {
|
|
82
|
+
mask: "url(#b)",
|
|
83
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
84
|
+
d: "M52.566 52.989L15.97 16.393c-.597-.598-.174-1.62.67-1.62h36.596c.524 0 .949.425.949.95v36.595c0 .845-1.022 1.268-1.62.67z",
|
|
85
|
+
fill: "#ffffff",
|
|
86
|
+
fillOpacity: 0.1
|
|
87
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.G, {
|
|
88
|
+
filter: "url(#filter0_d_722_2)",
|
|
89
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
90
|
+
d: "M42.356 47.81H18.118c-4.001 0-7.244-3.244-7.244-7.244v-7.298c0-6.639 5.674-11.223 11.855-11.223 2.96 0 5.071 1.202 6.287 2.092.703.515 1.597.53 2.302.02 1.86-1.348 3.617-2.112 6.902-2.112 6.006 0 11.38 5.532 11.38 11.223v7.298c0 4-3.243 7.244-7.244 7.244z",
|
|
91
|
+
fill: "#F2F2F4"
|
|
92
|
+
})
|
|
93
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
94
|
+
d: "M42.357 47.544h-24.24a6.978 6.978 0 01-6.977-6.978v-7.298c0-6.466 5.528-10.956 11.589-10.956 2.883 0 4.94 1.17 6.13 2.04.793.581 1.813.602 2.615.021.917-.664 1.797-1.176 2.845-1.524 1.049-.349 2.28-.537 3.9-.537 2.922 0 5.702 1.346 7.755 3.399 2.054 2.054 3.36 4.795 3.36 7.557v7.298a6.978 6.978 0 01-6.977 6.978z",
|
|
95
|
+
stroke: "#811200",
|
|
96
|
+
strokeWidth: 0.355555
|
|
97
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
98
|
+
opacity: 0.33,
|
|
99
|
+
d: "M16.248 34.66c-.294-2.838-1.239-5.452-2.775-7.616-.445.65-1.4 2.215-1.667 3.282a12.456 12.456 0 00-.333 2.666v7.334c0 .666-.1 2.542 1.333 4.333 1.333 1.667 3 2.333 3.442 2.333V34.66zM25.972 34.982v12.344h9.56V34.91c-.133-3.61-1.922-7.251-4.726-9.893 0 0-.37.309-.667.309-.333 0-.666-.334-1.333-.667-2.333-1.666-4-2-6.333-2-1.067 0-2.607.295-3.243.443 3.132 2.174 5.912 6.727 6.742 11.88zM44.94 34.965c0 1.312.15 5.606.153 11.727.682-.344 2.18-1.3 2.713-2.366.666-1.334 1-2.334 1-3.334v-8.666c-.111-1.334-.933-4.534-3.334-6.667-3-2.667-5.333-3.136-8-3.068 3.49 1.794 6.829 6.264 7.469 12.373z",
|
|
100
|
+
fill: "#ffffff"
|
|
101
|
+
})]
|
|
71
102
|
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
fill: "url(#paint13_radial_653_513)"
|
|
103
|
+
d: "M6.448 9.4a2.53 2.53 0 100-5.059 2.53 2.53 0 000 5.059z",
|
|
104
|
+
fill: "#FD7E14"
|
|
75
105
|
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
},
|
|
84
|
-
opacity: 0.6,
|
|
85
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
86
|
-
d: "M350.569 266.969c-2.36 4.54-5 8.75-7.76 12.52-17.34 23.67-36.67 7.17-26.34-18.33 6.56-16.18 8.96-29.2 7.57-42.18-.45 6.43-3.03 25.32-17.57 45.34-20.33 28-15.66 70 14.34 61.67 25.27-7.02 30.67-39.11 29.76-59.02zm-39.21 33.24c-8.89-3.55-5.55-22-2.22-28.89 0 0-1.56 15.34 4.67 21.11 6.07 5.64 13.2 3.66 13.54 3.57-.35.38-7.33 7.68-15.99 4.21z",
|
|
87
|
-
fill: "url(#paint15_linear_653_513)"
|
|
106
|
+
d: "M53.868 9.4a2.53 2.53 0 100-5.059 2.53 2.53 0 000 5.059z",
|
|
107
|
+
fill: "#FF275E"
|
|
108
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
109
|
+
d: "M26.364 40.065c.747 1.71 2.087 2.621 3.952 2.687 1.969.07 3.48-.882 4.268-2.687",
|
|
110
|
+
stroke: "#FD7E14",
|
|
111
|
+
strokeWidth: 1.68609,
|
|
112
|
+
strokeLinecap: "round"
|
|
88
113
|
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
89
|
-
d: "
|
|
90
|
-
fill: "
|
|
114
|
+
d: "M20.832 37.694a2.53 2.53 0 100-5.058 2.53 2.53 0 000 5.058z",
|
|
115
|
+
fill: "#FD7E14",
|
|
116
|
+
stroke: "#FD7E14",
|
|
117
|
+
strokeWidth: 0.210761
|
|
91
118
|
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
92
|
-
d: "
|
|
93
|
-
fill: "
|
|
119
|
+
d: "M19.4 33.494l-.505.55a.729.729 0 101.081.977l.497-.559a.723.723 0 00-1.073-.968z",
|
|
120
|
+
fill: "#ffffff"
|
|
94
121
|
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
95
|
-
d: "
|
|
96
|
-
fill: "
|
|
122
|
+
d: "M40.117 37.694a2.53 2.53 0 100-5.059 2.53 2.53 0 000 5.059z",
|
|
123
|
+
fill: "#FD7E14",
|
|
124
|
+
stroke: "#FD7E14",
|
|
125
|
+
strokeWidth: 0.210761
|
|
126
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
127
|
+
d: "M38.842 33.494l-.505.55a.728.728 0 101.082.977l.496-.559a.723.723 0 00-1.073-.968z",
|
|
128
|
+
fill: "#ffffff"
|
|
97
129
|
})]
|
|
98
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
d: "M382.028 291.098c13.78-34.67-5.78-70.22-13.78-69.78-8 .45-8 8.45-8 8.45s-.05-.01-.15-.04c-.01-.36-.02-.72-.04-1.08-.02-.36-.03-.71-.06-1.07-.02-.36-.05-.719-.08-1.079-.06-.79-.15-1.581-.25-2.361-.06-.47-.12-.93-.2-1.4-.05-.34-.1-.679-.17-1.019-.08-.49-.17-.991-.28-1.481-.1-.49-.21-.98-.32-1.47-.06-.26-.12-.51-.19-.76l-.21-.8a43.24 43.24 0 00-.97-3.16l-.33-.93a42.229 42.229 0 00-.99-2.47c-.09-.23-.2-.47-.31-.7l-.01-.02c-.19-.45-.4-.89-.62-1.33-.08-.17-.16-.339-.25-.509-.08-.17-.17-.341-.26-.511-.39-.77-.81-1.54-1.26-2.29-.22-.38-.44-.759-.68-1.129-.17-.28-.34-.561-.53-.831-.36-.57-.74-1.119-1.13-1.669-.19-.28-.38-.55-.58-.82-.02-.02-.03-.041-.04-.051a54.695 54.695 0 00-3.25-3.99c-1.66-1.85.5-4.63 2.69-3.47.26.14.52.28.78.43 1.41.79 2.89 1.681 4.41 2.681.46.31.92.62 1.38.94.3.2.6.419.89.629 1.04.75 2.1 1.551 3.15 2.401.35.28.71.57 1.06.87.19.15.37.31.55.47a67.017 67.017 0 016.46 6.319c.27.31.55.62.82.94.3.34.59.68.87 1.03.35.42.7.85 1.04 1.29 1.22 1.55 2.4 3.19 3.52 4.93a57.18 57.18 0 011.4 2.25c.15.26.31.52.46.78.16.27.31.53.45.8.15.26.3.54.44.81.31.55.6 1.11.88 1.68a66.915 66.915 0 012.01 4.34c.13.31.26.611.38.921a82.968 82.968 0 011.08 2.82c9.57 26.77 6.29 47.819-1.88 67.269.47-2.2 1.16-4.48 2.1-6.83z",
|
|
106
|
-
fill: "url(#paint21_radial_653_513)"
|
|
107
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
108
|
-
opacity: 0.4,
|
|
109
|
-
d: "M204.14 543.429c-5.89.33-1.93-10.59-1.79-10.99-.3.19-6.31 4.08-5.99 11.66.2 4.58 2.21 9.23 3.82 12.29-6.65.23-13.28.28-19.84.15-2.27-8.36.84-15.95 5.79-22.21 5.25-4.98 13.91-11.61 18.9-8.34 7.44 4.89 5.11 17.11-.89 17.44z",
|
|
110
|
-
fill: "url(#paint22_radial_653_513)"
|
|
111
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
112
|
-
d: "M294.55 416.088c-13.01 20.3-60.55 24.84-81.41 10.56-3.97-2.72-4.83-6.21-6.17-10.83-7.68-26.57 17.61-52.97 46.88-58.88 26.28-5.31 43.69-4.1 47.16 1.58 2.38 3.9.52 6.83-.87 8.28 1.78 6.87 6.52 30.39-5.59 49.29z",
|
|
113
|
-
fill: "#fff"
|
|
114
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
115
|
-
d: "M301.029 372.318c0-2-2-7.67-2.89-8.56-.89-.89-6-4-8.78-4.22-2.78-.22-8.78-1.44-14.11-.44s-25.67 1.22-29 2.78c-.28.13-.76.35-1.39.65 3.58 7.28 8.12 20.18 11.16 27.68 24.35-7.95 44.66-6.47 44.22 6-.56 15.67 2.89-4.78 3.44-7.44.55-2.66-2.67-14.44-2.67-16.44l.02-.01z",
|
|
116
|
-
fill: "url(#paint23_linear_653_513)"
|
|
117
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
118
|
-
d: "M232.528 369.338c-9.54 6.06-20.85 15.4-23.28 26.76-4.11 19.22 2.33 27.11 2.33 27.11s-5.67-15.22 24.67-30.78c1.88-.97 3.78-1.88 5.69-2.74-2.8-6.93-6.1-13.64-9.42-20.35h.01z",
|
|
119
|
-
fill: "url(#paint24_linear_653_513)"
|
|
120
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
121
|
-
d: "M302.719 365.238c1.47-1.53 3.44-4.63.92-8.75-3.67-6-22.06-7.28-49.83-1.67-30.93 6.25-56.28 34.04-48.16 62.11 1.41 4.88 4.44 9.19 8.64 12.06 22.04 15.08 68.77 9.78 82.52-11.67 12.8-19.97 7.79-44.82 5.91-52.08zm-30.25 64.64c-20.66 7.78-48.55 5.22-59.55-4.89 0 0-12.11-10.33 4.22-35.44 16.33-25.12 59.33-30 70.22-26.34 10.89 3.67 12.11 9.56 12.22 24.89.12 15.33-6.44 34-27.11 41.78z",
|
|
122
|
-
fill: "#4B0A40"
|
|
123
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
124
|
-
d: "M257.989 427.798c15.32-3.59 24.338-21.012 20.143-38.912-4.196-17.901-20.016-29.502-35.335-25.911-15.32 3.59-24.338 21.012-20.142 38.912 4.195 17.901 20.015 29.502 35.334 25.911z",
|
|
125
|
-
fill: "#4B0A40"
|
|
126
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
127
|
-
d: "M273.588 412.818c-3.54 6.82-9.24 11.46-16.07 13.06-1.7.4-3.44.6-5.18.6-10.97 0-21.17-7.86-25.93-19.35 4.32-5.02 10.37-9.51 17.65-12.77 11-4.93 22.72-6.19 32.29-4.17 1.68 7.92.7 15.93-2.76 22.63z",
|
|
128
|
-
fill: "url(#paint25_linear_653_513)"
|
|
129
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
130
|
-
d: "M226.639 414.158c6.351 0 11.5-5.149 11.5-11.5s-5.149-11.5-11.5-11.5c-6.352 0-11.5 5.149-11.5 11.5s5.148 11.5 11.5 11.5zM61.98 416.088c13.01 20.3 60.549 24.84 81.409 10.56 3.97-2.72 4.83-6.21 6.17-10.83 7.68-26.57-17.61-52.97-46.88-58.88-26.28-5.31-43.69-4.1-47.16 1.58-2.38 3.9-.52 6.83.87 8.28-1.78 6.87-6.52 30.39 5.59 49.29z",
|
|
131
|
-
fill: "#fff"
|
|
132
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
133
|
-
d: "M55.498 372.318c0-2 2-7.67 2.89-8.56.89-.89 6-4 8.78-4.22 2.78-.22 8.78-1.44 14.11-.44s25.67 1.22 29 2.78c.28.13.76.35 1.39.65-3.58 7.28-8.12 20.18-11.16 27.68-24.35-7.95-44.66-6.47-44.22 6 .56 15.67-2.89-4.78-3.44-7.44-.55-2.66 2.67-14.44 2.67-16.44l-.02-.01z",
|
|
134
|
-
fill: "url(#paint26_linear_653_513)"
|
|
135
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
136
|
-
d: "M124.01 369.338c9.54 6.06 20.85 15.4 23.28 26.76 4.11 19.22-2.33 27.11-2.33 27.11s5.67-15.22-24.67-30.78c-1.88-.97-3.78-1.88-5.69-2.74 2.8-6.93 6.1-13.64 9.42-20.35h-.01z",
|
|
137
|
-
fill: "url(#paint27_linear_653_513)"
|
|
138
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
139
|
-
d: "M59.72 417.318c13.75 21.45 60.479 26.75 82.519 11.67 4.2-2.87 7.23-7.18 8.64-12.06 8.12-28.07-17.23-55.86-48.16-62.11-27.77-5.61-46.16-4.33-49.83 1.67-2.52 4.12-.55 7.22.92 8.75-1.88 7.26-6.89 32.11 5.91 52.08zm-2.77-29.22c.11-15.33 1.33-21.22 12.22-24.89 10.89-3.66 53.889 1.22 70.219 26.34 16.33 25.11 4.22 35.44 4.22 35.44-11 10.11-38.89 12.67-59.55 4.89-20.67-7.78-27.23-26.45-27.11-41.78z",
|
|
140
|
-
fill: "#4B0A40"
|
|
141
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
142
|
-
d: "M133.901 401.929c4.195-17.901-4.823-35.322-20.142-38.913-15.32-3.59-31.14 8.011-35.335 25.911-4.195 17.901 4.823 35.322 20.142 38.913 15.32 3.59 31.14-8.011 35.335-25.911z",
|
|
143
|
-
fill: "#4B0A40"
|
|
144
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
145
|
-
d: "M82.939 412.818c3.54 6.82 9.24 11.46 16.07 13.06 1.699.4 3.439.6 5.179.6 10.97 0 21.171-7.86 25.931-19.35-4.32-5.02-10.371-9.51-17.651-12.77-11-4.93-22.72-6.19-32.29-4.17-1.68 7.92-.7 15.93 2.76 22.63z",
|
|
146
|
-
fill: "url(#paint28_linear_653_513)"
|
|
147
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
148
|
-
d: "M81.09 410.158c6.351 0 11.5-5.149 11.5-11.5s-5.149-11.5-11.5-11.5-11.5 5.149-11.5 11.5 5.149 11.5 11.5 11.5z",
|
|
149
|
-
fill: "#fff"
|
|
150
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
151
|
-
d: "M232.05 452.368c1.89.34 3.13 2.18 2.72 4.05-2.41 11.22-10.71 29.01-31.64 33.9-22.03 5.15-36.76-5.38-41.94-9.98a3.392 3.392 0 01-.63-4.33l.42-.68c.97-1.57 3.01-2.06 4.62-1.14 9.06 5.19 21.58 9.5 35.2 5.81 19.06-5.17 25.33-18.08 27.37-25.22a3.395 3.395 0 013.87-2.41h.01z",
|
|
152
|
-
fill: "#4B0A40"
|
|
153
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.Defs, {
|
|
154
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.LinearGradient, {
|
|
155
|
-
id: "paint0_linear_653_513",
|
|
156
|
-
x1: 193.829,
|
|
157
|
-
y1: 297.318,
|
|
158
|
-
x2: 193.829,
|
|
159
|
-
y2: 469.328,
|
|
160
|
-
gradientUnits: "userSpaceOnUse",
|
|
161
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
162
|
-
stopColor: "#FD7518"
|
|
163
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
164
|
-
offset: 1,
|
|
165
|
-
stopColor: "#F6255C"
|
|
166
|
-
})]
|
|
167
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.RadialGradient, {
|
|
168
|
-
id: "paint1_radial_653_513",
|
|
169
|
-
cx: 0,
|
|
170
|
-
cy: 0,
|
|
171
|
-
r: 1,
|
|
172
|
-
gradientUnits: "userSpaceOnUse",
|
|
173
|
-
gradientTransform: "translate(195.9 165.768) scale(177.16)",
|
|
174
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
175
|
-
stopColor: "#F7FF9B"
|
|
176
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
177
|
-
offset: 1,
|
|
178
|
-
stopColor: "#F7FF9B",
|
|
179
|
-
stopOpacity: 0
|
|
180
|
-
})]
|
|
181
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.RadialGradient, {
|
|
182
|
-
id: "paint2_radial_653_513",
|
|
183
|
-
cx: 0,
|
|
184
|
-
cy: 0,
|
|
185
|
-
r: 1,
|
|
130
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Defs, {
|
|
131
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.LinearGradient, {
|
|
132
|
+
id: "paint0_linear_722_2",
|
|
133
|
+
x1: 5.0249,
|
|
134
|
+
y1: 36.0572,
|
|
135
|
+
x2: 55.4494,
|
|
136
|
+
y2: 36.0572,
|
|
186
137
|
gradientUnits: "userSpaceOnUse",
|
|
187
|
-
gradientTransform: "matrix(-37.33102 143.11116 -83.00448 -21.65199 206.327 255.304)",
|
|
188
138
|
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
189
|
-
stopColor: "#
|
|
139
|
+
stopColor: "#FF245F"
|
|
190
140
|
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
191
141
|
offset: 1,
|
|
192
|
-
stopColor: "#
|
|
193
|
-
stopOpacity: 0
|
|
142
|
+
stopColor: "#FF7917"
|
|
194
143
|
})]
|
|
195
|
-
})
|
|
196
|
-
id: "paint3_radial_653_513",
|
|
197
|
-
cx: 0,
|
|
198
|
-
cy: 0,
|
|
199
|
-
r: 1,
|
|
200
|
-
gradientUnits: "userSpaceOnUse",
|
|
201
|
-
gradientTransform: "matrix(.68003 0 0 .68001 332.339 289.188)",
|
|
202
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
203
|
-
stopColor: "#F7FF9B"
|
|
204
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
205
|
-
offset: 1,
|
|
206
|
-
stopColor: "#F7FF9B",
|
|
207
|
-
stopOpacity: 0
|
|
208
|
-
})]
|
|
209
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.RadialGradient, {
|
|
210
|
-
id: "paint4_radial_653_513",
|
|
211
|
-
cx: 0,
|
|
212
|
-
cy: 0,
|
|
213
|
-
r: 1,
|
|
214
|
-
gradientUnits: "userSpaceOnUse",
|
|
215
|
-
gradientTransform: "matrix(1.72001 0 0 1.72002 333.599 288.528)",
|
|
216
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
217
|
-
stopColor: "#F7FF9B"
|
|
218
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
219
|
-
offset: 1,
|
|
220
|
-
stopColor: "#F7FF9B",
|
|
221
|
-
stopOpacity: 0
|
|
222
|
-
})]
|
|
223
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.RadialGradient, {
|
|
224
|
-
id: "paint5_radial_653_513",
|
|
225
|
-
cx: 0,
|
|
226
|
-
cy: 0,
|
|
227
|
-
r: 1,
|
|
228
|
-
gradientUnits: "userSpaceOnUse",
|
|
229
|
-
gradientTransform: "translate(318.469 291.988) scale(145.72)",
|
|
230
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
231
|
-
stopColor: "#F7FF9B"
|
|
232
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
233
|
-
offset: 1,
|
|
234
|
-
stopColor: "#F7FF9B",
|
|
235
|
-
stopOpacity: 0
|
|
236
|
-
})]
|
|
237
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.RadialGradient, {
|
|
238
|
-
id: "paint6_radial_653_513",
|
|
239
|
-
cx: 0,
|
|
240
|
-
cy: 0,
|
|
241
|
-
r: 1,
|
|
242
|
-
gradientUnits: "userSpaceOnUse",
|
|
243
|
-
gradientTransform: "translate(204.89 321.318) scale(76.29)",
|
|
244
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
245
|
-
stopColor: "#F7FF9B"
|
|
246
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
247
|
-
offset: 1,
|
|
248
|
-
stopColor: "#F7FF9B",
|
|
249
|
-
stopOpacity: 0
|
|
250
|
-
})]
|
|
251
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.RadialGradient, {
|
|
252
|
-
id: "paint7_radial_653_513",
|
|
253
|
-
cx: 0,
|
|
254
|
-
cy: 0,
|
|
255
|
-
r: 1,
|
|
256
|
-
gradientUnits: "userSpaceOnUse",
|
|
257
|
-
gradientTransform: "translate(51.59 292.198) scale(68.15)",
|
|
258
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
259
|
-
stopColor: "#F7FF9B"
|
|
260
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
261
|
-
offset: 1,
|
|
262
|
-
stopColor: "#F7FF9B",
|
|
263
|
-
stopOpacity: 0
|
|
264
|
-
})]
|
|
265
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.RadialGradient, {
|
|
266
|
-
id: "paint8_radial_653_513",
|
|
267
|
-
cx: 0,
|
|
268
|
-
cy: 0,
|
|
269
|
-
r: 1,
|
|
270
|
-
gradientUnits: "userSpaceOnUse",
|
|
271
|
-
gradientTransform: "translate(56.25 414.658) scale(80.62)",
|
|
272
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
273
|
-
stopColor: "#FFDBB2"
|
|
274
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
275
|
-
offset: 1,
|
|
276
|
-
stopColor: "#FFDBB2",
|
|
277
|
-
stopOpacity: 0
|
|
278
|
-
})]
|
|
279
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.RadialGradient, {
|
|
280
|
-
id: "paint9_radial_653_513",
|
|
281
|
-
cx: 0,
|
|
282
|
-
cy: 0,
|
|
283
|
-
r: 1,
|
|
284
|
-
gradientUnits: "userSpaceOnUse",
|
|
285
|
-
gradientTransform: "translate(130.469 508.878) scale(102.88)",
|
|
286
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
287
|
-
stopColor: "#FFDBB2"
|
|
288
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
289
|
-
offset: 1,
|
|
290
|
-
stopColor: "#FFDBB2",
|
|
291
|
-
stopOpacity: 0
|
|
292
|
-
})]
|
|
293
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.RadialGradient, {
|
|
294
|
-
id: "paint10_radial_653_513",
|
|
295
|
-
cx: 0,
|
|
296
|
-
cy: 0,
|
|
297
|
-
r: 1,
|
|
298
|
-
gradientUnits: "userSpaceOnUse",
|
|
299
|
-
gradientTransform: "translate(369.14 504.878) scale(100.32)",
|
|
300
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
301
|
-
stopColor: "#FFDBB2"
|
|
302
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
303
|
-
offset: 1,
|
|
304
|
-
stopColor: "#FFDBB2",
|
|
305
|
-
stopOpacity: 0
|
|
306
|
-
})]
|
|
307
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.RadialGradient, {
|
|
308
|
-
id: "paint11_radial_653_513",
|
|
309
|
-
cx: 0,
|
|
310
|
-
cy: 0,
|
|
311
|
-
r: 1,
|
|
312
|
-
gradientUnits: "userSpaceOnUse",
|
|
313
|
-
gradientTransform: "translate(369.139 504.878) scale(100.32)",
|
|
314
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
315
|
-
stopColor: "#FFDBB2"
|
|
316
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
317
|
-
offset: 1,
|
|
318
|
-
stopColor: "#FFDBB2",
|
|
319
|
-
stopOpacity: 0
|
|
320
|
-
})]
|
|
321
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.RadialGradient, {
|
|
322
|
-
id: "paint12_radial_653_513",
|
|
323
|
-
cx: 0,
|
|
324
|
-
cy: 0,
|
|
325
|
-
r: 1,
|
|
326
|
-
gradientUnits: "userSpaceOnUse",
|
|
327
|
-
gradientTransform: "translate(277.139 570.658) scale(116.82)",
|
|
328
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
329
|
-
stopColor: "#FFDBB2"
|
|
330
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
331
|
-
offset: 1,
|
|
332
|
-
stopColor: "#FFDBB2",
|
|
333
|
-
stopOpacity: 0
|
|
334
|
-
})]
|
|
335
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.RadialGradient, {
|
|
336
|
-
id: "paint13_radial_653_513",
|
|
337
|
-
cx: 0,
|
|
338
|
-
cy: 0,
|
|
339
|
-
r: 1,
|
|
340
|
-
gradientUnits: "userSpaceOnUse",
|
|
341
|
-
gradientTransform: "translate(187.97 552.808) scale(105.33)",
|
|
342
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
343
|
-
stopColor: "#FFDBB2"
|
|
344
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
345
|
-
offset: 1,
|
|
346
|
-
stopColor: "#FFDBB2",
|
|
347
|
-
stopOpacity: 0
|
|
348
|
-
})]
|
|
349
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.RadialGradient, {
|
|
350
|
-
id: "paint14_radial_653_513",
|
|
351
|
-
cx: 0,
|
|
352
|
-
cy: 0,
|
|
353
|
-
r: 1,
|
|
354
|
-
gradientUnits: "userSpaceOnUse",
|
|
355
|
-
gradientTransform: "matrix(49.8 0 0 49.8 199.579 416.428)",
|
|
356
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
357
|
-
stopColor: "#FFDBB2"
|
|
358
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
359
|
-
offset: 1,
|
|
360
|
-
stopColor: "#FFDBB2",
|
|
361
|
-
stopOpacity: 0
|
|
362
|
-
})]
|
|
363
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.LinearGradient, {
|
|
364
|
-
id: "paint15_linear_653_513",
|
|
365
|
-
x1: 319.759,
|
|
366
|
-
y1: 282.229,
|
|
367
|
-
x2: 346.419,
|
|
368
|
-
y2: 245.789,
|
|
369
|
-
gradientUnits: "userSpaceOnUse",
|
|
370
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
371
|
-
stopColor: "#DA5B50"
|
|
372
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
373
|
-
offset: 1,
|
|
374
|
-
stopColor: "#DA5B50",
|
|
375
|
-
stopOpacity: 0
|
|
376
|
-
})]
|
|
377
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.RadialGradient, {
|
|
378
|
-
id: "paint16_radial_653_513",
|
|
379
|
-
cx: 0,
|
|
380
|
-
cy: 0,
|
|
381
|
-
r: 1,
|
|
382
|
-
gradientUnits: "userSpaceOnUse",
|
|
383
|
-
gradientTransform: "translate(186.469 331.098) scale(133.38)",
|
|
384
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
385
|
-
stopColor: "#DA5B50"
|
|
386
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
387
|
-
offset: 0.16,
|
|
388
|
-
stopColor: "#DA5B50",
|
|
389
|
-
stopOpacity: 0.98
|
|
390
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
391
|
-
offset: 0.3,
|
|
392
|
-
stopColor: "#DA5B50",
|
|
393
|
-
stopOpacity: 0.94
|
|
394
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
395
|
-
offset: 0.43,
|
|
396
|
-
stopColor: "#DA5B50",
|
|
397
|
-
stopOpacity: 0.85
|
|
398
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
399
|
-
offset: 0.55,
|
|
400
|
-
stopColor: "#DA5B50",
|
|
401
|
-
stopOpacity: 0.74
|
|
402
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
403
|
-
offset: 0.67,
|
|
404
|
-
stopColor: "#DA5B50",
|
|
405
|
-
stopOpacity: 0.59
|
|
406
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
407
|
-
offset: 0.79,
|
|
408
|
-
stopColor: "#DA5B50",
|
|
409
|
-
stopOpacity: 0.41
|
|
410
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
411
|
-
offset: 0.91,
|
|
412
|
-
stopColor: "#DA5B50",
|
|
413
|
-
stopOpacity: 0.2
|
|
414
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
415
|
-
offset: 1,
|
|
416
|
-
stopColor: "#DA5B50",
|
|
417
|
-
stopOpacity: 0
|
|
418
|
-
})]
|
|
419
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.RadialGradient, {
|
|
420
|
-
id: "paint17_radial_653_513",
|
|
421
|
-
cx: 0,
|
|
422
|
-
cy: 0,
|
|
423
|
-
r: 1,
|
|
424
|
-
gradientUnits: "userSpaceOnUse",
|
|
425
|
-
gradientTransform: "translate(76.139 317.989) scale(151.46)",
|
|
426
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
427
|
-
stopColor: "#DA5B50"
|
|
428
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
429
|
-
offset: 0.2,
|
|
430
|
-
stopColor: "#DA5B50",
|
|
431
|
-
stopOpacity: 0.99
|
|
432
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
433
|
-
offset: 0.34,
|
|
434
|
-
stopColor: "#DA5B50",
|
|
435
|
-
stopOpacity: 0.94
|
|
436
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
437
|
-
offset: 0.46,
|
|
438
|
-
stopColor: "#DA5B50",
|
|
439
|
-
stopOpacity: 0.87
|
|
440
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
441
|
-
offset: 0.58,
|
|
442
|
-
stopColor: "#DA5B50",
|
|
443
|
-
stopOpacity: 0.77
|
|
444
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
445
|
-
offset: 0.68,
|
|
446
|
-
stopColor: "#DA5B50",
|
|
447
|
-
stopOpacity: 0.64
|
|
448
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
449
|
-
offset: 0.78,
|
|
450
|
-
stopColor: "#DA5B50",
|
|
451
|
-
stopOpacity: 0.48
|
|
452
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
453
|
-
offset: 0.88,
|
|
454
|
-
stopColor: "#DA5B50",
|
|
455
|
-
stopOpacity: 0.29
|
|
456
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
457
|
-
offset: 0.97,
|
|
458
|
-
stopColor: "#DA5B50",
|
|
459
|
-
stopOpacity: 0.07
|
|
460
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
461
|
-
offset: 1,
|
|
462
|
-
stopColor: "#DA5B50",
|
|
463
|
-
stopOpacity: 0
|
|
464
|
-
})]
|
|
465
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.RadialGradient, {
|
|
466
|
-
id: "paint18_radial_653_513",
|
|
467
|
-
cx: 0,
|
|
468
|
-
cy: 0,
|
|
469
|
-
r: 1,
|
|
470
|
-
gradientUnits: "userSpaceOnUse",
|
|
471
|
-
gradientTransform: "translate(267.808 301.768) scale(103.98)",
|
|
472
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
473
|
-
stopColor: "#DA5B50"
|
|
474
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
475
|
-
offset: 0.25,
|
|
476
|
-
stopColor: "#DA5B50",
|
|
477
|
-
stopOpacity: 0.99
|
|
478
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
479
|
-
offset: 0.4,
|
|
480
|
-
stopColor: "#DA5B50",
|
|
481
|
-
stopOpacity: 0.95
|
|
482
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
483
|
-
offset: 0.51,
|
|
484
|
-
stopColor: "#DA5B50",
|
|
485
|
-
stopOpacity: 0.89
|
|
486
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
487
|
-
offset: 0.61,
|
|
488
|
-
stopColor: "#DA5B50",
|
|
489
|
-
stopOpacity: 0.8
|
|
490
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
491
|
-
offset: 0.71,
|
|
492
|
-
stopColor: "#DA5B50",
|
|
493
|
-
stopOpacity: 0.68
|
|
494
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
495
|
-
offset: 0.79,
|
|
496
|
-
stopColor: "#DA5B50",
|
|
497
|
-
stopOpacity: 0.53
|
|
498
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
499
|
-
offset: 0.87,
|
|
500
|
-
stopColor: "#DA5B50",
|
|
501
|
-
stopOpacity: 0.36
|
|
502
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
503
|
-
offset: 0.95,
|
|
504
|
-
stopColor: "#DA5B50",
|
|
505
|
-
stopOpacity: 0.17
|
|
506
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
507
|
-
offset: 1,
|
|
508
|
-
stopColor: "#DA5B50",
|
|
509
|
-
stopOpacity: 0
|
|
510
|
-
})]
|
|
511
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.RadialGradient, {
|
|
512
|
-
id: "paint19_radial_653_513",
|
|
513
|
-
cx: 0,
|
|
514
|
-
cy: 0,
|
|
515
|
-
r: 1,
|
|
516
|
-
gradientUnits: "userSpaceOnUse",
|
|
517
|
-
gradientTransform: "translate(243.799 -51.342) scale(97.51)",
|
|
518
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
519
|
-
stopColor: "#F7CE28"
|
|
520
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
521
|
-
offset: 1,
|
|
522
|
-
stopColor: "#F7FF9B",
|
|
523
|
-
stopOpacity: 0
|
|
524
|
-
})]
|
|
525
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.RadialGradient, {
|
|
526
|
-
id: "paint20_radial_653_513",
|
|
527
|
-
cx: 0,
|
|
528
|
-
cy: 0,
|
|
529
|
-
r: 1,
|
|
530
|
-
gradientUnits: "userSpaceOnUse",
|
|
531
|
-
gradientTransform: "translate(269.579 50.658) scale(129.97)",
|
|
532
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
533
|
-
stopColor: "#F7CE28"
|
|
534
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
535
|
-
offset: 1,
|
|
536
|
-
stopColor: "#F7FF9B",
|
|
537
|
-
stopOpacity: 0
|
|
538
|
-
})]
|
|
539
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.RadialGradient, {
|
|
540
|
-
id: "paint21_radial_653_513",
|
|
541
|
-
cx: 0,
|
|
542
|
-
cy: 0,
|
|
543
|
-
r: 1,
|
|
544
|
-
gradientUnits: "userSpaceOnUse",
|
|
545
|
-
gradientTransform: "translate(313.398 146.378) scale(121.22)",
|
|
546
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
547
|
-
stopColor: "#F7CE28"
|
|
548
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
549
|
-
offset: 1,
|
|
550
|
-
stopColor: "#F7FF9B",
|
|
551
|
-
stopOpacity: 0
|
|
552
|
-
})]
|
|
553
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.RadialGradient, {
|
|
554
|
-
id: "paint22_radial_653_513",
|
|
555
|
-
cx: 0,
|
|
556
|
-
cy: 0,
|
|
557
|
-
r: 1,
|
|
558
|
-
gradientUnits: "userSpaceOnUse",
|
|
559
|
-
gradientTransform: "translate(165.64 565.819) scale(62.67)",
|
|
560
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
561
|
-
stopColor: "#FFDBB2"
|
|
562
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
563
|
-
offset: 1,
|
|
564
|
-
stopColor: "#FFDBB2",
|
|
565
|
-
stopOpacity: 0
|
|
566
|
-
})]
|
|
567
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.LinearGradient, {
|
|
568
|
-
id: "paint23_linear_653_513",
|
|
569
|
-
x1: 274.819,
|
|
570
|
-
y1: 370.478,
|
|
571
|
-
x2: 273.489,
|
|
572
|
-
y2: 383.368,
|
|
573
|
-
gradientUnits: "userSpaceOnUse",
|
|
574
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
575
|
-
stopColor: "#F4D7F0"
|
|
576
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
577
|
-
offset: 1,
|
|
578
|
-
stopColor: "#F5D9F1",
|
|
579
|
-
stopOpacity: 0
|
|
580
|
-
})]
|
|
581
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.LinearGradient, {
|
|
582
|
-
id: "paint24_linear_653_513",
|
|
583
|
-
x1: 217.478,
|
|
584
|
-
y1: 390.088,
|
|
585
|
-
x2: 225.038,
|
|
586
|
-
y2: 400.318,
|
|
587
|
-
gradientUnits: "userSpaceOnUse",
|
|
588
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
589
|
-
stopColor: "#F4D7F0"
|
|
590
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
591
|
-
offset: 1,
|
|
592
|
-
stopColor: "#F5D9F1",
|
|
593
|
-
stopOpacity: 0
|
|
594
|
-
})]
|
|
595
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.LinearGradient, {
|
|
596
|
-
id: "paint25_linear_653_513",
|
|
597
|
-
x1: 249.618,
|
|
598
|
-
y1: 393.858,
|
|
599
|
-
x2: 255.618,
|
|
600
|
-
y2: 410.188,
|
|
601
|
-
gradientUnits: "userSpaceOnUse",
|
|
602
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
603
|
-
stopColor: "#621357",
|
|
604
|
-
stopOpacity: 0
|
|
605
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
606
|
-
offset: 1,
|
|
607
|
-
stopColor: "#621357"
|
|
608
|
-
})]
|
|
609
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.LinearGradient, {
|
|
610
|
-
id: "paint26_linear_653_513",
|
|
611
|
-
x1: 81.7084,
|
|
612
|
-
y1: 370.478,
|
|
613
|
-
x2: 83.0484,
|
|
614
|
-
y2: 383.368,
|
|
615
|
-
gradientUnits: "userSpaceOnUse",
|
|
616
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
617
|
-
stopColor: "#F4D7F0"
|
|
618
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
619
|
-
offset: 1,
|
|
620
|
-
stopColor: "#F5D9F1",
|
|
621
|
-
stopOpacity: 0
|
|
622
|
-
})]
|
|
623
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.LinearGradient, {
|
|
624
|
-
id: "paint27_linear_653_513",
|
|
625
|
-
x1: 139.05,
|
|
626
|
-
y1: 390.088,
|
|
627
|
-
x2: 131.49,
|
|
628
|
-
y2: 400.318,
|
|
629
|
-
gradientUnits: "userSpaceOnUse",
|
|
630
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
631
|
-
stopColor: "#F4D7F0"
|
|
632
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
633
|
-
offset: 1,
|
|
634
|
-
stopColor: "#F5D9F1",
|
|
635
|
-
stopOpacity: 0
|
|
636
|
-
})]
|
|
637
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.LinearGradient, {
|
|
638
|
-
id: "paint28_linear_653_513",
|
|
639
|
-
x1: 106.919,
|
|
640
|
-
y1: 393.858,
|
|
641
|
-
x2: 100.919,
|
|
642
|
-
y2: 410.188,
|
|
643
|
-
gradientUnits: "userSpaceOnUse",
|
|
644
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
645
|
-
stopColor: "#621357",
|
|
646
|
-
stopOpacity: 0
|
|
647
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Stop, {
|
|
648
|
-
offset: 1,
|
|
649
|
-
stopColor: "#621357"
|
|
650
|
-
})]
|
|
651
|
-
})]
|
|
144
|
+
})
|
|
652
145
|
})]
|
|
653
146
|
});
|
|
654
147
|
exports.ChatbotIcon = ChatbotIcon;
|