react-feedback-surveys 1.5.5 → 1.6.1

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/index.js CHANGED
@@ -1,1002 +1,3572 @@
1
- import { jsx as a, jsxs as E, Fragment as W } from "react/jsx-runtime";
2
- import * as e from "react";
3
- import { useId as J, useState as U, useCallback as b, useMemo as ee } from "react";
4
- function i(...t) {
5
- const l = [], r = (s) => {
6
- s && (typeof s == "string" ? l.push(s) : Array.isArray(s) ? s.forEach(r) : typeof s == "object" && Object.entries(s).forEach(([o, n]) => {
7
- n && l.push(o);
8
- }));
9
- };
10
- return t.forEach(r), l.join(" ");
1
+ import { Fragment as e, jsx as t, jsxs as n } from "react/jsx-runtime";
2
+ import { useCallback as r, useId as i, useMemo as a, useState as o } from "react";
3
+ //#region src/utils/index.ts
4
+ function s(...e) {
5
+ let t = [], n = (e) => {
6
+ e && (typeof e == "string" ? t.push(e) : Array.isArray(e) ? e.forEach(n) : typeof e == "object" && Object.entries(e).forEach(([e, n]) => {
7
+ n && t.push(e);
8
+ }));
9
+ };
10
+ return e.forEach(n), t.join(" ");
11
11
  }
12
- const te = "_base_d3jtv_1", ae = {
13
- base: te
14
- }, re = ({
15
- className: t,
16
- children: l,
17
- ...r
18
- }) => /* @__PURE__ */ a(
19
- "div",
20
- {
21
- className: i(ae.base, t),
22
- ...r,
23
- children: l
24
- }
25
- ), ne = "_base_of9yn_1", le = "_animated_of9yn_28", se = "_fadeForward_of9yn_1", ie = "_topLeft_of9yn_43", oe = "_topRight_of9yn_54", ce = "_bottomRight_of9yn_65", pe = "_bottomLeft_of9yn_76", fe = "_close_of9yn_87", N = {
26
- base: ne,
27
- animated: le,
28
- fadeForward: se,
29
- topLeft: ie,
30
- topRight: oe,
31
- bottomRight: ce,
32
- bottomLeft: pe,
33
- close: fe
34
- }, R1 = ({
35
- animated: t = !0,
36
- className: l,
37
- classNames: r,
38
- children: s,
39
- placement: o = "bottomRight",
40
- onClose: n,
41
- ...p
42
- }) => /* @__PURE__ */ a(
43
- "div",
44
- {
45
- className: i(N.base, { [N.animated]: t }, N[o], l, r?.base),
46
- ...p,
47
- children: /* @__PURE__ */ E(re, { className: r?.content, children: [
48
- s,
49
- /* @__PURE__ */ a(
50
- "button",
51
- {
52
- "aria-label": "Close survey",
53
- className: i(N.close, r?.close),
54
- title: "Close survey",
55
- type: "button",
56
- onClick: n
57
- }
58
- )
59
- ] })
60
- }
61
- ), de = "_choices_1ul7q_1", _e = "_choice_1ul7q_1", me = "_label_1ul7q_12", Ee = "_sr_1ul7q_21", ue = "_checkbox_1ul7q_33", be = "_check_1ul7q_33", ye = "_input_1ul7q_70", he = "_textarea_1ul7q_75", Ce = "_invalid_1ul7q_96", ge = "_submit_1ul7q_101", g = {
62
- choices: de,
63
- choice: _e,
64
- label: me,
65
- sr: Ee,
66
- checkbox: ue,
67
- check: be,
68
- input: ye,
69
- textarea: he,
70
- invalid: Ce,
71
- submit: ge
72
- }, xe = ({
73
- buttonLabel: t = "Submit",
74
- responseType: l,
75
- choiceOptions: r,
76
- onSubmit: s
77
- }) => {
78
- const o = J(), [n, p] = U(""), [d, f] = U([]), [m, c] = U(!1), h = b((C) => {
79
- C.stopPropagation();
80
- }, []), u = b((C) => {
81
- p(C.currentTarget.value), m && c(!1);
82
- }, [m]), x = b((C) => {
83
- const { value: k, checked: Z } = C.currentTarget;
84
- f((V) => Z ? [...V, k] : V.filter((L) => L !== k));
85
- }, []), _ = b((C) => {
86
- C.preventDefault();
87
- const k = n.trim();
88
- if (l === "choices") {
89
- s?.([...d, k].filter(Boolean));
90
- return;
91
- }
92
- if (l === "text" && !k) {
93
- c(!0);
94
- return;
95
- }
96
- s?.(n.trim());
97
- }, [
98
- n,
99
- l,
100
- d,
101
- s
102
- ]);
103
- if (!l)
104
- return null;
105
- const y = `${o}-feedback-textarea`, w = `${o}-feedback-input`, K = `${o}-feedback-choices`;
106
- return /* @__PURE__ */ E(
107
- "form",
108
- {
109
- "aria-label": "Feedback form",
110
- className: g.base,
111
- noValidate: !0,
112
- onSubmit: _,
113
- children: [
114
- l === "choices" && /* @__PURE__ */ a(
115
- "div",
116
- {
117
- className: g.choices,
118
- id: K,
119
- children: r?.map((C) => /* @__PURE__ */ a(
120
- "div",
121
- {
122
- className: g.choice,
123
- children: /* @__PURE__ */ E("label", { className: g.label, children: [
124
- /* @__PURE__ */ a(
125
- "input",
126
- {
127
- "aria-label": C,
128
- className: g.checkbox,
129
- checked: d.includes(C),
130
- name: "feedback",
131
- type: "checkbox",
132
- value: C,
133
- onChange: x,
134
- onKeyDown: h
135
- }
136
- ),
137
- /* @__PURE__ */ a("span", { className: g.check, "aria-hidden": "true" }),
138
- C
139
- ] })
140
- },
141
- C
142
- ))
143
- }
144
- ),
145
- l === "choices" && /* @__PURE__ */ E(W, { children: [
146
- /* @__PURE__ */ a(
147
- "label",
148
- {
149
- htmlFor: w,
150
- className: g.sr,
151
- children: "Additional feedback"
152
- }
153
- ),
154
- /* @__PURE__ */ a(
155
- "input",
156
- {
157
- "aria-label": "Additional feedback",
158
- "aria-describedby": K,
159
- className: g.input,
160
- id: w,
161
- maxLength: 1e3,
162
- name: "feedback",
163
- placeholder: "Other",
164
- value: n,
165
- onChange: u
166
- }
167
- )
168
- ] }),
169
- l === "text" && /* @__PURE__ */ E(W, { children: [
170
- /* @__PURE__ */ a(
171
- "label",
172
- {
173
- htmlFor: y,
174
- className: g.sr,
175
- children: "Your feedback"
176
- }
177
- ),
178
- /* @__PURE__ */ a(
179
- "textarea",
180
- {
181
- "aria-label": "Your feedback",
182
- "aria-required": "true",
183
- "aria-invalid": m,
184
- className: `${g.textarea} ${m ? g.invalid : ""}`,
185
- id: y,
186
- maxLength: 1e3,
187
- name: "feedback",
188
- rows: 4,
189
- value: n,
190
- onChange: u,
191
- onKeyDown: h
192
- }
193
- )
194
- ] }),
195
- /* @__PURE__ */ a(
196
- "button",
197
- {
198
- className: g.submit,
199
- type: "submit",
200
- children: t
201
- }
202
- )
203
- ]
204
- }
205
- );
206
- }, Ue = (t) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 512 512", ...t }, /* @__PURE__ */ e.createElement("path", { fill: "#ffb636", d: "M378.6 355.6 45 500.7a26.8 26.8 0 0 1-34.9-34.5L156 127.5" }), /* @__PURE__ */ e.createElement("path", { fill: "#ffd469", d: "m10.2 466.2 11.6-27 3-4.5c57.6-87.7 116-175 176.5-260.8l67.7 69.5C218 278.5 52 450 17.1 495.6a26.4 26.4 0 0 1-6.9-29.4z" }), /* @__PURE__ */ e.createElement("path", { fill: "#a06c33", d: "M304.4 204.4c61.8 61.9 95.7 128.3 75.5 148.5-20 20-86.5-13.7-148.4-75.6S135.8 149 156 128.9s86.5 13.7 148.4 75.5z" }), /* @__PURE__ */ e.createElement("path", { fill: "#f7f9aa", d: "M155.6 327.6a10.9 10.9 0 1 1-21.8 0 10.9 10.9 0 0 1 21.8 0z" }), /* @__PURE__ */ e.createElement("path", { fill: "#ffb636", d: "M502 213.2a15.6 15.6 0 1 1-31.3 0 15.6 15.6 0 0 1 31.3 0zm-104.3 208a15.6 15.6 0 1 0 0 31.2 15.6 15.6 0 0 0 0-31.2z" }), /* @__PURE__ */ e.createElement("path", { fill: "#bea4ff", d: "M356 79.5c-1.4 9-7.2 17-16.1 22a43.1 43.1 0 0 1-28 4.6c-5.2-.8-10.5 0-14.5 2.2-1.7 1-4.8 3.1-5.3 6.4-.5 3.4 1.8 6.3 3.2 7.7 3.1 3.2 7.8 5.4 12.9 6.2h.4c21.6 3.3 37 20.4 34.4 38.3-1.3 9-7.2 17-16 22a43.1 43.1 0 0 1-28 4.5c-5.2-.7-10.5 0-14.5 2.2-1.7 1-4.8 3.1-5.3 6.5-.8 5.3 5.8 12.4 16.5 14a10.6 10.6 0 0 1-3.1 21c-21.6-3.2-37-20.3-34.4-38.2 1.3-9 7.2-17 16-22 8-4.4 18-6 28-4.5 5.2.7 10.5 0 14.5-2.2 1.7-1 4.8-3.1 5.3-6.5.7-5.2-5.6-12.1-16-13.9h-.5c-10-1.5-19-6-25.4-12.5a30.5 30.5 0 0 1-9-25.7c1.3-9 7.2-17 16-22 8.1-4.4 18-6 28-4.6 5.3.8 10.5 0 14.5-2.2 1.8-1 4.8-3 5.3-6.4.5-3.3-1.8-6.2-3.2-7.7-3.2-3.2-8-5.5-13.3-6.3a10.6 10.6 0 0 1 3.1-21c10 1.4 19 5.9 25.4 12.4 7.1 7.3 10.4 16.7 9 25.7z" }), /* @__PURE__ */ e.createElement("path", { fill: "#ff6e83", d: "M81.7 159.7a17.7 17.7 0 1 1-35.4 0 17.7 17.7 0 0 1 35.4 0zm316.5-20.5a20.5 20.5 0 1 0 0 41 20.5 20.5 0 0 0 0-41zM215.5 396a20.5 20.5 0 1 0 0 40.9 20.5 20.5 0 0 0 0-40.9zm271.3-93.6c3.1-6 .8-13.4-5.2-16.5-2.4-1.2-5.3-2.9-8.6-4.8-29-16.6-89.3-51.2-160.3 6.2a12.2 12.2 0 1 0 15.3 19c58-47 105-20 132.9-4 3.4 2 6.6 3.8 9.5 5.3a12.2 12.2 0 0 0 16.4-5.2z" }), /* @__PURE__ */ e.createElement("path", { fill: "#59cafc", d: "M434.8 62.8a10.9 10.9 0 1 1-21.7 0 10.9 10.9 0 0 1 21.7 0zm-388.5-51a10.9 10.9 0 1 0 0 21.9 10.9 10.9 0 0 0 0-21.8zM217 154c1.2-2.5 2.8-5.2 4.4-8.1 8.1-14.8 19.3-35 20-58.6.8-28.3-14-54-43.9-76.4a11.7 11.7 0 1 0-14 18.8c23.7 17.8 35 36.4 34.4 57-.5 17.8-9.7 34.5-17 47.8-1.8 3.1-3.4 6-4.8 8.8a11.7 11.7 0 0 0 21 10.7z" })), Oe = "_base_1ilpx_1", Se = "_icon_1ilpx_6", Y = {
207
- base: Oe,
208
- icon: Se
209
- }, Me = () => /* @__PURE__ */ a("div", { className: Y.base, children: /* @__PURE__ */ a(
210
- Ue,
211
- {
212
- "aria-hidden": "true",
213
- className: Y.icon,
214
- width: 84,
215
- height: 84
216
- }
217
- ) }), Ge = "_base_1pf43_1", ve = "_head_1pf43_14", we = "_title_1pf43_21", G = {
218
- base: Ge,
219
- head: ve,
220
- title: we
221
- }, H = ({
222
- children: t,
223
- className: l,
224
- classNames: r,
225
- dir: s,
226
- question: o,
227
- textQuestion: n,
228
- textButtonLabel: p,
229
- responseType: d,
230
- choiceOptions: f,
231
- thankYouMessage: m,
232
- screen: c,
233
- onFeedback: h
234
- }) => {
235
- const u = J();
236
- return /* @__PURE__ */ E(
237
- "div",
238
- {
239
- className: i(
240
- G.base,
241
- l,
242
- r?.base,
243
- r?.[c]
244
- ),
245
- dir: s,
246
- children: [
247
- /* @__PURE__ */ a("div", { className: i(G.head, r?.head), children: /* @__PURE__ */ E(
248
- "div",
249
- {
250
- "aria-level": 2,
251
- id: u,
252
- className: i(G.title, r?.title),
253
- role: "heading",
254
- children: [
255
- c === "rating" && o,
256
- c === "feedback" && n,
257
- c === "success" && m
258
- ]
259
- }
260
- ) }),
261
- c === "rating" && /* @__PURE__ */ a(
262
- "div",
263
- {
264
- "aria-label": "Rating selection",
265
- "aria-labelledby": u,
266
- className: i(G.body, r?.body),
267
- role: "region",
268
- children: t
269
- }
270
- ),
271
- c === "feedback" && /* @__PURE__ */ a(
272
- "div",
273
- {
274
- "aria-label": "Feedback form",
275
- "aria-labelledby": u,
276
- className: i(G.body, r?.body),
277
- role: "region",
278
- children: /* @__PURE__ */ a(
279
- xe,
280
- {
281
- buttonLabel: p,
282
- choiceOptions: f,
283
- responseType: d,
284
- onSubmit: h
285
- }
286
- )
287
- }
288
- ),
289
- c === "success" && /* @__PURE__ */ a(
290
- "div",
291
- {
292
- "aria-atomic": "true",
293
- "aria-live": "polite",
294
- "aria-label": m,
295
- "aria-labelledby": u,
296
- className: i(G.body, r?.body),
297
- tabIndex: -1,
298
- role: "status",
299
- children: /* @__PURE__ */ a(Me, {})
300
- }
301
- )
302
- ]
303
- }
304
- );
305
- }, P = ({
306
- responseType: t,
307
- onScoreSubmit: l,
308
- onFeedbackSubmit: r
309
- }) => {
310
- const [s, o] = U(), [n, p] = U(null), [d, f] = U(!1), [m, c] = U(!1), h = ee(() => d ? "success" : typeof s == "number" ? "feedback" : "rating", [
311
- s,
312
- d
313
- ]), u = b(async (_) => {
314
- if (o(_), p(null), l) {
315
- c(!0);
316
- try {
317
- await l({ value: _ }), f(!t);
318
- } catch (y) {
319
- p(y instanceof Error ? y : new Error("Failed to submit"));
320
- } finally {
321
- c(!1);
322
- }
323
- } else
324
- f(!t);
325
- }, [
326
- t,
327
- l
328
- ]), x = b(async (_) => {
329
- if (!_?.length)
330
- return;
331
- p(null);
332
- const y = Array.isArray(_) ? _.join(`;
333
- `) : _;
334
- if (r) {
335
- c(!0);
336
- try {
337
- await r({ value: s, text: y }), f(!0);
338
- } catch (w) {
339
- p(w instanceof Error ? w : new Error("Failed to submit"));
340
- } finally {
341
- c(!1);
342
- }
343
- } else
344
- f(!0);
345
- }, [
346
- s,
347
- r
348
- ]);
349
- return {
350
- error: n,
351
- value: s,
352
- screen: h,
353
- isLoading: m,
354
- isSuccess: d,
355
- onScoreChange: u,
356
- onFeedbackChange: x
357
- };
358
- }, ke = "_base_1e603_1", $e = "_label_1e603_6", Te = "_between_1e603_14", qe = "_center_1e603_28", Ne = "_text_1e603_40", v = {
359
- base: ke,
360
- label: $e,
361
- between: Te,
362
- center: qe,
363
- text: Ne
364
- }, M = ({
365
- className: t,
366
- classNames: l,
367
- minLabel: r,
368
- maxLabel: s,
369
- placement: o = "between"
370
- }) => /* @__PURE__ */ E("div", { className: i(v.base, v[o], l?.base, t), children: [
371
- /* @__PURE__ */ a("div", { className: i(v.label, l?.label), children: /* @__PURE__ */ a("span", { className: v.text, children: r }) }),
372
- /* @__PURE__ */ a("div", { className: i(v.label, l?.label), children: /* @__PURE__ */ a("span", { className: v.text, children: s }) })
373
- ] }), Q = (t) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: 40, height: 40, fill: "none", viewBox: "0 0 40 40", ...t }, /* @__PURE__ */ e.createElement("path", { fill: "url(#paint0_radial_5688_13)", d: "M20 38c9.942 0 18-8.058 18-18 0-9.94-8.058-18-18-18-9.94 0-18 8.06-18 18 0 9.942 8.06 18 18 18" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint1_radial_5688_13)", d: "M20 38c9.942 0 18-8.058 18-18 0-9.94-8.058-18-18-18-9.94 0-18 8.06-18 18 0 9.942 8.06 18 18 18", opacity: 0.5 }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint2_linear_5688_13)", d: "M16.93 13.666c.191-.697-.45-1.339-1.744-1.687-1.102-.292-3.679-.338-5.918 1.361-.416.315 0 .652.372.484 1.26-.597 4.297-.979 6.379-.169.832.326.91.011.91.011" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint3_radial_5688_13)", d: "M14.117 20.968c.957 0 1.732-1.174 1.732-2.622s-.775-2.62-1.732-2.62-1.732 1.173-1.732 2.62.775 2.622 1.732 2.622" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint4_linear_5688_13)", d: "M14.117 16.602c.742 0 1.395.653 1.732 1.61-.022-1.418-.787-2.555-1.732-2.555s-1.71 1.137-1.732 2.554c.337-.956.99-1.609 1.732-1.609" }), /* @__PURE__ */ e.createElement("path", { fill: "#643800", d: "M12.45 30.845a.46.46 0 0 0 .384-.112c1.833-1.62 4.668-2.498 6.794-2.498h.743c2.127 0 4.962.878 6.795 2.498.101.09.248.134.383.112.146-.022.224-.18.146-.304-1.564-2.565-4.466-4.151-7.605-4.151h-.18c-3.15 0-6.042 1.586-7.606 4.151-.09.125-.01.282.147.304" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint5_linear_5688_13)", d: "M12.452 30.845a.46.46 0 0 0 .383-.112c1.833-1.62 4.668-2.498 6.794-2.498h.743c2.126 0 4.961.877 6.795 2.498.101.09.248.134.382.112.147-.022.226-.18.147-.304-.012-.023-.034-.045-.046-.079-.145.079-.303.158-.472-.01-1.744-1.846-4.32-2.948-7.088-2.948h-.202c-2.779 0-5.377 1.113-7.121 2.992-.157.169-.304.09-.45 0-.012.023-.022.034-.034.057-.067.112.012.27.17.292" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint6_linear_5688_13)", d: "M23.072 13.666c-.191-.697.45-1.339 1.744-1.687 1.103-.292 3.679-.338 5.918 1.361.416.315 0 .652-.372.484-1.26-.597-4.297-.979-6.379-.169-.832.326-.91.011-.91.011" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint7_radial_5688_13)", d: "M25.873 20.968c.957 0 1.732-1.174 1.732-2.622s-.775-2.62-1.732-2.62-1.732 1.173-1.732 2.62.775 2.622 1.732 2.622" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint8_linear_5688_13)", d: "M25.873 16.602c.742 0 1.395.653 1.732 1.61-.022-1.418-.787-2.555-1.732-2.555s-1.71 1.137-1.732 2.554c.337-.956.99-1.609 1.732-1.609" }), /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("linearGradient", { id: "paint2_linear_5688_13", x1: 12.647, x2: 13.424, y1: 14.976, y2: 12.074, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 1e-3, stopColor: "#3c2200" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#7a4400" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint4_linear_5688_13", x1: 14.12, x2: 14.12, y1: 15.657, y2: 18.213, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 1e-3, stopColor: "#3c2200" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#512d00" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint5_linear_5688_13", x1: 19.997, x2: 19.997, y1: 26.57, y2: 29.09, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 1e-3, stopColor: "#3c2200" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#512d00" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint6_linear_5688_13", x1: 27.323, x2: 26.545, y1: 15.046, y2: 12.144, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 1e-3, stopColor: "#3c2200" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#7a4400" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint8_linear_5688_13", x1: 25.873, x2: 25.873, y1: 15.657, y2: 18.213, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 1e-3, stopColor: "#3c2200" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#512d00" })), /* @__PURE__ */ e.createElement("radialGradient", { id: "paint0_radial_5688_13", cx: 0, cy: 0, r: 1, gradientTransform: "translate(16.454 12.705)scale(21.7148)", gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#ffe030" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#ffb92e" })), /* @__PURE__ */ e.createElement("radialGradient", { id: "paint1_radial_5688_13", cx: 0, cy: 0, r: 1, gradientTransform: "translate(16.454 12.705)scale(17.084)", gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#ffea5f" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#ffbc47", stopOpacity: 0 })), /* @__PURE__ */ e.createElement("radialGradient", { id: "paint3_radial_5688_13", cx: 0, cy: 0, r: 1, gradientTransform: "rotate(73.854 -5.448 18.256)scale(2.54329 1.64547)", gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 1e-3, stopColor: "#7a4400" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#643800" })), /* @__PURE__ */ e.createElement("radialGradient", { id: "paint7_radial_5688_13", cx: 0, cy: 0, r: 1, gradientTransform: "rotate(73.854 .428 26.075)scale(2.54329 1.64547)", gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 1e-3, stopColor: "#7a4400" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#643800" })))), X = (t) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: 40, height: 40, fill: "none", viewBox: "0 0 40 40", ...t }, /* @__PURE__ */ e.createElement("path", { fill: "url(#paint0_radial_15759_16891)", d: "M20 38a18 18 0 1 0 0-36 18 18 0 0 0 0 36" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint1_radial_15759_16891)", d: "M20 38a18 18 0 1 0 0-36 18 18 0 0 0 0 36", opacity: 0.5 }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint2_linear_15759_16891)", d: "M16.04 10.67c0-.72-.78-1.17-2.13-1.17-1.13 0-3.64.63-5.36 2.85-.32.4.17.63.48.37a9.7 9.7 0 0 1 6.12-1.81c.89.09.89-.24.89-.24" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint3_radial_15759_16891)", d: "M14.12 19.42c.95 0 1.73-1.18 1.73-2.63 0-1.44-.78-2.62-1.73-2.62-.96 0-1.74 1.18-1.74 2.62s.78 2.63 1.74 2.63" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint4_linear_15759_16891)", d: "M14.12 15.06c.74 0 1.4.65 1.73 1.61-.02-1.42-.79-2.55-1.73-2.55-.95 0-1.71 1.13-1.74 2.55.34-.96 1-1.6 1.74-1.6" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint5_linear_15759_16891)", d: "M23.96 10.67c0-.72.78-1.17 2.13-1.17 1.13 0 3.64.63 5.36 2.85.32.4-.17.63-.48.37a9.7 9.7 0 0 0-6.12-1.81c-.9.09-.89-.24-.89-.24" }), /* @__PURE__ */ e.createElement("path", { fill: "#643800", d: "M27.95 25.27a.5.5 0 0 0-.4.12 11.3 11.3 0 0 1-7.17 2.79h-.76c-2.25 0-5.23-.98-7.17-2.8a.5.5 0 0 0-.4-.11c-.16.03-.24.2-.16.33a9.3 9.3 0 0 0 8.02 4.63h.2a9.3 9.3 0 0 0 8.02-4.63.25.25 0 0 0-.18-.33" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint6_radial_15759_16891)", d: "M25.87 19.42c.96 0 1.73-1.18 1.73-2.63 0-1.44-.77-2.62-1.73-2.62-.95 0-1.73 1.18-1.73 2.62s.78 2.63 1.73 2.63" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint7_linear_15759_16891)", d: "M25.87 15.06c-.74 0-1.4.65-1.73 1.61.02-1.42.79-2.55 1.73-2.55.95 0 1.71 1.13 1.73 2.55-.33-.96-.99-1.6-1.73-1.6" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint8_linear_15759_16891)", d: "M27.95 25.27a.5.5 0 0 0-.4.12 11.3 11.3 0 0 1-7.17 2.79h-.76c-2.25 0-5.23-.98-7.17-2.8a.5.5 0 0 0-.4-.11c-.16.03-.24.2-.16.33l.05.08c.16-.09.33-.18.5.01a10 10 0 0 0 7.47 3.3h.2a10 10 0 0 0 7.5-3.34c.17-.2.33-.1.48 0l.03-.06c.07-.12 0-.3-.17-.32" }), /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("linearGradient", { id: "paint2_linear_15759_16891", x1: 12.24, x2: 12.24, y1: 11.88, y2: 9.98, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0, stopColor: "#3c2200" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#7a4400" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint4_linear_15759_16891", x1: 14.12, x2: 14.12, y1: 14.16, y2: 16.61, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0, stopColor: "#3c2200" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#512d00" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint5_linear_15759_16891", x1: 27.75, x2: 27.75, y1: 11.88, y2: 9.98, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0, stopColor: "#3c2200" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#7a4400" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint7_linear_15759_16891", x1: 25.87, x2: 25.87, y1: 14.16, y2: 16.61, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0, stopColor: "#3c2200" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#512d00" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint8_linear_15759_16891", x1: 20, x2: 20, y1: 26.54, y2: 29.22, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0, stopColor: "#3c2200" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#512d00" })), /* @__PURE__ */ e.createElement("radialGradient", { id: "paint0_radial_15759_16891", cx: 0, cy: 0, r: 1, gradientTransform: "translate(16.45 12.7)scale(21.71)", gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#ffe030" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#ffb92e" })), /* @__PURE__ */ e.createElement("radialGradient", { id: "paint1_radial_15759_16891", cx: 0, cy: 0, r: 1, gradientTransform: "translate(16.45 12.7)scale(17.08)", gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#ffea5f" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#ffbc47", stopOpacity: 0 })), /* @__PURE__ */ e.createElement("radialGradient", { id: "paint3_radial_15759_16891", cx: 0, cy: 0, r: 1, gradientTransform: "matrix(.7 2.44 -1.58 .46 13.6 16.87)", gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0, stopColor: "#7a4400" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#643800" })), /* @__PURE__ */ e.createElement("radialGradient", { id: "paint6_radial_15759_16891", cx: 0, cy: 0, r: 1, gradientTransform: "rotate(74 1.45 25.3)scale(2.54 1.65)", gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0, stopColor: "#7a4400" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#643800" })))), ze = "_list_grany_1", Fe = "_icon_grany_7", je = "_button_grany_12", $ = {
374
- list: ze,
375
- icon: Fe,
376
- button: je
377
- }, Ae = ({
378
- classNames: t,
379
- minLabel: l,
380
- maxLabel: r,
381
- onChange: s
382
- }) => {
383
- const o = [
384
- [Q, 0, l ?? "Dissatisfied"],
385
- [X, 1, r ?? "Satisfied"]
386
- ], n = b((p) => {
387
- s(Number(p.currentTarget.value));
388
- }, [s]);
389
- return /* @__PURE__ */ E("div", { className: i($.base, t?.base), children: [
390
- /* @__PURE__ */ a("div", { className: i($.list, t?.list), children: o.map(([p, d, f]) => /* @__PURE__ */ a(
391
- "button",
392
- {
393
- "aria-label": f,
394
- className: i($.button, t?.button),
395
- type: "button",
396
- value: d,
397
- onClick: n,
398
- children: /* @__PURE__ */ a(
399
- p,
400
- {
401
- "aria-hidden": "true",
402
- className: i($.icon, t?.icon),
403
- width: 32,
404
- height: 32
405
- }
406
- )
407
- },
408
- d
409
- )) }),
410
- !!l && !!r && /* @__PURE__ */ a(
411
- M,
412
- {
413
- className: i($.labels, t?.labels),
414
- minLabel: l,
415
- maxLabel: r,
416
- placement: "center"
417
- }
418
- )
419
- ] });
420
- }, Ie = (t) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: 40, height: 40, fill: "none", viewBox: "0 0 40 40", ...t }, /* @__PURE__ */ e.createElement("path", { fill: "url(#paint0_linear_15759_16997)", d: "M20.1 36c1.24 0 1.71-1 1.62-2.91-.07-1.27-.5-4.8 1.3-6.59 1.66-1.67 2.15-1.52 4.05-3.67s3.48-1.71 5.7-1.52c2.77.24 1.83-15.21-.13-14.94-1.4.19-4.56.57-5.07.57-.5 0-3.98-2.7-7.02-2.73-4.94-.05-7.66.83-7.66.83l-1.45 3.28-.48 10 2.3 4.82s3.1-.5 4 .9c.88 1.38-.7 3.1-.7 7.08 0 4 2.91 4.88 3.54 4.88" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint1_linear_15759_16997)", d: "m12.72 5.07.18.68c.56.06 1.28-.2 2.25-.19 4.67.04 9.13 1.38 11.05 2.9 1.25.99 1.8 2.31 2.69 1.93 1.09-.47 4.2-1.2 5.33.25-.32-2.47-.89-4.37-1.58-4.27-1.4.19-4.56.57-5.07.57-.5 0-3.88-2.62-7.02-2.73-4.07-.13-7.68.57-7.68.57z" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint2_linear_15759_16997)", d: "M30.79 20.33c-1.84-.5-3 .34-3.94 1.48-.94 1.13-1.74 2.13-4.09 3.65s-2.04 5.7-1.85 7.1c.2 1.39.07 3.44-.8 3.44 1.23 0 1.7-1 1.6-2.91-.06-1.27-.48-4.8 1.3-6.59 1.67-1.67 2.16-1.52 4.06-3.67s3.48-1.71 5.7-1.52c0-.48-.15-.47-1.98-.98" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint3_linear_15759_16997)", d: "M17.26 24.03c.88 1.4-.7 3.1-.7 7.1 0 3.98 2.91 4.87 3.54 4.87q.26 0 .45-.05c-2.58-.17-4.14-3.42-3.25-6.78.73-2.73 1.09-4.91-.1-6.2-.76-.83-2.27-.68-3.93.18 0 0 3.1-.51 3.99.88" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint4_linear_15759_16997)", d: "M17.08 22.61c1.52-.5 5.36-1.7 8.26-4.33 7.37-6.69-5.2-7.52-7.8-13.24-.5-1.09-3.4 5.73-3.4 5.73l-.94 1.58 2.71 7.22z" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint5_linear_15759_16997)", d: "M16.86 22.03c1.52-.5 7.72-4.48 7.72-6.45 0-5.66-4.3-2.87-6.62-9.55-.32-.93-1.45-1.7-1.45-1.7-.95.76-2.37 6.44-2.37 6.44l-.94 1.58 2.71 7.22z" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint6_linear_15759_16997)", d: "M13.35 4.66 10.45 8 9.8 21.88l7.28.73c1.67-.9 1.87-2.13 1.25-4.1-.27-.84.8-1.07.86-3.5.05-1.67-1.05-1.68-1.05-2.18s.55-.45.73-1.9c.26-2.07-1.47-2.1-1.47-2.55s.96-.7.9-2.39c-.07-2.14 3.9-1.7 6.58.24 1.1.8 2.06.88 2.81.7h-.12c-.5 0-3.9-2.72-7.02-2.72-3.65 0-6.17.22-7.2.45" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint7_linear_15759_16997)", d: "M12.68 21.7c2.25 0 3.49-2.2 2.63-3.89-.85-1.69 1.58-3.92 1.33-5.02s-.7-3.88-1.04-4.34c-.35-.47.57-1.51.57-1.51l-2.85-.35-2.66 1.17.1 8.05-.29 5.03z" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint8_linear_15759_16997)", d: "M27.07 22.83c1.23-1.4 2.33-1.7 3.56-1.7-.36-.56-.6-1.19-.58-1.8.07-1.6-.28-3.57-.55-1.52-.2 1.57-1.27 3.5-2.54 5.14z" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint9_linear_15759_16997)", d: "M10.98 23.2c2.66.11 7.43.26 7.54-2.52.08-2.02-1.35-2.69-3.57-2.77l-4.23-.16c-.92-.04-3.8-.02-3.83 2.42-.04 3.05 4.1 3.04 4.1 3.04" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint10_linear_15759_16997)", d: "M15.35 13.14c.71.02 2.83-.51 3.03-1.85.15-1.06-.39-2.43-2.23-2.75-2.33-.4-6.21-.62-7.66-.08-.65.25-1.22.92-1.25 1.95a2.4 2.4 0 0 0 2.4 2.47c1.66.05 2.52.02 3.47.13 1.14.14 1.67.12 2.24.13" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint11_linear_15759_16997)", d: "M16.1 8.45c.8 0 1.8-.72 1.8-1.9 0-1.19-.31-2.07-2.04-2.4a15 15 0 0 0-5.56.28C9.5 4.7 9.2 5.45 9.2 6.71s.78 1.48 1.63 1.48c.86 0 1.9-.15 2.49-.12 1.65.08 1.98.38 2.78.38" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint12_linear_15759_16997)", d: "M11.2 22.65c2.33.08 6.5.22 6.58-1.98.06-1.6-1.19-2.13-3.12-2.2s-7.02-.17-7.04 1.76c-.02 2.4 3.59 2.42 3.59 2.42" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint13_linear_15759_16997)", d: "M15.14 12.58c.62.01 2.35-.13 2.52-1.42.11-.87-.34-1.98-1.94-2.25-2.03-.34-5.41-.52-6.68-.07-.56.2-1.05.75-1.08 1.6-.02.83.76 1.87 2.2 1.91s2.22-.1 3.04 0c1 .11 1.44.21 1.94.23" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint14_linear_15759_16997)", d: "M15.75 8.01c.7 0 1.56-.57 1.56-1.53 0-.95-.27-1.66-1.77-1.93a14 14 0 0 0-4.8.23c-.7.21-.97.82-.97 1.84 0 1.01.68 1.19 1.42 1.19s1.64-.13 2.15-.1c1.43.07 1.71.3 2.4.3" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint15_linear_15759_16997)", d: "M16.17 20.67c-.05 1.51-1.26 2.24-2.8 2.57 2.45-.05 5.07-.5 5.15-2.56.08-2.02-1.35-2.69-3.57-2.77q-.36 0-.69-.03c1.25.37 1.97 1.19 1.91 2.79" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint16_linear_15759_16997)", d: "M15.97 22.97c1.41-.31 2.5-.98 2.55-2.3.06-1.67-.91-2.41-2.52-2.66 3.26 1.3 2.09 4.5-.03 4.96" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint17_radial_15759_16997)", d: "M22.18 7.88c.25-.91 2.01-1.21 3.93-.67s3.27 1.7 3.02 2.6-2.02 1.21-3.94.67c-1.91-.53-3.27-1.7-3.01-2.6" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint18_radial_15759_16997)", d: "M9 20.26c.01-1.17 1.57-1.72 3.27-1.82 1.4-.09 2.94.9 2.9 2.04s-.24 2.14-3.14 2.04c-1.7-.05-3.05-1.12-3.04-2.26" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint19_radial_15759_16997)", d: "M8.68 10.02c.01-1.61 1.79-1.3 3.49-1.42 2.16-.14 3.6.53 3.6 1.67s-.83 1.97-3.72 1.97c-1.71 0-3.38-.15-3.37-2.22" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint20_radial_15759_16997)", d: "M10.24 5.95c.01-1.37 1.62-1.56 3.15-1.56s3.18.8 3.18 1.78c0 .97-.73 1.68-3.32 1.68-1.52 0-3.02-.13-3-1.9" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint21_linear_15759_16997)", d: "M16.4 10.96c-.25 1.84-1.66 1.73-3.27 1.92 1.86.14 2.64.16 2.64.16q.26.03.57 0c.6-.14 1.29-.41 1.7-.93a2 2 0 0 0 .34-.82c.13-1.06-.39-2.43-2.23-2.75l-.85-.13-.47-.06-.13-.01c1.01.48 1.87 1.27 1.7 2.62" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint22_linear_15759_16997)", d: "m15.95 13.05.39-.01c.6-.14 1.3-.42 1.7-.94q.2-.29.32-.7 0-.05.02-.11c.18-1.05-.34-2.28-1.94-2.69 2.74 1.52 1.57 4.45-.5 4.45" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint23_linear_15759_16997)", d: "M14.35 8.17c.81.12 1.14.28 1.74.28.8 0 1.8-.71 1.8-1.9q.02-.65-.17-1.16a2 2 0 0 0-.6-.76q-.44-.32-1.26-.48a9 9 0 0 0-1.23-.13c.85.49 2.28.75 1.98 2.4-.33 1.82-1.42 1.57-2.26 1.75" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint24_linear_15759_16997)", d: "M16.13 8.45c.8-.02 1.77-.73 1.77-1.9 0-1.09-.26-1.92-1.64-2.3 2.15 1.38 1.46 3.7-.13 4.2" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint25_linear_15759_16997)", d: "M6.89 20.17q0 .4.08.75c-.21-.95.64-1.9 2.88-2.36 1.5-.3 5.44-.68 8.18.4-.59-.71-1.68-1-3.08-1.05l-4.23-.16c-.92-.04-3.8-.02-3.83 2.42" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint26_linear_15759_16997)", d: "M7.24 10.48c0 1.02.77 2.35 2.4 2.4 1.66.05 2.52.02 3.47.13 1.14.14 1.67.12 2.24.13.43.02 1.5-.11 2.22-.56a10 10 0 0 0-4-.59c-4.46.29-5.73-.25-6.33-1.51" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint27_linear_15759_16997)", d: "M16.3 17.75c.96.02 2.46-.54 2.5-2.51s-1.68-2.44-2.44-2.46c-.76-.01-3.42-.2-6.69-.26s-3.71 1.7-3.73 2.62.56 2.58 2.53 2.62c5.7.12 7.84-.01 7.84-.01" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint28_linear_15759_16997)", d: "M15.8 17.18c.82.01 2.13-.41 2.16-1.93s-1.47-1.9-2.13-1.9c-.66-.02-2.97-.16-5.81-.22-2.85-.06-3.23 1.3-3.24 2.01s.08 2 1.8 2.03c4.95.1 7.22 0 7.22 0" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint29_linear_15759_16997)", d: "M16.77 15.43c-.1 2.02-1.51 2.03-3.1 2.38a58 58 0 0 0 2.64-.06c.95.02 2.45-.54 2.5-2.51.03-1.97-1.7-2.44-2.45-2.46-.27 0-.8-.03-1.5-.06 1.05.43 1.98 1.22 1.9 2.7" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint30_radial_15759_16997)", d: "M7.6 15.22c-.06-1.61 1.73-1.92 3.44-2 1.7-.08 3.6.78 3.65 1.92s-.73 2-3.62 2.15c-1.7.08-3.38 0-3.46-2.07" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint31_linear_15759_16997)", d: "M16.49 17.75a2.37 2.37 0 0 0 2.31-2.51c.04-1.87-1.51-2.4-2.32-2.45 3.12 1.26 2.1 4.77 0 4.96" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint32_linear_15759_16997)", d: "M5.94 15.33c.41-2.91 8.12-2.38 12.29-1.75-.57-.6-1.4-.79-1.87-.8-.76-.01-3.42-.2-6.69-.26s-3.71 1.7-3.73 2.62z" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint33_linear_15759_16997)", d: "M9.8 8.84c1.5-.07 5.45-.56 8.33.99-.33-.6-.95-1.1-1.98-1.29-2.33-.4-6.21-.62-7.66-.08-.65.25-1.22.92-1.25 1.95.1-.9.95-1.5 2.56-1.57" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint34_linear_15759_16997)", d: "M9.3 5.6c.98-.75 2.67-1.18 5.1-.77 1.52.25 2.55.34 3.23.36-.27-.5-.8-.85-1.77-1.04a15 15 0 0 0-5.56.28q-.78.25-1 1.17" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint35_linear_15759_16997)", d: "M17.58 7.62c-1.81.65-2.7-.32-4.63-.32-2 0-2.97.8-3.68.04.22.7.87.85 1.55.85.86 0 1.9-.15 2.49-.12 1.65.08 1.98.38 2.78.38.53 0 1.13-.3 1.49-.83" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint36_linear_15759_16997)", d: "M32.64 6.37c-1.4.19-4.56.57-5.07.57 4.6 3.28 2.55 10.26.86 13.79q-.35.74-.47 1.25c1.53-1.17 2.94-.83 4.8-.67 2.78.24 1.84-15.21-.12-14.94" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint37_linear_15759_16997)", d: "M27.57 6.93c.4.34.87.9 1.3 1.45 0 0 2.3-1.18 4.77-.62-.28-.9-.62-1.45-1-1.4-1.4.2-4.56.57-5.07.57" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint38_radial_15759_16997)", d: "M18.63 30.2c.9-.2 1.63 1.04 2.04 2.5.34 1.19-.12 2.7-1 2.87-.89.17-1.7.18-2.2-2.34-.28-1.48.28-2.85 1.16-3.04" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint39_linear_15759_16997)", d: "M13.27 23.15s3.1-.51 3.99.88c.88 1.4-.7 3.1-.7 7.1 0 3.98 2.91 4.87 3.54 4.87 1.24 0 1.71-1 1.62-2.91-.07-1.27-.5-4.8 1.3-6.59 1.66-1.67 2.15-1.52 4.05-3.67s-11.78-.6-13.8.32" }), /* @__PURE__ */ e.createElement("path", { fill: "#804b24", d: "M16.13 8.45c.5 0 1-.23 1.35-.6.36-.38.52-.92.5-1.43s-.1-1.03-.42-1.45a2.2 2.2 0 0 0-1.3-.73c.46.17.92.4 1.2.8s.35.9.35 1.39c.03.48-.11.96-.43 1.33-.3.37-.75.63-1.25.69M16.92 12.86q.53-.14.95-.5c.29-.24.46-.58.56-.93q.1-.49.03-.98-.1-.49-.4-.9a2.6 2.6 0 0 0-1.62-.95c.6.2 1.16.53 1.5 1.04.36.5.46 1.15.34 1.75-.09.33-.22.66-.48.9q-.38.36-.88.57" }), /* @__PURE__ */ e.createElement("path", { fill: "#804b24", d: "M16.49 17.75c.59 0 1.2-.21 1.64-.63.46-.42.7-1.03.74-1.63s-.05-1.25-.42-1.74a2.4 2.4 0 0 0-1.53-.9c.57.17 1.1.5 1.42.97.33.48.42 1.08.36 1.65a2.4 2.4 0 0 1-.66 1.56c-.4.4-.97.65-1.55.72M15.97 22.97c.64-.11 1.29-.3 1.82-.72.55-.4.85-1.1.81-1.77a2.3 2.3 0 0 0-.76-1.8c-.52-.44-1.2-.6-1.84-.67.64.13 1.28.34 1.76.77.48.42.69 1.07.68 1.7.04.64-.23 1.27-.73 1.67-.5.41-1.12.65-1.74.82M18.13 9.83q-.31-.57-.86-.94a3 3 0 0 0-1.2-.42q-1.27-.22-2.53-.33-1.27-.08-2.55-.05c-.84.03-1.7.07-2.5.37.4-.13.82-.17 1.24-.2q.63-.07 1.27-.06 1.26 0 2.53.1 1.26.09 2.52.28c.81.11 1.64.5 2.08 1.25" }), /* @__PURE__ */ e.createElement("path", { fill: "#804b24", d: "M18.23 13.58c-.3-.34-.72-.59-1.16-.72-.44-.15-.91-.13-1.36-.16l-2.73-.13-2.73-.08a6 6 0 0 0-2.7.34c.87-.3 1.8-.29 2.7-.23l2.73.13 2.73.08c.45.02.9 0 1.34.12q.67.17 1.18.65M8.47 17.76a90 90 0 0 0 7.84.06c.67 0 1.36-.25 1.83-.74q.37-.37.52-.86.14-.48.14-.98a2.6 2.6 0 0 1-.72 1.78c-.46.46-1.13.68-1.77.67l-1.96.03-1.96.03h-1.96z" }), /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("linearGradient", { id: "paint0_linear_15759_16997", x1: 13.17, x2: 22.69, y1: 20.37, y2: 19.99, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0, stopColor: "#ffcb4b" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#ffd748" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint1_linear_15759_16997", x1: 22.77, x2: 23.43, y1: 15.41, y2: 8.26, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0, stopColor: "#ffcb4b" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#ffd748" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint2_linear_15759_16997", x1: 24.66, x2: 17.49, y1: 26.01, y2: 15.76, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0, stopColor: "#ffcb4b" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#ffd748" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint3_linear_15759_16997", x1: 29.85, x2: 11.48, y1: 30.1, y2: 28.72, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0.31, stopColor: "#ffbc47", stopOpacity: 0 }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#ff8900" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint4_linear_15759_16997", x1: 30.2, x2: 6.08, y1: 13.77, y2: 13.77, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#ffbc47", stopOpacity: 0 }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#ffa754" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint5_linear_15759_16997", x1: 34.09, x2: -13.56, y1: 13.73, y2: 12.21, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#ffbc47", stopOpacity: 0 }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#c86f34" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint6_linear_15759_16997", x1: 26.52, x2: 18.64, y1: 7.5, y2: 11.77, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#ffbc47", stopOpacity: 0 }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#c86f34" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint7_linear_15759_16997", x1: 17.49, x2: 10.92, y1: 13.57, y2: 14.43, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#643800", stopOpacity: 0 }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#643800" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint8_linear_15759_16997", x1: 29.16, x2: 27.73, y1: 28.08, y2: 4.47, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#ffbc47", stopOpacity: 0 }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#ffa754" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint9_linear_15759_16997", x1: 7.34, x2: 16.66, y1: 20.5, y2: 20.5, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0, stopColor: "#ffbc47" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#ffd748" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint10_linear_15759_16997", x1: 7.34, x2: 16.67, y1: 10.64, y2: 10.64, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0, stopColor: "#ffbc47" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#ffd748" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint11_linear_15759_16997", x1: 7.34, x2: 16.66, y1: 6.22, y2: 6.22, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0, stopColor: "#ffbc47" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#ffd748" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint12_linear_15759_16997", x1: 17.92, x2: 13.06, y1: 20.45, y2: 20.56, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0, stopColor: "#ffcb4b" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#ffd748" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint13_linear_15759_16997", x1: 9.42, x2: 14.38, y1: 10.57, y2: 10.57, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0, stopColor: "#ffcb4b" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#ffd748" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint14_linear_15759_16997", x1: 9.42, x2: 14.38, y1: 6.22, y2: 6.22, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0, stopColor: "#ffcb4b" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#ffd748" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint15_linear_15759_16997", x1: 15.47, x2: 18.11, y1: 20.56, y2: 20.56, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0, stopColor: "#fba23b", stopOpacity: 0 }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#fba23b" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint16_linear_15759_16997", x1: 15.94, x2: 18.98, y1: 20.49, y2: 20.49, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0, stopColor: "#ffbc47" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#e89043" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint21_linear_15759_16997", x1: 15.15, x2: 18.98, y1: 10.69, y2: 10.69, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0, stopColor: "#fba23b", stopOpacity: 0 }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#fba23b" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint22_linear_15759_16997", x1: 15.97, x2: 18.03, y1: 10.83, y2: 10.83, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0, stopColor: "#ffbc47" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#fba23b" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint23_linear_15759_16997", x1: 15.29, x2: 19.77, y1: 6.2, y2: 7.02, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0, stopColor: "#fba23b", stopOpacity: 0 }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#fba23b" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint24_linear_15759_16997", x1: 15.75, x2: 17.65, y1: 6.34, y2: 6.34, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0, stopColor: "#ffbc47" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#fba23b" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint25_linear_15759_16997", x1: 12.74, x2: 11.53, y1: 21.08, y2: 15.26, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#ffbc47", stopOpacity: 0 }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#c86f34" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint26_linear_15759_16997", x1: 11.82, x2: 13.13, y1: 9.57, y2: 14.31, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#ffbc47", stopOpacity: 0 }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#c86f34" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint27_linear_15759_16997", x1: 7.34, x2: 16.66, y1: 15.16, y2: 15.16, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0, stopColor: "#ffbc47" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#ffd748" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint28_linear_15759_16997", x1: 17.04, x2: 9.89, y1: 15.42, y2: 15.16, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0, stopColor: "#ffcb4b" }), /* @__PURE__ */ e.createElement("stop", { offset: 0.74, stopColor: "#ffd748" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#ffcb4b" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint29_linear_15759_16997", x1: 14.25, x2: 19.59, y1: 15.26, y2: 15.26, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0, stopColor: "#fba23b", stopOpacity: 0 }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#fba23b" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint31_linear_15759_16997", x1: 16.73, x2: 18.42, y1: 15.27, y2: 15.27, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0, stopColor: "#ffbc47" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#fba23b" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint32_linear_15759_16997", x1: 12.29, x2: 11.28, y1: 15.78, y2: 9.34, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#ffbc47", stopOpacity: 0 }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#c86f34" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint33_linear_15759_16997", x1: 13, x2: 10.4, y1: 10.8, y2: 5.16, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#ffbc47", stopOpacity: 0 }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#c86f34" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint34_linear_15759_16997", x1: 13.51, x2: 13.13, y1: 5.85, y2: 2.29, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#ffbc47", stopOpacity: 0 }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#c86f34" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint35_linear_15759_16997", x1: 13.42, x2: 13.42, y1: 6.39, y2: 8.97, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#ffbc47", stopOpacity: 0 }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#c86f34" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint36_linear_15759_16997", x1: 31.12, x2: 34.45, y1: 15.85, y2: 25.99, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#c86f34", stopOpacity: 0 }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#c86f34" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint37_linear_15759_16997", x1: 30.55, x2: 30.74, y1: 9.69, y2: 2.43, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#ffbc47", stopOpacity: 0 }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#c86f34" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint39_linear_15759_16997", x1: 20.38, x2: 17.94, y1: 21.74, y2: 43.79, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#ffbc47", stopOpacity: 0 }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#c86f34" })), /* @__PURE__ */ e.createElement("radialGradient", { id: "paint17_radial_15759_16997", cx: 0, cy: 0, r: 1, gradientTransform: "matrix(-3.57 -1 .46 -1.66 26 9.47)", gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#fbe07a" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#ffd748", stopOpacity: 0 })), /* @__PURE__ */ e.createElement("radialGradient", { id: "paint18_radial_15759_16997", cx: 0, cy: 0, r: 1, gradientTransform: "rotate(182 6.22 10.13)scale(3.17 2.08)", gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#fbe07a" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#ffd748" })), /* @__PURE__ */ e.createElement("radialGradient", { id: "paint19_radial_15759_16997", cx: 0, cy: 0, r: 1, gradientTransform: "matrix(-3.4 0 0 -1.84 12.23 10.25)", gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#fbe07a" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#ffd748", stopOpacity: 0 })), /* @__PURE__ */ e.createElement("radialGradient", { id: "paint20_radial_15759_16997", cx: 0, cy: 0, r: 1, gradientTransform: "matrix(-3.12 0 0 -1.95 13.41 6.12)", gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#fbe07a" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#ffd748", stopOpacity: 0 })), /* @__PURE__ */ e.createElement("radialGradient", { id: "paint30_radial_15759_16997", cx: 0, cy: 0, r: 1, gradientTransform: "rotate(177 5.4 7.76)scale(3.49 2.3)", gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#fbe07a" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#ffd748", stopOpacity: 0 })), /* @__PURE__ */ e.createElement("radialGradient", { id: "paint38_radial_15759_16997", cx: 0, cy: 0, r: 1, gradientTransform: "rotate(259 23.1 8.58)scale(3.35 1.96)", gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#fbe07a" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#ffd748", stopOpacity: 0 })))), Re = (t) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: 40, height: 40, fill: "none", viewBox: "0 0 40 40", ...t }, /* @__PURE__ */ e.createElement("path", { fill: "url(#paint0_linear_15759_16949)", d: "M19.9 4c-1.24 0-1.71 1-1.62 2.91.07 1.27.5 4.8-1.3 6.59-1.66 1.67-2.15 1.52-4.05 3.67s-3.48 1.71-5.7 1.52c-2.77-.24-1.83 15.21.13 14.94 1.4-.19 4.56-.57 5.07-.57.5 0 3.98 2.7 7.02 2.73 4.94.05 7.66-.83 7.66-.83l1.45-3.28.48-10.01-2.3-4.82s-3.1.51-4-.88c-.88-1.4.7-3.1.7-7.1C23.44 4.9 20.53 4 19.9 4" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint1_linear_15759_16949)", d: "m27.29 34.93-.2-.68c-.55-.06-1.26.2-2.24.19-4.67-.04-9.13-1.38-11.05-2.9-1.25-1-1.8-2.31-2.69-1.93-1.09.47-4.2 1.2-5.33-.25.32 2.47.89 4.37 1.58 4.27 1.4-.19 4.56-.57 5.07-.57.5 0 3.88 2.62 7.02 2.73 4.07.13 7.68-.57 7.68-.57z" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint2_linear_15759_16949)", d: "M9.21 19.67c1.84.5 3-.34 3.94-1.48.94-1.13 1.74-2.13 4.09-3.65s2.04-5.7 1.85-7.1c-.2-1.39-.07-3.44.8-3.44-1.23 0-1.7 1-1.6 2.91.06 1.27.48 4.8-1.3 6.59-1.67 1.67-2.16 1.52-4.06 3.67s-3.48 1.71-5.7 1.52c0 .48.15.47 1.98.98" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint3_linear_15759_16949)", d: "M22.74 15.97c-.88-1.4.7-3.1.7-7.1C23.44 4.9 20.53 4 19.9 4q-.26 0-.45.05c2.58.17 4.14 3.42 3.25 6.78-.73 2.73-1.09 4.91.1 6.2.76.83 2.27.68 3.93-.18 0 0-3.1.51-3.99-.88" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint4_linear_15759_16949)", d: "M22.92 17.39c-1.52.5-5.36 1.7-8.26 4.33-7.37 6.68 5.2 7.52 7.8 13.24.5 1.09 3.4-5.73 3.4-5.73l.94-1.58-2.71-7.22z" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint5_linear_15759_16949)", d: "M23.14 17.97c-1.52.5-7.72 4.48-7.72 6.45 0 5.66 4.3 2.87 6.62 9.55.32.93 1.46 1.7 1.46 1.7.94-.76 2.36-6.44 2.36-6.44l.94-1.58-2.71-7.22z" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint6_linear_15759_16949)", d: "m26.65 35.34 2.9-3.33.65-13.89-7.28-.73c-1.67.9-1.87 2.13-1.25 4.1.27.83-.8 1.07-.86 3.5-.05 1.67 1.05 1.68 1.05 2.18s-.55.45-.73 1.9c-.26 2.07 1.47 2.1 1.47 2.55s-.96.7-.9 2.39c.07 2.13-3.9 1.7-6.58-.24-1.1-.8-2.06-.88-2.81-.7h.12c.5 0 3.9 2.72 7.02 2.72 3.65 0 6.17-.22 7.2-.45" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint7_linear_15759_16949)", d: "M27.32 18.3c-2.25 0-3.48 2.2-2.63 3.89s-1.58 3.92-1.33 5.02.7 3.88 1.04 4.34-.57 1.5-.57 1.5l2.85.36 2.66-1.18-.1-8.04.29-5.03z" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint8_linear_15759_16949)", d: "M12.93 17.17c-1.23 1.4-2.33 1.7-3.56 1.7.36.56.6 1.19.58 1.8-.07 1.6.28 3.57.55 1.52.2-1.57 1.27-3.5 2.54-5.14z" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint9_linear_15759_16949)", d: "M29.02 16.8c-2.66-.11-7.43-.26-7.54 2.52-.08 2.02 1.35 2.69 3.57 2.77l4.24.16c.91.04 3.8.02 3.82-2.42.04-3.05-4.1-3.04-4.1-3.04" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint10_linear_15759_16949)", d: "M24.65 26.86c-.71-.02-2.83.5-3.03 1.85-.15 1.06.39 2.43 2.23 2.75 2.33.4 6.21.62 7.67.08.64-.25 1.2-.93 1.24-1.95a2.4 2.4 0 0 0-2.4-2.47c-1.66-.05-2.52-.02-3.47-.13-1.14-.14-1.67-.12-2.24-.13" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint11_linear_15759_16949)", d: "M23.9 31.55c-.8 0-1.8.72-1.8 1.9 0 1.19.31 2.07 2.04 2.4 1.74.33 4.51.05 5.56-.28.81-.26 1.11-1.02 1.11-2.28s-.78-1.48-1.63-1.48c-.86 0-1.9.15-2.49.12-1.65-.08-1.98-.38-2.78-.38" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint12_linear_15759_16949)", d: "M28.8 17.35c-2.33-.09-6.5-.22-6.58 1.98-.06 1.6 1.19 2.13 3.12 2.2s7.02.17 7.04-1.76c.02-2.4-3.59-2.42-3.59-2.42" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint13_linear_15759_16949)", d: "M24.86 27.42c-.62-.01-2.35.13-2.52 1.42-.11.87.34 1.98 1.94 2.25 2.03.34 5.41.52 6.68.07.56-.2 1.05-.75 1.08-1.6.02-.83-.76-1.87-2.2-1.91s-2.22.1-3.04 0c-1-.11-1.44-.21-1.94-.23" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint14_linear_15759_16949)", d: "M24.25 31.99c-.7 0-1.56.57-1.56 1.53 0 .95.27 1.66 1.77 1.93 1.5.26 3.9.04 4.8-.23.7-.21.97-.82.97-1.84 0-1.01-.68-1.19-1.42-1.19s-1.64.13-2.15.1c-1.43-.07-1.71-.3-2.4-.3" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint15_linear_15759_16949)", d: "M23.83 19.33c.05-1.51 1.26-2.24 2.8-2.58-2.45.06-5.07.52-5.15 2.57-.08 2.02 1.35 2.69 3.57 2.77q.36 0 .69.03c-1.24-.37-1.97-1.19-1.91-2.79" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint16_linear_15759_16949)", d: "M24.04 17.03c-1.42.3-2.51.98-2.56 2.3-.06 1.67.92 2.41 2.52 2.66-3.25-1.3-2.09-4.5.04-4.96" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint17_radial_15759_16949)", d: "M20.26 32.98c-.38.86-2.16.92-3.99.12s-3-2.14-2.63-3 2.16-.91 3.99-.12c1.83.8 3 2.14 2.63 3" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint18_radial_15759_16949)", d: "M31 19.74c-.01 1.17-1.57 1.72-3.27 1.82-1.4.09-2.94-.9-2.9-2.04s.24-2.15 3.14-2.04c1.7.05 3.06 1.12 3.04 2.26" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint19_radial_15759_16949)", d: "M31.32 29.98c-.01 1.61-1.79 1.3-3.49 1.42-2.16.14-3.6-.53-3.6-1.67s.83-1.97 3.73-1.98c1.7 0 3.37.16 3.36 2.23" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint20_radial_15759_16949)", d: "M29.76 34.05c-.01 1.37-1.62 1.56-3.15 1.56s-3.18-.8-3.18-1.78c0-.97.73-1.68 3.32-1.68 1.53 0 3.02.13 3 1.9" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint21_linear_15759_16949)", d: "M23.6 29.04c.25-1.84 1.66-1.73 3.27-1.92-1.86-.14-2.64-.16-2.64-.16a3 3 0 0 0-.57 0c-.6.14-1.29.41-1.7.93a2 2 0 0 0-.34.82c-.13 1.06.39 2.43 2.23 2.75l.85.13.47.06.13.01c-1.01-.48-1.87-1.27-1.7-2.62" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint22_linear_15759_16949)", d: "m24.05 26.95-.39.01c-.6.14-1.3.42-1.7.94q-.2.29-.32.7 0 .05-.02.11c-.18 1.05.34 2.28 1.94 2.69-2.74-1.52-1.57-4.45.5-4.45" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint23_linear_15759_16949)", d: "M25.65 31.83c-.8-.12-1.14-.28-1.74-.28-.8 0-1.8.71-1.8 1.9q-.01.65.17 1.16.2.42.6.76.44.32 1.26.48.57.1 1.23.13c-.84-.49-2.28-.75-1.98-2.4.33-1.82 1.42-1.57 2.26-1.75" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint24_linear_15759_16949)", d: "M23.87 31.55c-.8.02-1.77.73-1.77 1.9 0 1.09.26 1.92 1.64 2.3-2.15-1.38-1.46-3.7.13-4.2" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint25_linear_15759_16949)", d: "M33.11 19.83q0-.4-.08-.75c.21.95-.63 1.9-2.88 2.36-1.49.3-5.44.68-8.18-.4.6.71 1.68 1 3.08 1.05l4.24.16c.91.04 3.8.02 3.82-2.42" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint26_linear_15759_16949)", d: "M32.76 29.52c0-1.02-.77-2.35-2.4-2.4-1.66-.05-2.52-.02-3.47-.13-1.14-.14-1.67-.12-2.24-.13-.43-.02-1.5.11-2.21.56.8.29 2.13.7 3.99.59 4.46-.29 5.73.25 6.33 1.51" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint27_linear_15759_16949)", d: "M23.7 22.25c-.96-.02-2.46.54-2.5 2.51s1.68 2.44 2.44 2.46c.76.01 3.42.2 6.69.26s3.71-1.7 3.73-2.62-.56-2.58-2.53-2.62c-5.7-.12-7.84.01-7.84.01" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint28_linear_15759_16949)", d: "M24.2 22.82c-.82-.01-2.13.41-2.16 1.93-.03 1.53 1.47 1.9 2.13 1.9.66.02 2.97.16 5.81.22 2.85.06 3.23-1.3 3.24-2.01s-.08-2-1.8-2.03c-4.95-.1-7.22 0-7.22 0" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint29_linear_15759_16949)", d: "M23.23 24.57c.1-2.02 1.51-2.03 3.1-2.38-1.86.01-2.64.06-2.64.06-.95-.02-2.45.54-2.5 2.51-.03 1.97 1.7 2.44 2.45 2.46q.44 0 1.5.06c-1.05-.43-1.98-1.22-1.9-2.7" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint30_radial_15759_16949)", d: "M32.4 24.78c.06 1.61-1.73 1.92-3.43 2s-3.6-.78-3.66-1.92c-.05-1.14.73-2 3.62-2.15 1.7-.08 3.38 0 3.46 2.07" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint31_linear_15759_16949)", d: "M23.52 22.25c-.95.05-2.29.66-2.32 2.51-.04 1.87 1.52 2.4 2.32 2.45-3.12-1.26-2.1-4.77 0-4.96" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint32_linear_15759_16949)", d: "M34.06 24.67c-.41 2.91-8.12 2.38-12.29 1.75.57.6 1.4.79 1.87.8.76.01 3.42.2 6.69.26s3.71-1.7 3.73-2.62z" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint33_linear_15759_16949)", d: "M30.2 31.16c-1.5.07-5.45.56-8.33-.99.33.6.95 1.1 1.98 1.29 2.33.4 6.21.62 7.66.08.65-.25 1.22-.92 1.25-1.95-.1.9-.95 1.5-2.56 1.57" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint34_linear_15759_16949)", d: "M30.7 34.4c-.98.74-2.67 1.18-5.1.77-1.52-.25-2.55-.34-3.23-.36.27.5.8.85 1.77 1.04 1.74.33 4.51.05 5.56-.28q.79-.26 1-1.17" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint35_linear_15759_16949)", d: "M22.42 32.38c1.81-.65 2.7.32 4.63.32 2 0 2.97-.8 3.68-.04-.22-.7-.87-.85-1.55-.85-.86 0-1.9.15-2.49.12-1.65-.08-1.98-.38-2.78-.38-.52 0-1.13.3-1.49.83" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint36_linear_15759_16949)", d: "M7.37 33.63c1.39-.19 4.55-.57 5.06-.57-4.6-3.28-2.55-10.26-.86-13.8q.36-.73.47-1.24c-1.53 1.17-2.94.83-4.8.67-2.78-.24-1.84 15.21.13 14.94" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint37_linear_15759_16949)", d: "M10.26 30.46c-.48-.63-.06.73.32 1.71.32.84-2.16.34-4.05.55.24.61.53.96.84.91 1.39-.19 4.55-.57 5.06-.57-.72-.6-1.7-1.96-2.17-2.6" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint38_linear_15759_16949)", d: "M12.43 33.07c-.4-.34-.87-.9-1.3-1.45 0 0-2.3 1.18-4.77.62.28.9.62 1.45 1 1.4a95 95 0 0 1 5.07-.57" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint39_radial_15759_16949)", d: "M21.16 9.94c-.9.2-1.64-1.05-2.05-2.5-.34-1.19.12-2.7 1-2.88.9-.17 1.71-.17 2.2 2.35.29 1.48-.27 2.84-1.15 3.03" }), /* @__PURE__ */ e.createElement("path", { fill: "#804b24", d: "M23.87 31.55c-.5.06-.94.32-1.25.69s-.46.85-.43 1.33c0 .5.08.99.35 1.38.28.4.74.64 1.2.8-.48-.1-.98-.3-1.3-.72s-.4-.96-.42-1.45c-.02-.51.14-1.05.5-1.43.35-.37.85-.6 1.35-.6M23.08 27.14q-.5.21-.88.57a2 2 0 0 0-.48.9c-.12.6-.02 1.25.33 1.75s.91.84 1.51 1.04a2.6 2.6 0 0 1-1.62-.96q-.3-.4-.4-.9-.08-.48.03-.96.14-.56.56-.94.42-.35.95-.5M23.52 22.25a2.6 2.6 0 0 0-1.56.72c-.4.41-.63.98-.66 1.56-.06.57.03 1.17.36 1.65.32.47.85.8 1.42.96-.58-.1-1.16-.4-1.53-.89a2.5 2.5 0 0 1-.42-1.74c.05-.6.29-1.21.74-1.63a2.5 2.5 0 0 1 1.65-.63M24.04 17.03c-.63.17-1.26.4-1.75.82-.5.4-.77 1.03-.73 1.67 0 .63.2 1.28.69 1.7.47.43 1.11.64 1.75.77a3.4 3.4 0 0 1-1.84-.67 2.3 2.3 0 0 1-.76-1.8 2.1 2.1 0 0 1 .81-1.77c.54-.41 1.19-.6 1.83-.72" }), /* @__PURE__ */ e.createElement("path", { fill: "#804b24", d: "M21.87 30.17a2.8 2.8 0 0 0 2.09 1.25q1.25.2 2.51.27 1.28.12 2.54.11.63 0 1.26-.05c.42-.04.84-.08 1.25-.21-.8.3-1.67.34-2.51.37q-1.28.03-2.55-.05-1.26-.11-2.52-.33-.65-.1-1.2-.43a2.3 2.3 0 0 1-.87-.93M21.77 26.42q.5.48 1.18.64c.43.13.89.1 1.34.13l2.73.08 2.73.13c.9.06 1.83.07 2.7-.23-.85.36-1.8.39-2.7.34l-2.73-.08-2.73-.13c-.45-.03-.92-.01-1.36-.16a2.6 2.6 0 0 1-1.16-.72M31.53 22.24q-.98.01-1.96.01H27.6l-1.96.03q-.97-.01-1.95.04c-.65-.02-1.32.2-1.78.66-.47.46-.7 1.12-.72 1.78q0-.5.14-.98.16-.49.52-.86a2.6 2.6 0 0 1 1.83-.73q1.95-.1 3.92-.06 1.95.01 3.92.1" }), /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("linearGradient", { id: "paint0_linear_15759_16949", x1: 26.83, x2: 17.31, y1: 19.63, y2: 20.01, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0, stopColor: "#ffcb4b" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#ffd748" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint1_linear_15759_16949", x1: 16.56, x2: 16.37, y1: 32.83, y2: 27.83, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0, stopColor: "#ffcb4b" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#ffd748" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint2_linear_15759_16949", x1: 15.34, x2: 22.51, y1: 13.98, y2: 24.24, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0, stopColor: "#ffcb4b" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#ffd748" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint3_linear_15759_16949", x1: 10.15, x2: 28.52, y1: 9.9, y2: 11.27, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0.31, stopColor: "#ffbc47", stopOpacity: 0 }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#ff8900" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint4_linear_15759_16949", x1: 9.8, x2: 33.92, y1: 26.23, y2: 26.23, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#ffbc47", stopOpacity: 0 }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#ffa754" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint5_linear_15759_16949", x1: 5.91, x2: 53.56, y1: 26.27, y2: 27.79, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#ffbc47", stopOpacity: 0 }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#c86f34" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint6_linear_15759_16949", x1: 13.48, x2: 21.36, y1: 32.5, y2: 28.22, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#ffbc47", stopOpacity: 0 }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#c86f34" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint7_linear_15759_16949", x1: 22.51, x2: 29.08, y1: 26.43, y2: 25.57, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#643800", stopOpacity: 0 }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#643800" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint8_linear_15759_16949", x1: 10.84, x2: 12.27, y1: 11.92, y2: 35.53, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#ffbc47", stopOpacity: 0 }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#ffa754" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint9_linear_15759_16949", x1: 32.66, x2: 23.34, y1: 19.5, y2: 19.5, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0, stopColor: "#ffbc47" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#ffd748" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint10_linear_15759_16949", x1: 32.66, x2: 23.33, y1: 29.36, y2: 29.36, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0, stopColor: "#ffbc47" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#ffd748" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint11_linear_15759_16949", x1: 32.66, x2: 23.34, y1: 33.78, y2: 33.78, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0, stopColor: "#ffbc47" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#ffd748" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint12_linear_15759_16949", x1: 22.08, x2: 26.94, y1: 19.55, y2: 19.44, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0, stopColor: "#ffcb4b" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#ffd748" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint13_linear_15759_16949", x1: 30.58, x2: 25.62, y1: 29.42, y2: 29.42, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0, stopColor: "#ffcb4b" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#ffd748" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint14_linear_15759_16949", x1: 30.58, x2: 25.62, y1: 33.78, y2: 33.78, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0, stopColor: "#ffcb4b" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#ffd748" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint15_linear_15759_16949", x1: 24.53, x2: 21.89, y1: 19.44, y2: 19.44, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0, stopColor: "#fba23b", stopOpacity: 0 }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#fba23b" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint16_linear_15759_16949", x1: 24.06, x2: 21.02, y1: 19.51, y2: 19.51, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0, stopColor: "#ffbc47" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#e89043" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint21_linear_15759_16949", x1: 24.85, x2: 21.02, y1: 29.31, y2: 29.31, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0, stopColor: "#fba23b", stopOpacity: 0 }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#fba23b" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint22_linear_15759_16949", x1: 24.03, x2: 21.97, y1: 29.17, y2: 29.17, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0, stopColor: "#ffbc47" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#fba23b" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint23_linear_15759_16949", x1: 24.71, x2: 20.23, y1: 33.8, y2: 32.98, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0, stopColor: "#fba23b", stopOpacity: 0 }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#fba23b" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint24_linear_15759_16949", x1: 24.25, x2: 22.35, y1: 33.66, y2: 33.66, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0, stopColor: "#ffbc47" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#fba23b" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint25_linear_15759_16949", x1: 27.26, x2: 28.47, y1: 18.92, y2: 24.74, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#ffbc47", stopOpacity: 0 }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#c86f34" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint26_linear_15759_16949", x1: 28.18, x2: 26.87, y1: 30.43, y2: 25.69, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#ffbc47", stopOpacity: 0 }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#c86f34" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint27_linear_15759_16949", x1: 32.66, x2: 23.34, y1: 24.83, y2: 24.83, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0, stopColor: "#ffbc47" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#ffd748" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint28_linear_15759_16949", x1: 22.96, x2: 30.11, y1: 24.57, y2: 24.84, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0, stopColor: "#ffcb4b" }), /* @__PURE__ */ e.createElement("stop", { offset: 0.74, stopColor: "#ffd748" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#ffcb4b" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint29_linear_15759_16949", x1: 25.75, x2: 20.41, y1: 24.74, y2: 24.74, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0, stopColor: "#fba23b", stopOpacity: 0 }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#fba23b" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint31_linear_15759_16949", x1: 23.27, x2: 21.58, y1: 24.73, y2: 24.73, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0, stopColor: "#ffbc47" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#fba23b" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint32_linear_15759_16949", x1: 27.71, x2: 28.72, y1: 24.22, y2: 30.66, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#ffbc47", stopOpacity: 0 }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#c86f34" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint33_linear_15759_16949", x1: 27, x2: 29.6, y1: 29.2, y2: 34.84, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#ffbc47", stopOpacity: 0 }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#c86f34" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint34_linear_15759_16949", x1: 26.49, x2: 26.87, y1: 34.15, y2: 37.71, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#ffbc47", stopOpacity: 0 }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#c86f34" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint35_linear_15759_16949", x1: 26.58, x2: 26.58, y1: 33.61, y2: 31.03, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#ffbc47", stopOpacity: 0 }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#c86f34" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint36_linear_15759_16949", x1: 9.18, x2: 1.11, y1: 26.49, y2: 38.69, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#c86f34", stopOpacity: 0 }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#c86f34" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint37_linear_15759_16949", x1: 8.65, x2: 9.98, y1: 29.19, y2: 35.13, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#ffbc47", stopOpacity: 0 }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#c86f34" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint38_linear_15759_16949", x1: 9.45, x2: 9.26, y1: 30.3, y2: 37.57, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#ffbc47", stopOpacity: 0 }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#c86f34" })), /* @__PURE__ */ e.createElement("radialGradient", { id: "paint17_radial_15759_16949", cx: 0, cy: 0, r: 1, gradientTransform: "rotate(24 -65.8 55.54)scale(3.7 1.72)", gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#fbe07a" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#ffd748", stopOpacity: 0 })), /* @__PURE__ */ e.createElement("radialGradient", { id: "paint18_radial_15759_16949", cx: 0, cy: 0, r: 1, gradientTransform: "matrix(3.17 .11 -.07 2.08 27.92 19.53)", gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#fbe07a" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#ffd748" })), /* @__PURE__ */ e.createElement("radialGradient", { id: "paint19_radial_15759_16949", cx: 0, cy: 0, r: 1, gradientTransform: "matrix(3.4 0 0 1.84 27.77 29.75)", gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#fbe07a" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#ffd748", stopOpacity: 0 })), /* @__PURE__ */ e.createElement("radialGradient", { id: "paint20_radial_15759_16949", cx: 0, cy: 0, r: 1, gradientTransform: "matrix(3.12 0 0 1.95 26.6 33.88)", gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#fbe07a" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#ffd748", stopOpacity: 0 })), /* @__PURE__ */ e.createElement("radialGradient", { id: "paint30_radial_15759_16949", cx: 0, cy: 0, r: 1, gradientTransform: "matrix(3.49 -.17 .1 2.29 28.85 24.75)", gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#fbe07a" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#ffd748", stopOpacity: 0 })), /* @__PURE__ */ e.createElement("radialGradient", { id: "paint39_radial_15759_16949", cx: 0, cy: 0, r: 1, gradientTransform: "rotate(79 5.98 16.17)scale(3.35 1.96)", gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#fbe07a" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#ffd748", stopOpacity: 0 })))), Be = "_list_1yzyr_1", De = "_icon_1yzyr_7", He = "_button_1yzyr_12", T = {
421
- list: Be,
422
- icon: De,
423
- button: He
424
- }, Pe = ({
425
- classNames: t,
426
- minLabel: l,
427
- maxLabel: r,
428
- onChange: s
429
- }) => {
430
- const o = [
431
- [Ie, 0, l ?? "Thumbs down"],
432
- [Re, 1, r ?? "Thumbs up"]
433
- ], n = b((p) => {
434
- s(Number(p.currentTarget.value));
435
- }, [s]);
436
- return /* @__PURE__ */ E("div", { className: i(T.base, t?.base), children: [
437
- /* @__PURE__ */ a("div", { className: i(T.list, t?.list), children: o.map(([p, d, f]) => /* @__PURE__ */ a(
438
- "button",
439
- {
440
- "aria-label": f,
441
- className: i(T.button, t?.button),
442
- type: "button",
443
- value: d,
444
- onClick: n,
445
- children: /* @__PURE__ */ a(
446
- p,
447
- {
448
- "aria-hidden": "true",
449
- className: i(T.icon, t?.icon),
450
- width: 32,
451
- height: 32
452
- }
453
- )
454
- },
455
- d
456
- )) }),
457
- !!l && !!r && /* @__PURE__ */ a(
458
- M,
459
- {
460
- className: i(T.labels, t?.labels),
461
- minLabel: l,
462
- maxLabel: r,
463
- placement: "center"
464
- }
465
- )
466
- ] });
467
- }, Ke = "_base_113r0_1", Ve = "_rating_113r0_5", We = "_feedback_113r0_6", Ye = "_success_113r0_7", z = {
468
- base: Ke,
469
- rating: Ve,
470
- feedback: We,
471
- success: Ye
472
- }, B1 = ({
473
- classNames: t,
474
- dir: l,
475
- scaleStyle: r,
476
- question: s,
477
- minLabel: o,
478
- maxLabel: n,
479
- textQuestion: p,
480
- textButtonLabel: d,
481
- responseType: f,
482
- choiceOptions: m,
483
- thankYouMessage: c,
484
- onScoreSubmit: h,
485
- onFeedbackSubmit: u
486
- }) => {
487
- const {
488
- screen: x,
489
- onScoreChange: _,
490
- onFeedbackChange: y
491
- } = P({
492
- responseType: f,
493
- onScoreSubmit: h,
494
- onFeedbackSubmit: u
495
- });
496
- return /* @__PURE__ */ E(
497
- H,
498
- {
499
- className: z.base,
500
- classNames: {
501
- ...t?.base,
502
- rating: i(z.rating, t?.base?.rating),
503
- feedback: i(z.feedback, t?.base?.feedback),
504
- success: i(z.success, t?.base?.success)
505
- },
506
- dir: l,
507
- screen: x,
508
- question: s,
509
- textQuestion: p,
510
- textButtonLabel: d,
511
- responseType: f,
512
- choiceOptions: m,
513
- thankYouMessage: c,
514
- onFeedback: y,
515
- children: [
516
- r === "emoji" && /* @__PURE__ */ a(
517
- Ae,
518
- {
519
- classNames: t?.scale,
520
- minLabel: o,
521
- maxLabel: n,
522
- onChange: _
523
- }
524
- ),
525
- r === "thumbs" && /* @__PURE__ */ a(
526
- Pe,
527
- {
528
- classNames: t?.scale,
529
- minLabel: o,
530
- maxLabel: n,
531
- onChange: _
532
- }
533
- )
534
- ]
535
- }
536
- );
537
- }, Je = (t) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: 40, height: 40, fill: "none", viewBox: "0 0 40 40", ...t }, /* @__PURE__ */ e.createElement("path", { fill: "url(#paint0_radial_15759_16822)", d: "M20 38a18 18 0 1 0 0-36 18 18 0 0 0 0 36" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint1_radial_15759_16822)", d: "M20 38a18 18 0 1 0 0-36 18 18 0 0 0 0 36", opacity: 0.5 }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint2_radial_15759_16822)", d: "M19.66 27.32s3.73-.02 5.01 2.95q.14.29.15.6c.04.4-.25.83-.97.56a14 14 0 0 0-4.2-.68c-1.09 0-3.05.23-4.19.68-.7.27-1-.15-.97-.56q.03-.32.15-.6c1.28-2.96 5.02-2.95 5.02-2.95" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint3_radial_15759_16822)", d: "M14.12 24.56c.96 0 1.74-1.17 1.74-2.62 0-1.44-.78-2.62-1.74-2.62-.95 0-1.73 1.18-1.73 2.62s.78 2.62 1.73 2.62" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint4_linear_15759_16822)", d: "M13.44 21c1.01 0 1.86 1.04 2.1 2.45q.31-.66.32-1.5c0-1.46-.78-2.63-1.74-2.63-.83 0-1.52.88-1.69 2.06q.46-.37 1-.38" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint5_linear_15759_16822)", d: "M12.27 15.56c-1.55 0-2.88 1.79-1.14 2.06 1.73.28 4.89 1.77 6.22 2.8.1.12.49.08.46-.23 0-1.18-3.65-4.63-5.54-4.63" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint6_linear_15759_16822)", d: "M19.66 28.3s3.04-.01 5.11 2.32l-.1-.34c-1.29-2.97-5.02-2.95-5.02-2.95s-3.74-.02-5.02 2.95q-.07.17-.1.34c2.08-2.33 5.13-2.32 5.13-2.32" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint7_radial_15759_16822)", d: "M25.88 24.56c.95 0 1.73-1.17 1.73-2.62 0-1.44-.78-2.62-1.73-2.62-.96 0-1.74 1.18-1.74 2.62s.78 2.62 1.74 2.62" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint8_linear_15759_16822)", d: "M26.56 21c-1 0-1.86 1.04-2.1 2.45q-.31-.66-.32-1.5c0-1.46.78-2.63 1.74-2.63.83 0 1.52.88 1.69 2.06a1.6 1.6 0 0 0-1-.38" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint9_linear_15759_16822)", d: "M27.73 15.56c1.55 0 2.88 1.79 1.14 2.06a18 18 0 0 0-6.22 2.8c-.1.12-.49.08-.46-.23 0-1.18 3.65-4.63 5.54-4.63" }), /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("radialGradient", { id: "paint0_radial_15759_16822", cx: 0, cy: 0, r: 1, gradientTransform: "translate(16.46 12.7)scale(21.71)", gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#ffdf30" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#ffb82e" })), /* @__PURE__ */ e.createElement("radialGradient", { id: "paint1_radial_15759_16822", cx: 0, cy: 0, r: 1, gradientTransform: "translate(16.46 12.7)scale(17.08)", gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#ffe95f" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#ffbb47", stopOpacity: 0 })), /* @__PURE__ */ e.createElement("radialGradient", { id: "paint2_radial_15759_16822", cx: 0, cy: 0, r: 1, gradientTransform: "matrix(3.94 0 0 2.1 19.65 29.42)", gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0, stopColor: "#7a4400" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#643800" })), /* @__PURE__ */ e.createElement("radialGradient", { id: "paint3_radial_15759_16822", cx: 0, cy: 0, r: 1, gradientTransform: "matrix(.7 2.44 -1.58 .46 13.6 22)", gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0, stopColor: "#7a4400" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#643800" })), /* @__PURE__ */ e.createElement("radialGradient", { id: "paint7_radial_15759_16822", cx: 0, cy: 0, r: 1, gradientTransform: "rotate(106 4.96 20.92)scale(2.54 1.65)", gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0, stopColor: "#7a4400" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#643800" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint4_linear_15759_16822", x1: 14.14, x2: 14.14, y1: 20.12, y2: 22.47, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0, stopColor: "#3c2200" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#512d00" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint5_linear_15759_16822", x1: 14.06, x2: 14.06, y1: 21.79, y2: 16.35, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0, stopColor: "#3c2200" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#643800" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint6_linear_15759_16822", x1: 19.65, x2: 19.65, y1: 26.03, y2: 28.87, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0, stopColor: "#3c2200" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#512d00" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint8_linear_15759_16822", x1: 25.86, x2: 25.86, y1: 20.12, y2: 22.47, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0, stopColor: "#3c2200" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#512d00" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint9_linear_15759_16822", x1: 25.94, x2: 25.94, y1: 21.79, y2: 16.35, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0, stopColor: "#3c2200" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#643800" })))), Qe = (t) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: 40, height: 40, fill: "none", viewBox: "0 0 40 40", ...t }, /* @__PURE__ */ e.createElement("path", { fill: "url(#paint0_radial_15759_16856)", d: "M20 38a18 18 0 1 0 0-36 18 18 0 0 0 0 36" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint1_radial_15759_16856)", d: "M20 38a18 18 0 1 0 0-36 18 18 0 0 0 0 36", opacity: 0.5 }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint2_radial_15759_16856)", d: "M20 38a18 18 0 1 0 0-36 18 18 0 0 0 0 36" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint3_radial_15759_16856)", d: "M20 38a18 18 0 1 0 0-36 18 18 0 0 0 0 36" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint4_radial_15759_16856)", d: "m32.4 25.99.04-.3a.8.8 0 0 0-.55-.74 1 1 0 0 0-.53-.02 42.4 42.4 0 0 1-22.72 0 .85.85 0 0 0-1.08.75q0 .17.04.35l.2.84.17.51c1.26 2.95 4.55 8.13 12.04 8.13s10.77-5.2 12.04-8.14l.15-.45z" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint5_radial_15759_16856)", d: "M20 34.7c2.9 0 5.13-.84 6.83-2.02A16 16 0 0 0 20 31.25c-2.71 0-4.97.56-6.84 1.44 1.71 1.18 3.94 2 6.84 2" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint6_linear_15759_16856)", d: "m32.2 26.89.2-.87.03-.34a.85.85 0 0 0-1.08-.75 42.4 42.4 0 0 1-22.72 0 .85.85 0 0 0-1.08.75l.03.35.2.86q.07.23.17.49c.5 1.2 1.35 2.75 2.66 4.17-1.23-1.46.28-2.26 2.99-1.93s6.39.34 6.39.34 3.69-.01 6.39-.34 4.22.48 3 1.93a15 15 0 0 0 2.65-4.17q.1-.26.16-.5" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint7_radial_15759_16856)", d: "M20 27.3q-5.86 0-11.46-1.55l.04.5c.1.97.8 1.77 1.75 1.98a45 45 0 0 0 20.07-.16c.5-.13.87-.55.93-1.07l.12-1.24A43 43 0 0 1 20 27.3" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint8_radial_15759_16856)", d: "M12.76 9.6a4 4 0 0 0-2.24 2.86 3.9 3.9 0 0 0-5.58 4.94c1.95 4.33 10.21 5.3 10.21 5.3s4.73-6.83 2.77-11.17a3.9 3.9 0 0 0-5.16-1.94" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint9_radial_15759_16856)", d: "M14.38 9.25c3.35 2.22 3.4 7.1 1.76 9.23-1.8 2.35-3.7 2.49-7.93 2.1 3.07 1.67 6.94 2.12 6.94 2.12s4.73-6.83 2.77-11.17a3.9 3.9 0 0 0-3.54-2.28", opacity: 0.5 }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint10_radial_15759_16856)", d: "M12.76 9.6a4 4 0 0 0-2.24 2.86 3.9 3.9 0 0 0-5.58 4.94c1.95 4.33 10.21 5.3 10.21 5.3s4.73-6.83 2.77-11.17a3.9 3.9 0 0 0-5.16-1.94", opacity: 0.5 }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint11_radial_15759_16856)", d: "M12.76 9.6a4 4 0 0 0-2.24 2.86 3.9 3.9 0 0 0-5.58 4.94c1.95 4.33 10.21 5.3 10.21 5.3s4.73-6.83 2.77-11.17a3.9 3.9 0 0 0-5.16-1.94", opacity: 0.5 }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint12_radial_15759_16856)", d: "M9.6 12.77c.72.67.45 2.17-.63 3.34S6.43 17.67 5.7 17c-.73-.68-.46-2.17.62-3.34s2.54-1.57 3.28-.9", opacity: 0.24 }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint13_radial_15759_16856)", d: "M13.63 10.12c.76.33.95 1.58.42 2.8-.53 1.2-1.56 1.9-2.33 1.58-.76-.33-.94-1.58-.42-2.8.53-1.2 1.57-1.9 2.33-1.58", opacity: 0.24 }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint14_linear_15759_16856)", d: "M13.25 10.52c2.06-.2 4.96 1.66 3.57 6.25-.84 2.75-2.26 4.6-4.84 5.29 1.79.5 3.18.66 3.18.66s4.73-6.83 2.77-11.17a3.9 3.9 0 0 0-7.4.92s1.21-1.8 2.72-1.95", opacity: 0.32 }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint15_radial_15759_16856)", d: "M33.39 12.23a3.9 3.9 0 0 0-3.64.23 3.91 3.91 0 0 0-7.4-.9c-1.94 4.33 2.81 11.15 2.81 11.15s8.25-.99 10.2-5.33a3.9 3.9 0 0 0-1.97-5.15" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint16_radial_15759_16856)", d: "M34.73 13.2c.56 3.99-3.07 7.26-5.75 7.45-2.96.22-4.31-1.12-6.83-4.54.77 3.4 3 6.61 3 6.61s8.25-.99 10.2-5.33a3.9 3.9 0 0 0-.62-4.18", opacity: 0.5 }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint17_radial_15759_16856)", d: "M33.39 12.23a3.9 3.9 0 0 0-3.64.23 3.91 3.91 0 0 0-7.4-.9c-1.94 4.33 2.81 11.15 2.81 11.15s8.25-.99 10.2-5.33a3.9 3.9 0 0 0-1.97-5.15", opacity: 0.5 }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint18_radial_15759_16856)", d: "M33.39 12.23a3.9 3.9 0 0 0-3.64.23 3.91 3.91 0 0 0-7.4-.9c-1.94 4.33 2.81 11.15 2.81 11.15s8.25-.99 10.2-5.33a3.9 3.9 0 0 0-1.97-5.15", opacity: 0.5 }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint19_radial_15759_16856)", d: "M28.91 11.96c-.02 1-1.33 1.79-2.91 1.75-1.59-.03-2.86-.86-2.85-1.87.02-1 1.33-1.78 2.91-1.75 1.6.03 2.87.87 2.85 1.87", opacity: 0.24 }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint20_radial_15759_16856)", d: "M33.58 13.23c.26.79-.55 1.75-1.8 2.16-1.25.4-2.48.1-2.73-.69-.26-.79.55-1.75 1.8-2.16 1.24-.41 2.47-.1 2.73.69", opacity: 0.24 }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint21_linear_15759_16856)", d: "M33.03 13.2c1.52 1.4 2.03 4.8-2.32 6.81-2.61 1.2-4.94 1.35-7.17-.11.81 1.66 1.62 2.82 1.62 2.82s8.25-.99 10.2-5.33a3.91 3.91 0 0 0-5.6-4.93s2.17-.29 3.27.73", opacity: 0.32 }), /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("radialGradient", { id: "paint0_radial_15759_16856", cx: 0, cy: 0, r: 1, gradientTransform: "translate(16.46 12.7)scale(21.71)", gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#ffe030" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#ffb92e" })), /* @__PURE__ */ e.createElement("radialGradient", { id: "paint1_radial_15759_16856", cx: 0, cy: 0, r: 1, gradientTransform: "translate(16.46 12.7)scale(17.08)", gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#ffea5f" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#ffbc47", stopOpacity: 0 })), /* @__PURE__ */ e.createElement("radialGradient", { id: "paint2_radial_15759_16856", cx: 0, cy: 0, r: 1, gradientTransform: "matrix(8.02 5.15 -3.76 5.85 10 20.16)", gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#eb672a", stopOpacity: 0.5 }), /* @__PURE__ */ e.createElement("stop", { offset: 0.43, stopColor: "#dc641b", stopOpacity: 0.28 }), /* @__PURE__ */ e.createElement("stop", { offset: 0.99, stopColor: "#c25e00", stopOpacity: 0 })), /* @__PURE__ */ e.createElement("radialGradient", { id: "paint3_radial_15759_16856", cx: 0, cy: 0, r: 1, gradientTransform: "rotate(147 12.04 14.48)scale(9.53 6.96)", gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#eb672a", stopOpacity: 0.5 }), /* @__PURE__ */ e.createElement("stop", { offset: 0.43, stopColor: "#dc641b", stopOpacity: 0.28 }), /* @__PURE__ */ e.createElement("stop", { offset: 0.99, stopColor: "#c25e00", stopOpacity: 0 })), /* @__PURE__ */ e.createElement("radialGradient", { id: "paint4_radial_15759_16856", cx: 0, cy: 0, r: 1, gradientTransform: "translate(20 30.2)scale(9.56)", gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0, stopColor: "#7a4400" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#643800" })), /* @__PURE__ */ e.createElement("radialGradient", { id: "paint5_radial_15759_16856", cx: 0, cy: 0, r: 1, gradientTransform: "matrix(7.61 0 0 2.3 20.14 33.39)", gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0.25, stopColor: "red" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#c20000" })), /* @__PURE__ */ e.createElement("radialGradient", { id: "paint7_radial_15759_16856", cx: 0, cy: 0, r: 1, gradientTransform: "translate(20 27.51)scale(20.98)", gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0, stopColor: "#fff" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#a9bcbe" })), /* @__PURE__ */ e.createElement("radialGradient", { id: "paint8_radial_15759_16856", cx: 0, cy: 0, r: 1, gradientTransform: "matrix(6.6 -8.99 7.13 5.23 9.46 15.03)", gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0.25, stopColor: "red" }), /* @__PURE__ */ e.createElement("stop", { offset: 0.86, stopColor: "#c20000" })), /* @__PURE__ */ e.createElement("radialGradient", { id: "paint9_radial_15759_16856", cx: 0, cy: 0, r: 1, gradientTransform: "matrix(5.68 -7.74 6.14 4.5 9.43 14.3)", gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0.25, stopColor: "red" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#c20000" })), /* @__PURE__ */ e.createElement("radialGradient", { id: "paint10_radial_15759_16856", cx: 0, cy: 0, r: 1, gradientTransform: "matrix(6.6 -8.99 7.13 5.23 9.46 15.03)", gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#fff", stopOpacity: 0.25 }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#fff", stopOpacity: 0 })), /* @__PURE__ */ e.createElement("radialGradient", { id: "paint11_radial_15759_16856", cx: 0, cy: 0, r: 1, gradientTransform: "rotate(-51 25.15 -7.08)scale(8.14 4.02)", gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#bd2719", stopOpacity: 0.25 }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#bd2719", stopOpacity: 0 })), /* @__PURE__ */ e.createElement("radialGradient", { id: "paint12_radial_15759_16856", cx: 0, cy: 0, r: 1, gradientTransform: "matrix(2 -2.08 1.3 1.25 7.64 14.9)", gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#fff" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#fff", stopOpacity: 0 })), /* @__PURE__ */ e.createElement("radialGradient", { id: "paint13_radial_15759_16856", cx: 0, cy: 0, r: 1, gradientTransform: "rotate(-65 16 -3.77)scale(2.4 1.49)", gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#fff" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#fff", stopOpacity: 0 })), /* @__PURE__ */ e.createElement("radialGradient", { id: "paint15_radial_15759_16856", cx: 0, cy: 0, r: 1, gradientTransform: "matrix(11.1 -1.02 .81 8.8 27.1 13.36)", gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0.25, stopColor: "red" }), /* @__PURE__ */ e.createElement("stop", { offset: 0.86, stopColor: "#c20000" })), /* @__PURE__ */ e.createElement("radialGradient", { id: "paint16_radial_15759_16856", cx: 0, cy: 0, r: 1, gradientTransform: "matrix(9.56 -.88 .7 7.58 27.64 12.85)", gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0.25, stopColor: "red" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#c20000" })), /* @__PURE__ */ e.createElement("radialGradient", { id: "paint17_radial_15759_16856", cx: 0, cy: 0, r: 1, gradientTransform: "matrix(11.1 -1.02 .81 8.8 27.1 13.36)", gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#fff", stopOpacity: 0.25 }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#fff", stopOpacity: 0 })), /* @__PURE__ */ e.createElement("radialGradient", { id: "paint18_radial_15759_16856", cx: 0, cy: 0, r: 1, gradientTransform: "matrix(8.13 -.3 .15 4.02 29.22 18.45)", gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#bd2719", stopOpacity: 0.25 }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#bd2719", stopOpacity: 0 })), /* @__PURE__ */ e.createElement("radialGradient", { id: "paint19_radial_15759_16856", cx: 0, cy: 0, r: 1, gradientTransform: "matrix(2.89 .12 -.08 1.8 26.04 11.91)", gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#fff" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#fff", stopOpacity: 0 })), /* @__PURE__ */ e.createElement("radialGradient", { id: "paint20_radial_15759_16856", cx: 0, cy: 0, r: 1, gradientTransform: "matrix(2.3 -.69 .43 1.43 31.33 13.96)", gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#fff" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#fff", stopOpacity: 0 })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint6_linear_15759_16856", x1: 32.3, x2: 7.85, y1: 28.23, y2: 28.23, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0, stopColor: "#3c2200" }), /* @__PURE__ */ e.createElement("stop", { offset: 0.5, stopColor: "#512d00" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#3c2200" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint14_linear_15759_16856", x1: 18.6, x2: 12.19, y1: 26.74, y2: 9.21, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#860805" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#bd2719", stopOpacity: 0 })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint21_linear_15759_16856", x1: 24.43, x2: 33.3, y1: 27.96, y2: 11.54, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#860805" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#bd2719", stopOpacity: 0 })))), Xe = (t) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: 40, height: 40, fill: "none", viewBox: "0 0 40 40", ...t }, /* @__PURE__ */ e.createElement("path", { fill: "url(#paint0_radial_15759_16937)", d: "M20 38a18 18 0 1 0 0-36 18 18 0 0 0 0 36" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint1_radial_15759_16937)", d: "M20 38a18 18 0 1 0 0-36 18 18 0 0 0 0 36", opacity: 0.5 }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint2_linear_15759_16937)", d: "M16.75 12.13c.11-.86-.6-1.5-1.92-1.67-1.14-.15-3.72.28-5.76 2.7-.39.45.06.78.42.5 1.2-.93 4.19-1.94 6.35-1.37.86.22.9-.16.9-.16" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint3_radial_15759_16937)", d: "M14.13 20.76c.95 0 1.73-1.17 1.73-2.62 0-1.44-.78-2.62-1.73-2.62-.96 0-1.74 1.18-1.74 2.62s.78 2.62 1.74 2.62" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint4_linear_15759_16937)", d: "M14.13 16.41c.74 0 1.4.65 1.73 1.61-.02-1.42-.79-2.55-1.73-2.55-.95 0-1.71 1.13-1.74 2.55.34-.96.98-1.6 1.74-1.6" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint5_radial_15759_16937)", d: "M25.87 20.76c.96 0 1.74-1.17 1.74-2.62 0-1.44-.78-2.62-1.74-2.62-.95 0-1.73 1.18-1.73 2.62s.78 2.62 1.73 2.62" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint6_linear_15759_16937)", d: "M25.87 16.48c-.74 0-1.4.65-1.73 1.6.02-1.41.79-2.55 1.73-2.55.95 0 1.71 1.14 1.74 2.56-.34-.96-.98-1.61-1.74-1.61" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint7_linear_15759_16937)", d: "M23.25 12.13c-.11-.86.6-1.5 1.92-1.67 1.14-.15 3.72.28 5.76 2.7.39.45-.06.78-.42.5-1.2-.93-4.19-1.94-6.35-1.37-.86.22-.9-.16-.9-.16" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint8_radial_15759_16937)", d: "M27.58 27.85H12.42a.85.85 0 0 1-.85-.84c0-.46.39-.85.85-.85h15.16c.46 0 .85.39.85.85s-.39.84-.85.84" }), /* @__PURE__ */ e.createElement("path", { fill: "url(#paint9_linear_15759_16937)", d: "M12.34 26.62h15.33c.33 0 .62.19.76.46V27a.85.85 0 0 0-.85-.85H12.42a.85.85 0 0 0-.85.85v.07a.9.9 0 0 1 .77-.46" }), /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("radialGradient", { id: "paint0_radial_15759_16937", cx: 0, cy: 0, r: 1, gradientTransform: "translate(16.46 12.7)scale(21.71)", gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#ffe030" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#ffb92e" })), /* @__PURE__ */ e.createElement("radialGradient", { id: "paint1_radial_15759_16937", cx: 0, cy: 0, r: 1, gradientTransform: "translate(16.46 12.7)scale(17.08)", gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#ffea5f" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#ffbc47", stopOpacity: 0 })), /* @__PURE__ */ e.createElement("radialGradient", { id: "paint3_radial_15759_16937", cx: 0, cy: 0, r: 1, gradientTransform: "matrix(.7 2.44 -1.58 .46 13.6 18.21)", gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0, stopColor: "#7a4400" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#643800" })), /* @__PURE__ */ e.createElement("radialGradient", { id: "paint5_radial_15759_16937", cx: 0, cy: 0, r: 1, gradientTransform: "rotate(74 .56 25.97)scale(2.54 1.65)", gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0, stopColor: "#7a4400" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#643800" })), /* @__PURE__ */ e.createElement("radialGradient", { id: "paint8_radial_15759_16937", cx: 0, cy: 0, r: 1, gradientTransform: "matrix(5.99 0 0 1.08 20 27)", gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0, stopColor: "#7a4400" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#643800" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint2_linear_15759_16937", x1: 12.8, x2: 13.09, y1: 13.08, y2: 10.82, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0, stopColor: "#3c2200" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#7a4400" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint4_linear_15759_16937", x1: 14.12, x2: 14.12, y1: 15.51, y2: 17.95, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0, stopColor: "#3c2200" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#512d00" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint6_linear_15759_16937", x1: 25.88, x2: 25.88, y1: 15.58, y2: 18.02, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0, stopColor: "#3c2200" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#512d00" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint7_linear_15759_16937", x1: 27.2, x2: 26.91, y1: 13.08, y2: 10.82, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0, stopColor: "#3c2200" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#7a4400" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint9_linear_15759_16937", x1: 11.57, x2: 28.43, y1: 26.61, y2: 26.61, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0, stopColor: "#3c2200" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#512d00" })))), Ze = "_list_1vfe4_1", Le = "_icon_1vfe4_6", e1 = "_button_1vfe4_11", F = {
538
- list: Ze,
539
- icon: Le,
540
- button: e1
541
- }, t1 = [
542
- [Je, 1],
543
- [Q, 2],
544
- [Xe, 3],
545
- [X, 4],
546
- [Qe, 5]
547
- ], a1 = ({
548
- minLabel: t,
549
- maxLabel: l,
550
- onChange: r,
551
- classNames: s
552
- }) => {
553
- const o = b((n) => {
554
- r(Number(n.currentTarget.value));
555
- }, [r]);
556
- return /* @__PURE__ */ E("div", { className: i(F.base, s?.base), children: [
557
- /* @__PURE__ */ a("div", { className: i(F.list, s?.list), children: t1.map(([n, p]) => /* @__PURE__ */ a(
558
- "button",
559
- {
560
- "aria-label": `Score ${p}`,
561
- className: i(F.button, s?.button),
562
- type: "button",
563
- value: p,
564
- onClick: o,
565
- children: /* @__PURE__ */ a(
566
- n,
567
- {
568
- "aria-hidden": "true",
569
- className: i(F.icon, s?.icon),
570
- width: 32,
571
- height: 32
572
- }
573
- )
574
- },
575
- p
576
- )) }),
577
- !!t && !!l && /* @__PURE__ */ a(
578
- M,
579
- {
580
- className: s?.labels,
581
- minLabel: t,
582
- maxLabel: l
583
- }
584
- )
585
- ] });
586
- }, r1 = "_list_16sag_1", n1 = "_button_16sag_6", j = {
587
- list: r1,
588
- button: n1
589
- }, l1 = [1, 2, 3, 4, 5], s1 = ({
590
- classNames: t,
591
- minLabel: l,
592
- maxLabel: r,
593
- onChange: s
594
- }) => {
595
- const o = b((n) => {
596
- s(Number(n.currentTarget.value));
597
- }, [s]);
598
- return /* @__PURE__ */ E("div", { className: i(j.base, t?.base), children: [
599
- /* @__PURE__ */ a("div", { className: i(j.list, t?.list), children: l1.map((n) => /* @__PURE__ */ a(
600
- "button",
601
- {
602
- "aria-label": `Score ${n}`,
603
- className: i(j.button, t?.button),
604
- type: "button",
605
- value: n,
606
- onClick: o,
607
- children: /* @__PURE__ */ a("span", { className: i(j.score, t?.score), children: n })
608
- },
609
- n
610
- )) }),
611
- !!l && !!r && /* @__PURE__ */ a(
612
- M,
613
- {
614
- className: t?.labels,
615
- minLabel: l,
616
- maxLabel: r
617
- }
618
- )
619
- ] });
620
- }, i1 = (t) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 40 40", ...t }, /* @__PURE__ */ e.createElement("path", { fill: "#d0d5dd", stroke: "#d0d5dd", strokeLinecap: "round", strokeLinejoin: "round", d: "M18.8 5.76c.39-.78.58-1.17.84-1.3.23-.1.5-.1.72 0 .26.13.45.52.84 1.3l3.64 7.38c.11.23.17.34.25.43a1 1 0 0 0 .26.2c.11.04.24.06.5.1l8.14 1.19c.86.12 1.3.19 1.5.4q.25.29.21.68c-.04.29-.35.59-.97 1.2l-5.9 5.74c-.18.18-.27.27-.33.37q-.08.15-.1.3c-.01.13 0 .25.05.5l1.4 8.12c.14.86.21 1.28.08 1.54a.8.8 0 0 1-.59.42c-.28.05-.66-.15-1.43-.55l-7.29-3.84a2 2 0 0 0-.46-.2 1 1 0 0 0-.32 0c-.12.02-.23.08-.46.2l-7.29 3.84c-.77.4-1.15.6-1.44.55a.8.8 0 0 1-.58-.42c-.13-.26-.06-.68.09-1.54l1.39-8.11c.04-.26.06-.38.05-.5a1 1 0 0 0-.1-.3c-.06-.11-.15-.2-.34-.38l-5.9-5.75c-.61-.6-.92-.9-.96-1.19a.8.8 0 0 1 .22-.68c.2-.21.63-.28 1.48-.4l8.16-1.2c.25-.03.38-.05.49-.1q.14-.06.26-.19c.08-.09.14-.2.25-.43z" })), o1 = (t) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 40 40", ...t }, /* @__PURE__ */ e.createElement("path", { fill: "#fec84b", stroke: "#fec84b", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M18.8 5.76c.39-.78.58-1.17.84-1.3.23-.1.5-.1.72 0 .26.13.45.52.84 1.3l3.64 7.38c.11.23.17.34.25.43a1 1 0 0 0 .26.2c.11.04.24.06.5.1l8.14 1.19c.86.12 1.3.19 1.5.4q.25.29.21.68c-.04.29-.35.59-.97 1.2l-5.9 5.74c-.18.18-.27.27-.33.37q-.08.15-.1.3c-.01.13 0 .25.05.5l1.4 8.12c.14.86.21 1.28.08 1.54a.8.8 0 0 1-.59.42c-.28.05-.66-.15-1.43-.55l-7.29-3.84a2 2 0 0 0-.46-.2 1 1 0 0 0-.32 0c-.12.02-.23.08-.46.2l-7.29 3.84c-.77.4-1.15.6-1.44.55a.8.8 0 0 1-.58-.42c-.13-.26-.06-.68.09-1.54l1.39-8.11c.04-.26.06-.38.05-.5a1 1 0 0 0-.1-.3c-.06-.11-.15-.2-.34-.38l-5.9-5.75c-.61-.6-.92-.9-.96-1.19a.8.8 0 0 1 .22-.68c.2-.21.63-.28 1.48-.4l8.16-1.2c.25-.03.38-.05.49-.1q.14-.06.26-.19c.08-.09.14-.2.25-.43z" })), c1 = "_list_1kpxu_1", p1 = "_icon_1kpxu_6", f1 = "_button_1kpxu_11", q = {
621
- list: c1,
622
- icon: p1,
623
- button: f1
624
- }, d1 = [1, 2, 3, 4, 5], _1 = ({
625
- minLabel: t,
626
- maxLabel: l,
627
- onChange: r,
628
- classNames: s
629
- }) => {
630
- const [o, n] = U(null), p = b((c) => {
631
- n(Number(c.currentTarget.value));
632
- }, []), d = b((c) => {
633
- n(Number(c.currentTarget.value));
634
- }, []), f = b(() => {
635
- n(null);
636
- }, []), m = b((c) => {
637
- r(Number(c.currentTarget.value));
638
- }, [r]);
639
- return /* @__PURE__ */ E("div", { className: i(q.base, s?.base), children: [
640
- /* @__PURE__ */ a(
641
- "div",
642
- {
643
- className: i(q.list, s?.list),
644
- onBlur: f,
645
- onMouseLeave: f,
646
- children: d1.map((c) => /* @__PURE__ */ a(
647
- "button",
648
- {
649
- "aria-label": `${c} ${c > 1 ? "stars" : "star"}`,
650
- className: i(q.button, s?.button),
651
- type: "button",
652
- value: c,
653
- onClick: m,
654
- onFocus: p,
655
- onMouseOver: d,
656
- children: o !== null && c <= o ? /* @__PURE__ */ a(
657
- o1,
658
- {
659
- "aria-hidden": "true",
660
- className: i(q.icon, s?.icon),
661
- width: 40,
662
- height: 40
663
- }
664
- ) : /* @__PURE__ */ a(
665
- i1,
666
- {
667
- "aria-hidden": "true",
668
- className: i(q.icon, s?.icon),
669
- width: 40,
670
- height: 40
671
- }
672
- )
673
- },
674
- c
675
- ))
676
- }
677
- ),
678
- !!t && !!l && /* @__PURE__ */ a(
679
- M,
680
- {
681
- className: s?.labels,
682
- minLabel: t,
683
- maxLabel: l
684
- }
685
- )
686
- ] });
687
- }, m1 = "_base_m4qio_1", E1 = "_rating_m4qio_5", u1 = "_feedback_m4qio_6", b1 = "_success_m4qio_7", A = {
688
- base: m1,
689
- rating: E1,
690
- feedback: u1,
691
- success: b1
692
- }, D1 = ({
693
- classNames: t,
694
- dir: l,
695
- scaleStyle: r,
696
- question: s,
697
- minLabel: o,
698
- maxLabel: n,
699
- textQuestion: p,
700
- textButtonLabel: d,
701
- responseType: f,
702
- choiceOptions: m,
703
- thankYouMessage: c,
704
- onScoreSubmit: h,
705
- onFeedbackSubmit: u
706
- }) => {
707
- const {
708
- screen: x,
709
- onScoreChange: _,
710
- onFeedbackChange: y
711
- } = P({
712
- responseType: f,
713
- onScoreSubmit: h,
714
- onFeedbackSubmit: u
715
- });
716
- return /* @__PURE__ */ E(
717
- H,
718
- {
719
- className: A.base,
720
- classNames: {
721
- ...t?.base,
722
- rating: i(A.rating, t?.base?.rating),
723
- feedback: i(A.feedback, t?.base?.feedback),
724
- success: i(A.success, t?.base?.success)
725
- },
726
- dir: l,
727
- screen: x,
728
- question: s,
729
- textQuestion: p,
730
- textButtonLabel: d,
731
- responseType: f,
732
- choiceOptions: m,
733
- thankYouMessage: c,
734
- onFeedback: y,
735
- children: [
736
- r === "emoji" && /* @__PURE__ */ a(
737
- a1,
738
- {
739
- classNames: t?.scale,
740
- minLabel: o,
741
- maxLabel: n,
742
- onChange: _
743
- }
744
- ),
745
- r === "numbers" && /* @__PURE__ */ a(
746
- s1,
747
- {
748
- classNames: t?.scale,
749
- minLabel: o,
750
- maxLabel: n,
751
- onChange: _
752
- }
753
- ),
754
- r === "stars" && /* @__PURE__ */ a(
755
- _1,
756
- {
757
- classNames: t?.scale,
758
- minLabel: o,
759
- maxLabel: n,
760
- onChange: _
761
- }
762
- )
763
- ]
764
- }
765
- );
766
- }, y1 = "_list_whbas_1", h1 = "_button_whbas_13", C1 = "_score_whbas_52", g1 = "_label_whbas_55", x1 = "_labels_whbas_75", O = {
767
- list: y1,
768
- button: h1,
769
- score: C1,
770
- label: g1,
771
- labels: x1
772
- }, I = [1, 2, 3, 4, 5, 6, 7], U1 = ({
773
- classNames: t,
774
- minLabel: l,
775
- maxLabel: r,
776
- onChange: s
777
- }) => {
778
- const o = b((n) => {
779
- s(Number(n.currentTarget.value));
780
- }, [s]);
781
- return /* @__PURE__ */ E("div", { className: i(O.base, t?.base), children: [
782
- /* @__PURE__ */ a("div", { className: i(O.list, t?.list), children: I.map((n) => /* @__PURE__ */ E(
783
- "button",
784
- {
785
- "aria-label": `Score ${n}`,
786
- className: i(O.button, t?.button),
787
- type: "button",
788
- value: n,
789
- onClick: o,
790
- children: [
791
- /* @__PURE__ */ a("span", { className: i(O.score, t?.score), children: n }),
792
- n === I[0] && !!l && /* @__PURE__ */ a(
793
- "span",
794
- {
795
- className: O.label,
796
- children: ` - ${l}`
797
- },
798
- "left"
799
- ),
800
- n === I[I.length - 1] && !!r && /* @__PURE__ */ a(
801
- "span",
802
- {
803
- className: O.label,
804
- children: ` - ${r}`
805
- },
806
- "right"
807
- )
808
- ]
809
- },
810
- n
811
- )) }),
812
- !!l && !!r && /* @__PURE__ */ a(
813
- M,
814
- {
815
- className: i(O.labels, t?.labels),
816
- minLabel: l,
817
- maxLabel: r
818
- }
819
- )
820
- ] });
821
- }, O1 = "_base_12no3_1", S1 = "_rating_12no3_5", M1 = "_feedback_12no3_19", G1 = "_success_12no3_20", R = {
822
- base: O1,
823
- rating: S1,
824
- feedback: M1,
825
- success: G1
826
- }, H1 = ({
827
- classNames: t,
828
- dir: l,
829
- scaleStyle: r,
830
- question: s,
831
- minLabel: o,
832
- maxLabel: n,
833
- textQuestion: p,
834
- textButtonLabel: d,
835
- responseType: f,
836
- choiceOptions: m,
837
- thankYouMessage: c,
838
- onScoreSubmit: h,
839
- onFeedbackSubmit: u
840
- }) => {
841
- const {
842
- screen: x,
843
- onScoreChange: _,
844
- onFeedbackChange: y
845
- } = P({
846
- responseType: f,
847
- onScoreSubmit: h,
848
- onFeedbackSubmit: u
849
- });
850
- return /* @__PURE__ */ a(
851
- H,
852
- {
853
- className: R.base,
854
- classNames: {
855
- ...t?.base,
856
- rating: i(R.rating, t?.base?.rating),
857
- feedback: i(R.feedback, t?.base?.feedback),
858
- success: i(R.success, t?.base?.success)
859
- },
860
- dir: l,
861
- screen: x,
862
- question: s,
863
- textQuestion: p,
864
- textButtonLabel: d,
865
- responseType: f,
866
- choiceOptions: m,
867
- thankYouMessage: c,
868
- onFeedback: y,
869
- children: r === "numbers" && /* @__PURE__ */ a(
870
- U1,
871
- {
872
- classNames: t?.scale,
873
- minLabel: o,
874
- maxLabel: n,
875
- onChange: _
876
- }
877
- )
878
- }
879
- );
880
- }, v1 = "_list_divjm_1", w1 = "_button_divjm_13", k1 = "_score_divjm_52", $1 = "_label_divjm_55", T1 = "_labels_divjm_75", S = {
881
- list: v1,
882
- button: w1,
883
- score: k1,
884
- label: $1,
885
- labels: T1
886
- }, B = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10], q1 = ({
887
- classNames: t,
888
- minLabel: l,
889
- maxLabel: r,
890
- onChange: s
891
- }) => {
892
- const o = b((n) => {
893
- s(Number(n.currentTarget.value));
894
- }, [s]);
895
- return /* @__PURE__ */ E("div", { className: i(S.base, t?.base), children: [
896
- /* @__PURE__ */ a("div", { className: i(S.list, t?.list), children: B.map((n) => /* @__PURE__ */ E(
897
- "button",
898
- {
899
- "aria-label": `Score ${n}`,
900
- className: i(S.button, t?.button),
901
- type: "button",
902
- value: n,
903
- onClick: o,
904
- children: [
905
- /* @__PURE__ */ a("span", { className: i(S.score, t?.score), children: n }),
906
- n === B[0] && !!l && /* @__PURE__ */ a(
907
- "span",
908
- {
909
- className: S.label,
910
- children: ` - ${l}`
911
- },
912
- "left"
913
- ),
914
- n === B[B.length - 1] && !!r && /* @__PURE__ */ a(
915
- "span",
916
- {
917
- className: S.label,
918
- children: ` - ${r}`
919
- },
920
- "right"
921
- )
922
- ]
923
- },
924
- n
925
- )) }),
926
- !!l && !!r && /* @__PURE__ */ a(
927
- M,
928
- {
929
- className: i(S.labels, t?.labels),
930
- minLabel: l,
931
- maxLabel: r
932
- }
933
- )
934
- ] });
935
- }, N1 = "_base_1invl_1", z1 = "_rating_1invl_5", F1 = "_feedback_1invl_19", j1 = "_success_1invl_20", D = {
936
- base: N1,
937
- rating: z1,
938
- feedback: F1,
939
- success: j1
940
- }, P1 = ({
941
- classNames: t,
942
- dir: l,
943
- scaleStyle: r,
944
- question: s,
945
- minLabel: o,
946
- maxLabel: n,
947
- textQuestion: p,
948
- textButtonLabel: d,
949
- responseType: f,
950
- choiceOptions: m,
951
- thankYouMessage: c,
952
- onScoreSubmit: h,
953
- onFeedbackSubmit: u
954
- }) => {
955
- const {
956
- screen: x,
957
- onScoreChange: _,
958
- onFeedbackChange: y
959
- } = P({
960
- responseType: f,
961
- onScoreSubmit: h,
962
- onFeedbackSubmit: u
963
- });
964
- return /* @__PURE__ */ a(
965
- H,
966
- {
967
- className: D.base,
968
- classNames: {
969
- ...t?.base,
970
- rating: i(D.rating, t?.base?.rating),
971
- feedback: i(D.feedback, t?.base?.feedback),
972
- success: i(D.success, t?.base?.success)
973
- },
974
- dir: l,
975
- screen: x,
976
- question: s,
977
- textQuestion: p,
978
- textButtonLabel: d,
979
- responseType: f,
980
- choiceOptions: m,
981
- thankYouMessage: c,
982
- onFeedback: y,
983
- children: r === "numbers" && /* @__PURE__ */ a(
984
- q1,
985
- {
986
- classNames: t?.scale,
987
- minLabel: o,
988
- maxLabel: n,
989
- onChange: _
990
- }
991
- )
992
- }
993
- );
994
- };
995
- export {
996
- H1 as CES7Survey,
997
- B1 as CSAT2Survey,
998
- D1 as CSAT5Survey,
999
- P1 as NPS10Survey,
1000
- R1 as Popup,
1001
- re as Surface
12
+ var c = { base: "_base_d3jtv_1" }, l = ({ className: e, children: n, ...r }) => /* @__PURE__ */ t("div", {
13
+ className: s(c.base, e),
14
+ ...r,
15
+ children: n
16
+ }), u = {
17
+ base: "_base_1vr2h_1",
18
+ animated: "_animated_1vr2h_19",
19
+ fadeForward: "_fadeForward_1vr2h_1",
20
+ topLeft: "_topLeft_1vr2h_34",
21
+ topRight: "_topRight_1vr2h_45",
22
+ bottomRight: "_bottomRight_1vr2h_56",
23
+ bottomLeft: "_bottomLeft_1vr2h_67",
24
+ close: "_close_1vr2h_78"
25
+ }, d = ({ animated: e = !0, className: r, classNames: i, children: a, placement: o = "bottomRight", onClose: c, ...d }) => /* @__PURE__ */ t("div", {
26
+ className: s(u.base, { [u.animated]: e }, u[o], r, i?.base),
27
+ ...d,
28
+ children: /* @__PURE__ */ n(l, {
29
+ className: i?.content,
30
+ children: [a, /* @__PURE__ */ t("button", {
31
+ "aria-label": "Close survey",
32
+ className: s(u.close, i?.close),
33
+ title: "Close survey",
34
+ type: "button",
35
+ onClick: c
36
+ })]
37
+ })
38
+ }), f = {
39
+ choices: "_choices_f81xp_1",
40
+ choice: "_choice_f81xp_1",
41
+ label: "_label_f81xp_12",
42
+ sr: "_sr_f81xp_21",
43
+ checkbox: "_checkbox_f81xp_33",
44
+ check: "_check_f81xp_33",
45
+ input: "_input_f81xp_70",
46
+ textarea: "_textarea_f81xp_75",
47
+ invalid: "_invalid_f81xp_98",
48
+ submit: "_submit_f81xp_103",
49
+ success: "_success_f81xp_135"
50
+ }, p = ({ buttonLabel: a = "Submit", responseType: s, choiceOptions: c, onSubmit: l }) => {
51
+ let u = i(), [d, p] = o(""), [m, h] = o([]), [g, _] = o(!1), v = r((e) => {
52
+ e.stopPropagation();
53
+ }, []), y = r((e) => {
54
+ p(e.currentTarget.value), g && _(!1);
55
+ }, [g]), b = r((e) => {
56
+ let { value: t, checked: n } = e.currentTarget;
57
+ h((e) => n ? [...e, t] : e.filter((e) => e !== t));
58
+ }, []), x = r((e) => {
59
+ e.preventDefault();
60
+ let t = d.trim();
61
+ if (s === "choices") {
62
+ l?.([...m, t].filter(Boolean));
63
+ return;
64
+ }
65
+ if (s === "text" && !t) {
66
+ _(!0);
67
+ return;
68
+ }
69
+ l?.(d.trim());
70
+ }, [
71
+ d,
72
+ s,
73
+ m,
74
+ l
75
+ ]);
76
+ if (!s) return null;
77
+ let S = `${u}-feedback-textarea`, C = `${u}-feedback-input`, w = `${u}-feedback-choices`;
78
+ return /* @__PURE__ */ n("form", {
79
+ "aria-label": "Feedback form",
80
+ className: f.base,
81
+ noValidate: !0,
82
+ onSubmit: x,
83
+ children: [
84
+ s === "choices" && /* @__PURE__ */ t("div", {
85
+ className: f.choices,
86
+ id: w,
87
+ children: c?.map((e) => /* @__PURE__ */ t("div", {
88
+ className: f.choice,
89
+ children: /* @__PURE__ */ n("label", {
90
+ className: f.label,
91
+ children: [
92
+ /* @__PURE__ */ t("input", {
93
+ "aria-label": e,
94
+ className: f.checkbox,
95
+ checked: m.includes(e),
96
+ name: "feedback",
97
+ type: "checkbox",
98
+ value: e,
99
+ onChange: b,
100
+ onKeyDown: v
101
+ }),
102
+ /* @__PURE__ */ t("span", {
103
+ className: f.check,
104
+ "aria-hidden": "true"
105
+ }),
106
+ e
107
+ ]
108
+ })
109
+ }, e))
110
+ }),
111
+ s === "choices" && /* @__PURE__ */ n(e, { children: [/* @__PURE__ */ t("label", {
112
+ htmlFor: C,
113
+ className: f.sr,
114
+ children: "Additional feedback"
115
+ }), /* @__PURE__ */ t("input", {
116
+ "aria-label": "Additional feedback",
117
+ "aria-describedby": w,
118
+ className: f.input,
119
+ id: C,
120
+ maxLength: 1e3,
121
+ name: "feedback",
122
+ placeholder: "Other",
123
+ value: d,
124
+ onChange: y
125
+ })] }),
126
+ s === "text" && /* @__PURE__ */ n(e, { children: [/* @__PURE__ */ t("label", {
127
+ htmlFor: S,
128
+ className: f.sr,
129
+ children: "Your feedback"
130
+ }), /* @__PURE__ */ t("textarea", {
131
+ "aria-label": "Your feedback",
132
+ "aria-required": "true",
133
+ "aria-invalid": g,
134
+ className: `${f.textarea} ${g ? f.invalid : ""}`,
135
+ id: S,
136
+ maxLength: 1e3,
137
+ name: "feedback",
138
+ rows: 4,
139
+ value: d,
140
+ onChange: y,
141
+ onKeyDown: v
142
+ })] }),
143
+ /* @__PURE__ */ t("button", {
144
+ className: f.submit,
145
+ type: "submit",
146
+ children: a
147
+ })
148
+ ]
149
+ });
150
+ }, m = (e) => /* @__PURE__ */ n("svg", {
151
+ xmlns: "http://www.w3.org/2000/svg",
152
+ viewBox: "0 0 512 512",
153
+ ...e,
154
+ children: [
155
+ /* @__PURE__ */ t("path", {
156
+ fill: "#ffb636",
157
+ d: "M378.6 355.6 45 500.7a26.8 26.8 0 0 1-34.9-34.5L156 127.5"
158
+ }),
159
+ /* @__PURE__ */ t("path", {
160
+ fill: "#ffd469",
161
+ d: "m10.2 466.2 11.6-27 3-4.5c57.6-87.7 116-175 176.5-260.8l67.7 69.5C218 278.5 52 450 17.1 495.6a26.4 26.4 0 0 1-6.9-29.4z"
162
+ }),
163
+ /* @__PURE__ */ t("path", {
164
+ fill: "#a06c33",
165
+ d: "M304.4 204.4c61.8 61.9 95.7 128.3 75.5 148.5-20 20-86.5-13.7-148.4-75.6S135.8 149 156 128.9s86.5 13.7 148.4 75.5z"
166
+ }),
167
+ /* @__PURE__ */ t("path", {
168
+ fill: "#f7f9aa",
169
+ d: "M155.6 327.6a10.9 10.9 0 1 1-21.8 0 10.9 10.9 0 0 1 21.8 0z"
170
+ }),
171
+ /* @__PURE__ */ t("path", {
172
+ fill: "#ffb636",
173
+ d: "M502 213.2a15.6 15.6 0 1 1-31.3 0 15.6 15.6 0 0 1 31.3 0zm-104.3 208a15.6 15.6 0 1 0 0 31.2 15.6 15.6 0 0 0 0-31.2z"
174
+ }),
175
+ /* @__PURE__ */ t("path", {
176
+ fill: "#bea4ff",
177
+ d: "M356 79.5c-1.4 9-7.2 17-16.1 22a43.1 43.1 0 0 1-28 4.6c-5.2-.8-10.5 0-14.5 2.2-1.7 1-4.8 3.1-5.3 6.4-.5 3.4 1.8 6.3 3.2 7.7 3.1 3.2 7.8 5.4 12.9 6.2h.4c21.6 3.3 37 20.4 34.4 38.3-1.3 9-7.2 17-16 22a43.1 43.1 0 0 1-28 4.5c-5.2-.7-10.5 0-14.5 2.2-1.7 1-4.8 3.1-5.3 6.5-.8 5.3 5.8 12.4 16.5 14a10.6 10.6 0 0 1-3.1 21c-21.6-3.2-37-20.3-34.4-38.2 1.3-9 7.2-17 16-22 8-4.4 18-6 28-4.5 5.2.7 10.5 0 14.5-2.2 1.7-1 4.8-3.1 5.3-6.5.7-5.2-5.6-12.1-16-13.9h-.5c-10-1.5-19-6-25.4-12.5a30.5 30.5 0 0 1-9-25.7c1.3-9 7.2-17 16-22 8.1-4.4 18-6 28-4.6 5.3.8 10.5 0 14.5-2.2 1.8-1 4.8-3 5.3-6.4.5-3.3-1.8-6.2-3.2-7.7-3.2-3.2-8-5.5-13.3-6.3a10.6 10.6 0 0 1 3.1-21c10 1.4 19 5.9 25.4 12.4 7.1 7.3 10.4 16.7 9 25.7z"
178
+ }),
179
+ /* @__PURE__ */ t("path", {
180
+ fill: "#ff6e83",
181
+ d: "M81.7 159.7a17.7 17.7 0 1 1-35.4 0 17.7 17.7 0 0 1 35.4 0zm316.5-20.5a20.5 20.5 0 1 0 0 41 20.5 20.5 0 0 0 0-41zM215.5 396a20.5 20.5 0 1 0 0 40.9 20.5 20.5 0 0 0 0-40.9zm271.3-93.6c3.1-6 .8-13.4-5.2-16.5-2.4-1.2-5.3-2.9-8.6-4.8-29-16.6-89.3-51.2-160.3 6.2a12.2 12.2 0 1 0 15.3 19c58-47 105-20 132.9-4 3.4 2 6.6 3.8 9.5 5.3a12.2 12.2 0 0 0 16.4-5.2z"
182
+ }),
183
+ /* @__PURE__ */ t("path", {
184
+ fill: "#59cafc",
185
+ d: "M434.8 62.8a10.9 10.9 0 1 1-21.7 0 10.9 10.9 0 0 1 21.7 0zm-388.5-51a10.9 10.9 0 1 0 0 21.9 10.9 10.9 0 0 0 0-21.8zM217 154c1.2-2.5 2.8-5.2 4.4-8.1 8.1-14.8 19.3-35 20-58.6.8-28.3-14-54-43.9-76.4a11.7 11.7 0 1 0-14 18.8c23.7 17.8 35 36.4 34.4 57-.5 17.8-9.7 34.5-17 47.8-1.8 3.1-3.4 6-4.8 8.8a11.7 11.7 0 0 0 21 10.7z"
186
+ })
187
+ ]
188
+ }), h = {
189
+ base: "_base_1ilpx_1",
190
+ icon: "_icon_1ilpx_6"
191
+ }, g = () => /* @__PURE__ */ t("div", {
192
+ className: h.base,
193
+ children: /* @__PURE__ */ t(m, {
194
+ "aria-hidden": "true",
195
+ className: h.icon,
196
+ width: 84,
197
+ height: 84
198
+ })
199
+ }), _ = {
200
+ base: "_base_1xpqq_1",
201
+ head: "_head_1xpqq_7",
202
+ title: "_title_1xpqq_14"
203
+ }, v = ({ children: e, className: r, classNames: a, dir: o, question: c, textQuestion: l, textButtonLabel: u, responseType: d, choiceOptions: f, thankYouMessage: m, screen: h, onFeedback: v }) => {
204
+ let y = i();
205
+ return /* @__PURE__ */ n("div", {
206
+ className: s(_.base, r, a?.base, a?.[h]),
207
+ dir: o,
208
+ children: [
209
+ /* @__PURE__ */ t("div", {
210
+ className: s(_.head, a?.head),
211
+ children: /* @__PURE__ */ n("div", {
212
+ "aria-level": 2,
213
+ id: y,
214
+ className: s(_.title, a?.title),
215
+ role: "heading",
216
+ children: [
217
+ h === "rating" && c,
218
+ h === "feedback" && l,
219
+ h === "success" && m
220
+ ]
221
+ })
222
+ }),
223
+ h === "rating" && /* @__PURE__ */ t("div", {
224
+ "aria-label": "Rating selection",
225
+ "aria-labelledby": y,
226
+ className: s(_.body, a?.body),
227
+ role: "region",
228
+ children: e
229
+ }),
230
+ h === "feedback" && /* @__PURE__ */ t("div", {
231
+ "aria-label": "Feedback form",
232
+ "aria-labelledby": y,
233
+ className: s(_.body, a?.body),
234
+ role: "region",
235
+ children: /* @__PURE__ */ t(p, {
236
+ buttonLabel: u,
237
+ choiceOptions: f,
238
+ responseType: d,
239
+ onSubmit: v
240
+ })
241
+ }),
242
+ h === "success" && /* @__PURE__ */ t("div", {
243
+ "aria-atomic": "true",
244
+ "aria-live": "polite",
245
+ "aria-label": m,
246
+ "aria-labelledby": y,
247
+ className: s(_.body, a?.body),
248
+ tabIndex: -1,
249
+ role: "status",
250
+ children: /* @__PURE__ */ t(g, {})
251
+ })
252
+ ]
253
+ });
254
+ }, y = ({ responseType: e, onScoreSubmit: t, onFeedbackSubmit: n }) => {
255
+ let [i, s] = o(), [c, l] = o(null), [u, d] = o(!1), [f, p] = o(!1);
256
+ return {
257
+ error: c,
258
+ value: i,
259
+ screen: a(() => u ? "success" : typeof i == "number" ? "feedback" : "rating", [i, u]),
260
+ isLoading: f,
261
+ isSuccess: u,
262
+ onScoreChange: r(async (n) => {
263
+ if (s(n), l(null), t) {
264
+ p(!0);
265
+ try {
266
+ await t({ value: n }), d(!e);
267
+ } catch (e) {
268
+ l(e instanceof Error ? e : /* @__PURE__ */ Error("Failed to submit"));
269
+ } finally {
270
+ p(!1);
271
+ }
272
+ } else d(!e);
273
+ }, [e, t]),
274
+ onFeedbackChange: r(async (e) => {
275
+ if (!e?.length) return;
276
+ l(null);
277
+ let t = Array.isArray(e) ? e.join(";\n") : e;
278
+ if (n) {
279
+ p(!0);
280
+ try {
281
+ await n({
282
+ value: i,
283
+ text: t
284
+ }), d(!0);
285
+ } catch (e) {
286
+ l(e instanceof Error ? e : /* @__PURE__ */ Error("Failed to submit"));
287
+ } finally {
288
+ p(!1);
289
+ }
290
+ } else d(!0);
291
+ }, [i, n])
292
+ };
293
+ }, b = {
294
+ base: "_base_1e603_1",
295
+ label: "_label_1e603_6",
296
+ between: "_between_1e603_14",
297
+ center: "_center_1e603_28",
298
+ text: "_text_1e603_40"
299
+ }, x = ({ className: e, classNames: r, minLabel: i, maxLabel: a, placement: o = "between" }) => /* @__PURE__ */ n("div", {
300
+ className: s(b.base, b[o], r?.base, e),
301
+ children: [/* @__PURE__ */ t("div", {
302
+ className: s(b.label, r?.label),
303
+ children: /* @__PURE__ */ t("span", {
304
+ className: b.text,
305
+ children: i
306
+ })
307
+ }), /* @__PURE__ */ t("div", {
308
+ className: s(b.label, r?.label),
309
+ children: /* @__PURE__ */ t("span", {
310
+ className: b.text,
311
+ children: a
312
+ })
313
+ })]
314
+ }), S = (e) => /* @__PURE__ */ n("svg", {
315
+ xmlns: "http://www.w3.org/2000/svg",
316
+ width: 40,
317
+ height: 40,
318
+ fill: "none",
319
+ viewBox: "0 0 40 40",
320
+ ...e,
321
+ children: [
322
+ /* @__PURE__ */ t("path", {
323
+ fill: "url(#paint0_radial_5688_13)",
324
+ d: "M20 38c9.942 0 18-8.058 18-18 0-9.94-8.058-18-18-18-9.94 0-18 8.06-18 18 0 9.942 8.06 18 18 18"
325
+ }),
326
+ /* @__PURE__ */ t("path", {
327
+ fill: "url(#paint1_radial_5688_13)",
328
+ d: "M20 38c9.942 0 18-8.058 18-18 0-9.94-8.058-18-18-18-9.94 0-18 8.06-18 18 0 9.942 8.06 18 18 18",
329
+ opacity: .5
330
+ }),
331
+ /* @__PURE__ */ t("path", {
332
+ fill: "url(#paint2_linear_5688_13)",
333
+ d: "M16.93 13.666c.191-.697-.45-1.339-1.744-1.687-1.102-.292-3.679-.338-5.918 1.361-.416.315 0 .652.372.484 1.26-.597 4.297-.979 6.379-.169.832.326.91.011.91.011"
334
+ }),
335
+ /* @__PURE__ */ t("path", {
336
+ fill: "url(#paint3_radial_5688_13)",
337
+ d: "M14.117 20.968c.957 0 1.732-1.174 1.732-2.622s-.775-2.62-1.732-2.62-1.732 1.173-1.732 2.62.775 2.622 1.732 2.622"
338
+ }),
339
+ /* @__PURE__ */ t("path", {
340
+ fill: "url(#paint4_linear_5688_13)",
341
+ d: "M14.117 16.602c.742 0 1.395.653 1.732 1.61-.022-1.418-.787-2.555-1.732-2.555s-1.71 1.137-1.732 2.554c.337-.956.99-1.609 1.732-1.609"
342
+ }),
343
+ /* @__PURE__ */ t("path", {
344
+ fill: "#643800",
345
+ d: "M12.45 30.845a.46.46 0 0 0 .384-.112c1.833-1.62 4.668-2.498 6.794-2.498h.743c2.127 0 4.962.878 6.795 2.498.101.09.248.134.383.112.146-.022.224-.18.146-.304-1.564-2.565-4.466-4.151-7.605-4.151h-.18c-3.15 0-6.042 1.586-7.606 4.151-.09.125-.01.282.147.304"
346
+ }),
347
+ /* @__PURE__ */ t("path", {
348
+ fill: "url(#paint5_linear_5688_13)",
349
+ d: "M12.452 30.845a.46.46 0 0 0 .383-.112c1.833-1.62 4.668-2.498 6.794-2.498h.743c2.126 0 4.961.877 6.795 2.498.101.09.248.134.382.112.147-.022.226-.18.147-.304-.012-.023-.034-.045-.046-.079-.145.079-.303.158-.472-.01-1.744-1.846-4.32-2.948-7.088-2.948h-.202c-2.779 0-5.377 1.113-7.121 2.992-.157.169-.304.09-.45 0-.012.023-.022.034-.034.057-.067.112.012.27.17.292"
350
+ }),
351
+ /* @__PURE__ */ t("path", {
352
+ fill: "url(#paint6_linear_5688_13)",
353
+ d: "M23.072 13.666c-.191-.697.45-1.339 1.744-1.687 1.103-.292 3.679-.338 5.918 1.361.416.315 0 .652-.372.484-1.26-.597-4.297-.979-6.379-.169-.832.326-.91.011-.91.011"
354
+ }),
355
+ /* @__PURE__ */ t("path", {
356
+ fill: "url(#paint7_radial_5688_13)",
357
+ d: "M25.873 20.968c.957 0 1.732-1.174 1.732-2.622s-.775-2.62-1.732-2.62-1.732 1.173-1.732 2.62.775 2.622 1.732 2.622"
358
+ }),
359
+ /* @__PURE__ */ t("path", {
360
+ fill: "url(#paint8_linear_5688_13)",
361
+ d: "M25.873 16.602c.742 0 1.395.653 1.732 1.61-.022-1.418-.787-2.555-1.732-2.555s-1.71 1.137-1.732 2.554c.337-.956.99-1.609 1.732-1.609"
362
+ }),
363
+ /* @__PURE__ */ n("defs", { children: [
364
+ /* @__PURE__ */ n("linearGradient", {
365
+ id: "paint2_linear_5688_13",
366
+ x1: 12.647,
367
+ x2: 13.424,
368
+ y1: 14.976,
369
+ y2: 12.074,
370
+ gradientUnits: "userSpaceOnUse",
371
+ children: [/* @__PURE__ */ t("stop", {
372
+ offset: .001,
373
+ stopColor: "#3c2200"
374
+ }), /* @__PURE__ */ t("stop", {
375
+ offset: 1,
376
+ stopColor: "#7a4400"
377
+ })]
378
+ }),
379
+ /* @__PURE__ */ n("linearGradient", {
380
+ id: "paint4_linear_5688_13",
381
+ x1: 14.12,
382
+ x2: 14.12,
383
+ y1: 15.657,
384
+ y2: 18.213,
385
+ gradientUnits: "userSpaceOnUse",
386
+ children: [/* @__PURE__ */ t("stop", {
387
+ offset: .001,
388
+ stopColor: "#3c2200"
389
+ }), /* @__PURE__ */ t("stop", {
390
+ offset: 1,
391
+ stopColor: "#512d00"
392
+ })]
393
+ }),
394
+ /* @__PURE__ */ n("linearGradient", {
395
+ id: "paint5_linear_5688_13",
396
+ x1: 19.997,
397
+ x2: 19.997,
398
+ y1: 26.57,
399
+ y2: 29.09,
400
+ gradientUnits: "userSpaceOnUse",
401
+ children: [/* @__PURE__ */ t("stop", {
402
+ offset: .001,
403
+ stopColor: "#3c2200"
404
+ }), /* @__PURE__ */ t("stop", {
405
+ offset: 1,
406
+ stopColor: "#512d00"
407
+ })]
408
+ }),
409
+ /* @__PURE__ */ n("linearGradient", {
410
+ id: "paint6_linear_5688_13",
411
+ x1: 27.323,
412
+ x2: 26.545,
413
+ y1: 15.046,
414
+ y2: 12.144,
415
+ gradientUnits: "userSpaceOnUse",
416
+ children: [/* @__PURE__ */ t("stop", {
417
+ offset: .001,
418
+ stopColor: "#3c2200"
419
+ }), /* @__PURE__ */ t("stop", {
420
+ offset: 1,
421
+ stopColor: "#7a4400"
422
+ })]
423
+ }),
424
+ /* @__PURE__ */ n("linearGradient", {
425
+ id: "paint8_linear_5688_13",
426
+ x1: 25.873,
427
+ x2: 25.873,
428
+ y1: 15.657,
429
+ y2: 18.213,
430
+ gradientUnits: "userSpaceOnUse",
431
+ children: [/* @__PURE__ */ t("stop", {
432
+ offset: .001,
433
+ stopColor: "#3c2200"
434
+ }), /* @__PURE__ */ t("stop", {
435
+ offset: 1,
436
+ stopColor: "#512d00"
437
+ })]
438
+ }),
439
+ /* @__PURE__ */ n("radialGradient", {
440
+ id: "paint0_radial_5688_13",
441
+ cx: 0,
442
+ cy: 0,
443
+ r: 1,
444
+ gradientTransform: "translate(16.454 12.705)scale(21.7148)",
445
+ gradientUnits: "userSpaceOnUse",
446
+ children: [/* @__PURE__ */ t("stop", { stopColor: "#ffe030" }), /* @__PURE__ */ t("stop", {
447
+ offset: 1,
448
+ stopColor: "#ffb92e"
449
+ })]
450
+ }),
451
+ /* @__PURE__ */ n("radialGradient", {
452
+ id: "paint1_radial_5688_13",
453
+ cx: 0,
454
+ cy: 0,
455
+ r: 1,
456
+ gradientTransform: "translate(16.454 12.705)scale(17.084)",
457
+ gradientUnits: "userSpaceOnUse",
458
+ children: [/* @__PURE__ */ t("stop", { stopColor: "#ffea5f" }), /* @__PURE__ */ t("stop", {
459
+ offset: 1,
460
+ stopColor: "#ffbc47",
461
+ stopOpacity: 0
462
+ })]
463
+ }),
464
+ /* @__PURE__ */ n("radialGradient", {
465
+ id: "paint3_radial_5688_13",
466
+ cx: 0,
467
+ cy: 0,
468
+ r: 1,
469
+ gradientTransform: "rotate(73.854 -5.448 18.256)scale(2.54329 1.64547)",
470
+ gradientUnits: "userSpaceOnUse",
471
+ children: [/* @__PURE__ */ t("stop", {
472
+ offset: .001,
473
+ stopColor: "#7a4400"
474
+ }), /* @__PURE__ */ t("stop", {
475
+ offset: 1,
476
+ stopColor: "#643800"
477
+ })]
478
+ }),
479
+ /* @__PURE__ */ n("radialGradient", {
480
+ id: "paint7_radial_5688_13",
481
+ cx: 0,
482
+ cy: 0,
483
+ r: 1,
484
+ gradientTransform: "rotate(73.854 .428 26.075)scale(2.54329 1.64547)",
485
+ gradientUnits: "userSpaceOnUse",
486
+ children: [/* @__PURE__ */ t("stop", {
487
+ offset: .001,
488
+ stopColor: "#7a4400"
489
+ }), /* @__PURE__ */ t("stop", {
490
+ offset: 1,
491
+ stopColor: "#643800"
492
+ })]
493
+ })
494
+ ] })
495
+ ]
496
+ }), C = (e) => /* @__PURE__ */ n("svg", {
497
+ xmlns: "http://www.w3.org/2000/svg",
498
+ width: 40,
499
+ height: 40,
500
+ fill: "none",
501
+ viewBox: "0 0 40 40",
502
+ ...e,
503
+ children: [
504
+ /* @__PURE__ */ t("path", {
505
+ fill: "url(#paint0_radial_15759_16891)",
506
+ d: "M20 38a18 18 0 1 0 0-36 18 18 0 0 0 0 36"
507
+ }),
508
+ /* @__PURE__ */ t("path", {
509
+ fill: "url(#paint1_radial_15759_16891)",
510
+ d: "M20 38a18 18 0 1 0 0-36 18 18 0 0 0 0 36",
511
+ opacity: .5
512
+ }),
513
+ /* @__PURE__ */ t("path", {
514
+ fill: "url(#paint2_linear_15759_16891)",
515
+ d: "M16.04 10.67c0-.72-.78-1.17-2.13-1.17-1.13 0-3.64.63-5.36 2.85-.32.4.17.63.48.37a9.7 9.7 0 0 1 6.12-1.81c.89.09.89-.24.89-.24"
516
+ }),
517
+ /* @__PURE__ */ t("path", {
518
+ fill: "url(#paint3_radial_15759_16891)",
519
+ d: "M14.12 19.42c.95 0 1.73-1.18 1.73-2.63 0-1.44-.78-2.62-1.73-2.62-.96 0-1.74 1.18-1.74 2.62s.78 2.63 1.74 2.63"
520
+ }),
521
+ /* @__PURE__ */ t("path", {
522
+ fill: "url(#paint4_linear_15759_16891)",
523
+ d: "M14.12 15.06c.74 0 1.4.65 1.73 1.61-.02-1.42-.79-2.55-1.73-2.55-.95 0-1.71 1.13-1.74 2.55.34-.96 1-1.6 1.74-1.6"
524
+ }),
525
+ /* @__PURE__ */ t("path", {
526
+ fill: "url(#paint5_linear_15759_16891)",
527
+ d: "M23.96 10.67c0-.72.78-1.17 2.13-1.17 1.13 0 3.64.63 5.36 2.85.32.4-.17.63-.48.37a9.7 9.7 0 0 0-6.12-1.81c-.9.09-.89-.24-.89-.24"
528
+ }),
529
+ /* @__PURE__ */ t("path", {
530
+ fill: "#643800",
531
+ d: "M27.95 25.27a.5.5 0 0 0-.4.12 11.3 11.3 0 0 1-7.17 2.79h-.76c-2.25 0-5.23-.98-7.17-2.8a.5.5 0 0 0-.4-.11c-.16.03-.24.2-.16.33a9.3 9.3 0 0 0 8.02 4.63h.2a9.3 9.3 0 0 0 8.02-4.63.25.25 0 0 0-.18-.33"
532
+ }),
533
+ /* @__PURE__ */ t("path", {
534
+ fill: "url(#paint6_radial_15759_16891)",
535
+ d: "M25.87 19.42c.96 0 1.73-1.18 1.73-2.63 0-1.44-.77-2.62-1.73-2.62-.95 0-1.73 1.18-1.73 2.62s.78 2.63 1.73 2.63"
536
+ }),
537
+ /* @__PURE__ */ t("path", {
538
+ fill: "url(#paint7_linear_15759_16891)",
539
+ d: "M25.87 15.06c-.74 0-1.4.65-1.73 1.61.02-1.42.79-2.55 1.73-2.55.95 0 1.71 1.13 1.73 2.55-.33-.96-.99-1.6-1.73-1.6"
540
+ }),
541
+ /* @__PURE__ */ t("path", {
542
+ fill: "url(#paint8_linear_15759_16891)",
543
+ d: "M27.95 25.27a.5.5 0 0 0-.4.12 11.3 11.3 0 0 1-7.17 2.79h-.76c-2.25 0-5.23-.98-7.17-2.8a.5.5 0 0 0-.4-.11c-.16.03-.24.2-.16.33l.05.08c.16-.09.33-.18.5.01a10 10 0 0 0 7.47 3.3h.2a10 10 0 0 0 7.5-3.34c.17-.2.33-.1.48 0l.03-.06c.07-.12 0-.3-.17-.32"
544
+ }),
545
+ /* @__PURE__ */ n("defs", { children: [
546
+ /* @__PURE__ */ n("linearGradient", {
547
+ id: "paint2_linear_15759_16891",
548
+ x1: 12.24,
549
+ x2: 12.24,
550
+ y1: 11.88,
551
+ y2: 9.98,
552
+ gradientUnits: "userSpaceOnUse",
553
+ children: [/* @__PURE__ */ t("stop", {
554
+ offset: 0,
555
+ stopColor: "#3c2200"
556
+ }), /* @__PURE__ */ t("stop", {
557
+ offset: 1,
558
+ stopColor: "#7a4400"
559
+ })]
560
+ }),
561
+ /* @__PURE__ */ n("linearGradient", {
562
+ id: "paint4_linear_15759_16891",
563
+ x1: 14.12,
564
+ x2: 14.12,
565
+ y1: 14.16,
566
+ y2: 16.61,
567
+ gradientUnits: "userSpaceOnUse",
568
+ children: [/* @__PURE__ */ t("stop", {
569
+ offset: 0,
570
+ stopColor: "#3c2200"
571
+ }), /* @__PURE__ */ t("stop", {
572
+ offset: 1,
573
+ stopColor: "#512d00"
574
+ })]
575
+ }),
576
+ /* @__PURE__ */ n("linearGradient", {
577
+ id: "paint5_linear_15759_16891",
578
+ x1: 27.75,
579
+ x2: 27.75,
580
+ y1: 11.88,
581
+ y2: 9.98,
582
+ gradientUnits: "userSpaceOnUse",
583
+ children: [/* @__PURE__ */ t("stop", {
584
+ offset: 0,
585
+ stopColor: "#3c2200"
586
+ }), /* @__PURE__ */ t("stop", {
587
+ offset: 1,
588
+ stopColor: "#7a4400"
589
+ })]
590
+ }),
591
+ /* @__PURE__ */ n("linearGradient", {
592
+ id: "paint7_linear_15759_16891",
593
+ x1: 25.87,
594
+ x2: 25.87,
595
+ y1: 14.16,
596
+ y2: 16.61,
597
+ gradientUnits: "userSpaceOnUse",
598
+ children: [/* @__PURE__ */ t("stop", {
599
+ offset: 0,
600
+ stopColor: "#3c2200"
601
+ }), /* @__PURE__ */ t("stop", {
602
+ offset: 1,
603
+ stopColor: "#512d00"
604
+ })]
605
+ }),
606
+ /* @__PURE__ */ n("linearGradient", {
607
+ id: "paint8_linear_15759_16891",
608
+ x1: 20,
609
+ x2: 20,
610
+ y1: 26.54,
611
+ y2: 29.22,
612
+ gradientUnits: "userSpaceOnUse",
613
+ children: [/* @__PURE__ */ t("stop", {
614
+ offset: 0,
615
+ stopColor: "#3c2200"
616
+ }), /* @__PURE__ */ t("stop", {
617
+ offset: 1,
618
+ stopColor: "#512d00"
619
+ })]
620
+ }),
621
+ /* @__PURE__ */ n("radialGradient", {
622
+ id: "paint0_radial_15759_16891",
623
+ cx: 0,
624
+ cy: 0,
625
+ r: 1,
626
+ gradientTransform: "translate(16.45 12.7)scale(21.71)",
627
+ gradientUnits: "userSpaceOnUse",
628
+ children: [/* @__PURE__ */ t("stop", { stopColor: "#ffe030" }), /* @__PURE__ */ t("stop", {
629
+ offset: 1,
630
+ stopColor: "#ffb92e"
631
+ })]
632
+ }),
633
+ /* @__PURE__ */ n("radialGradient", {
634
+ id: "paint1_radial_15759_16891",
635
+ cx: 0,
636
+ cy: 0,
637
+ r: 1,
638
+ gradientTransform: "translate(16.45 12.7)scale(17.08)",
639
+ gradientUnits: "userSpaceOnUse",
640
+ children: [/* @__PURE__ */ t("stop", { stopColor: "#ffea5f" }), /* @__PURE__ */ t("stop", {
641
+ offset: 1,
642
+ stopColor: "#ffbc47",
643
+ stopOpacity: 0
644
+ })]
645
+ }),
646
+ /* @__PURE__ */ n("radialGradient", {
647
+ id: "paint3_radial_15759_16891",
648
+ cx: 0,
649
+ cy: 0,
650
+ r: 1,
651
+ gradientTransform: "matrix(.7 2.44 -1.58 .46 13.6 16.87)",
652
+ gradientUnits: "userSpaceOnUse",
653
+ children: [/* @__PURE__ */ t("stop", {
654
+ offset: 0,
655
+ stopColor: "#7a4400"
656
+ }), /* @__PURE__ */ t("stop", {
657
+ offset: 1,
658
+ stopColor: "#643800"
659
+ })]
660
+ }),
661
+ /* @__PURE__ */ n("radialGradient", {
662
+ id: "paint6_radial_15759_16891",
663
+ cx: 0,
664
+ cy: 0,
665
+ r: 1,
666
+ gradientTransform: "rotate(74 1.45 25.3)scale(2.54 1.65)",
667
+ gradientUnits: "userSpaceOnUse",
668
+ children: [/* @__PURE__ */ t("stop", {
669
+ offset: 0,
670
+ stopColor: "#7a4400"
671
+ }), /* @__PURE__ */ t("stop", {
672
+ offset: 1,
673
+ stopColor: "#643800"
674
+ })]
675
+ })
676
+ ] })
677
+ ]
678
+ }), w = {
679
+ list: "_list_grany_1",
680
+ icon: "_icon_grany_7",
681
+ button: "_button_grany_12"
682
+ }, ee = ({ classNames: e, minLabel: i, maxLabel: a, onChange: o }) => {
683
+ let c = [[
684
+ S,
685
+ 0,
686
+ i ?? "Dissatisfied"
687
+ ], [
688
+ C,
689
+ 1,
690
+ a ?? "Satisfied"
691
+ ]], l = r((e) => {
692
+ o(Number(e.currentTarget.value));
693
+ }, [o]);
694
+ return /* @__PURE__ */ n("div", {
695
+ className: s(w.base, e?.base),
696
+ children: [/* @__PURE__ */ t("div", {
697
+ className: s(w.list, e?.list),
698
+ children: c.map(([n, r, i]) => /* @__PURE__ */ t("button", {
699
+ "aria-label": i,
700
+ className: s(w.button, e?.button),
701
+ type: "button",
702
+ value: r,
703
+ onClick: l,
704
+ children: /* @__PURE__ */ t(n, {
705
+ "aria-hidden": "true",
706
+ className: s(w.icon, e?.icon),
707
+ width: 32,
708
+ height: 32
709
+ })
710
+ }, r))
711
+ }), !!i && !!a && /* @__PURE__ */ t(x, {
712
+ className: s(w.labels, e?.labels),
713
+ minLabel: i,
714
+ maxLabel: a,
715
+ placement: "center"
716
+ })]
717
+ });
718
+ }, T = (e) => /* @__PURE__ */ n("svg", {
719
+ xmlns: "http://www.w3.org/2000/svg",
720
+ width: 40,
721
+ height: 40,
722
+ fill: "none",
723
+ viewBox: "0 0 40 40",
724
+ ...e,
725
+ children: [
726
+ /* @__PURE__ */ t("path", {
727
+ fill: "url(#paint0_linear_15759_16997)",
728
+ d: "M20.1 36c1.24 0 1.71-1 1.62-2.91-.07-1.27-.5-4.8 1.3-6.59 1.66-1.67 2.15-1.52 4.05-3.67s3.48-1.71 5.7-1.52c2.77.24 1.83-15.21-.13-14.94-1.4.19-4.56.57-5.07.57-.5 0-3.98-2.7-7.02-2.73-4.94-.05-7.66.83-7.66.83l-1.45 3.28-.48 10 2.3 4.82s3.1-.5 4 .9c.88 1.38-.7 3.1-.7 7.08 0 4 2.91 4.88 3.54 4.88"
729
+ }),
730
+ /* @__PURE__ */ t("path", {
731
+ fill: "url(#paint1_linear_15759_16997)",
732
+ d: "m12.72 5.07.18.68c.56.06 1.28-.2 2.25-.19 4.67.04 9.13 1.38 11.05 2.9 1.25.99 1.8 2.31 2.69 1.93 1.09-.47 4.2-1.2 5.33.25-.32-2.47-.89-4.37-1.58-4.27-1.4.19-4.56.57-5.07.57-.5 0-3.88-2.62-7.02-2.73-4.07-.13-7.68.57-7.68.57z"
733
+ }),
734
+ /* @__PURE__ */ t("path", {
735
+ fill: "url(#paint2_linear_15759_16997)",
736
+ d: "M30.79 20.33c-1.84-.5-3 .34-3.94 1.48-.94 1.13-1.74 2.13-4.09 3.65s-2.04 5.7-1.85 7.1c.2 1.39.07 3.44-.8 3.44 1.23 0 1.7-1 1.6-2.91-.06-1.27-.48-4.8 1.3-6.59 1.67-1.67 2.16-1.52 4.06-3.67s3.48-1.71 5.7-1.52c0-.48-.15-.47-1.98-.98"
737
+ }),
738
+ /* @__PURE__ */ t("path", {
739
+ fill: "url(#paint3_linear_15759_16997)",
740
+ d: "M17.26 24.03c.88 1.4-.7 3.1-.7 7.1 0 3.98 2.91 4.87 3.54 4.87q.26 0 .45-.05c-2.58-.17-4.14-3.42-3.25-6.78.73-2.73 1.09-4.91-.1-6.2-.76-.83-2.27-.68-3.93.18 0 0 3.1-.51 3.99.88"
741
+ }),
742
+ /* @__PURE__ */ t("path", {
743
+ fill: "url(#paint4_linear_15759_16997)",
744
+ d: "M17.08 22.61c1.52-.5 5.36-1.7 8.26-4.33 7.37-6.69-5.2-7.52-7.8-13.24-.5-1.09-3.4 5.73-3.4 5.73l-.94 1.58 2.71 7.22z"
745
+ }),
746
+ /* @__PURE__ */ t("path", {
747
+ fill: "url(#paint5_linear_15759_16997)",
748
+ d: "M16.86 22.03c1.52-.5 7.72-4.48 7.72-6.45 0-5.66-4.3-2.87-6.62-9.55-.32-.93-1.45-1.7-1.45-1.7-.95.76-2.37 6.44-2.37 6.44l-.94 1.58 2.71 7.22z"
749
+ }),
750
+ /* @__PURE__ */ t("path", {
751
+ fill: "url(#paint6_linear_15759_16997)",
752
+ d: "M13.35 4.66 10.45 8 9.8 21.88l7.28.73c1.67-.9 1.87-2.13 1.25-4.1-.27-.84.8-1.07.86-3.5.05-1.67-1.05-1.68-1.05-2.18s.55-.45.73-1.9c.26-2.07-1.47-2.1-1.47-2.55s.96-.7.9-2.39c-.07-2.14 3.9-1.7 6.58.24 1.1.8 2.06.88 2.81.7h-.12c-.5 0-3.9-2.72-7.02-2.72-3.65 0-6.17.22-7.2.45"
753
+ }),
754
+ /* @__PURE__ */ t("path", {
755
+ fill: "url(#paint7_linear_15759_16997)",
756
+ d: "M12.68 21.7c2.25 0 3.49-2.2 2.63-3.89-.85-1.69 1.58-3.92 1.33-5.02s-.7-3.88-1.04-4.34c-.35-.47.57-1.51.57-1.51l-2.85-.35-2.66 1.17.1 8.05-.29 5.03z"
757
+ }),
758
+ /* @__PURE__ */ t("path", {
759
+ fill: "url(#paint8_linear_15759_16997)",
760
+ d: "M27.07 22.83c1.23-1.4 2.33-1.7 3.56-1.7-.36-.56-.6-1.19-.58-1.8.07-1.6-.28-3.57-.55-1.52-.2 1.57-1.27 3.5-2.54 5.14z"
761
+ }),
762
+ /* @__PURE__ */ t("path", {
763
+ fill: "url(#paint9_linear_15759_16997)",
764
+ d: "M10.98 23.2c2.66.11 7.43.26 7.54-2.52.08-2.02-1.35-2.69-3.57-2.77l-4.23-.16c-.92-.04-3.8-.02-3.83 2.42-.04 3.05 4.1 3.04 4.1 3.04"
765
+ }),
766
+ /* @__PURE__ */ t("path", {
767
+ fill: "url(#paint10_linear_15759_16997)",
768
+ d: "M15.35 13.14c.71.02 2.83-.51 3.03-1.85.15-1.06-.39-2.43-2.23-2.75-2.33-.4-6.21-.62-7.66-.08-.65.25-1.22.92-1.25 1.95a2.4 2.4 0 0 0 2.4 2.47c1.66.05 2.52.02 3.47.13 1.14.14 1.67.12 2.24.13"
769
+ }),
770
+ /* @__PURE__ */ t("path", {
771
+ fill: "url(#paint11_linear_15759_16997)",
772
+ d: "M16.1 8.45c.8 0 1.8-.72 1.8-1.9 0-1.19-.31-2.07-2.04-2.4a15 15 0 0 0-5.56.28C9.5 4.7 9.2 5.45 9.2 6.71s.78 1.48 1.63 1.48c.86 0 1.9-.15 2.49-.12 1.65.08 1.98.38 2.78.38"
773
+ }),
774
+ /* @__PURE__ */ t("path", {
775
+ fill: "url(#paint12_linear_15759_16997)",
776
+ d: "M11.2 22.65c2.33.08 6.5.22 6.58-1.98.06-1.6-1.19-2.13-3.12-2.2s-7.02-.17-7.04 1.76c-.02 2.4 3.59 2.42 3.59 2.42"
777
+ }),
778
+ /* @__PURE__ */ t("path", {
779
+ fill: "url(#paint13_linear_15759_16997)",
780
+ d: "M15.14 12.58c.62.01 2.35-.13 2.52-1.42.11-.87-.34-1.98-1.94-2.25-2.03-.34-5.41-.52-6.68-.07-.56.2-1.05.75-1.08 1.6-.02.83.76 1.87 2.2 1.91s2.22-.1 3.04 0c1 .11 1.44.21 1.94.23"
781
+ }),
782
+ /* @__PURE__ */ t("path", {
783
+ fill: "url(#paint14_linear_15759_16997)",
784
+ d: "M15.75 8.01c.7 0 1.56-.57 1.56-1.53 0-.95-.27-1.66-1.77-1.93a14 14 0 0 0-4.8.23c-.7.21-.97.82-.97 1.84 0 1.01.68 1.19 1.42 1.19s1.64-.13 2.15-.1c1.43.07 1.71.3 2.4.3"
785
+ }),
786
+ /* @__PURE__ */ t("path", {
787
+ fill: "url(#paint15_linear_15759_16997)",
788
+ d: "M16.17 20.67c-.05 1.51-1.26 2.24-2.8 2.57 2.45-.05 5.07-.5 5.15-2.56.08-2.02-1.35-2.69-3.57-2.77q-.36 0-.69-.03c1.25.37 1.97 1.19 1.91 2.79"
789
+ }),
790
+ /* @__PURE__ */ t("path", {
791
+ fill: "url(#paint16_linear_15759_16997)",
792
+ d: "M15.97 22.97c1.41-.31 2.5-.98 2.55-2.3.06-1.67-.91-2.41-2.52-2.66 3.26 1.3 2.09 4.5-.03 4.96"
793
+ }),
794
+ /* @__PURE__ */ t("path", {
795
+ fill: "url(#paint17_radial_15759_16997)",
796
+ d: "M22.18 7.88c.25-.91 2.01-1.21 3.93-.67s3.27 1.7 3.02 2.6-2.02 1.21-3.94.67c-1.91-.53-3.27-1.7-3.01-2.6"
797
+ }),
798
+ /* @__PURE__ */ t("path", {
799
+ fill: "url(#paint18_radial_15759_16997)",
800
+ d: "M9 20.26c.01-1.17 1.57-1.72 3.27-1.82 1.4-.09 2.94.9 2.9 2.04s-.24 2.14-3.14 2.04c-1.7-.05-3.05-1.12-3.04-2.26"
801
+ }),
802
+ /* @__PURE__ */ t("path", {
803
+ fill: "url(#paint19_radial_15759_16997)",
804
+ d: "M8.68 10.02c.01-1.61 1.79-1.3 3.49-1.42 2.16-.14 3.6.53 3.6 1.67s-.83 1.97-3.72 1.97c-1.71 0-3.38-.15-3.37-2.22"
805
+ }),
806
+ /* @__PURE__ */ t("path", {
807
+ fill: "url(#paint20_radial_15759_16997)",
808
+ d: "M10.24 5.95c.01-1.37 1.62-1.56 3.15-1.56s3.18.8 3.18 1.78c0 .97-.73 1.68-3.32 1.68-1.52 0-3.02-.13-3-1.9"
809
+ }),
810
+ /* @__PURE__ */ t("path", {
811
+ fill: "url(#paint21_linear_15759_16997)",
812
+ d: "M16.4 10.96c-.25 1.84-1.66 1.73-3.27 1.92 1.86.14 2.64.16 2.64.16q.26.03.57 0c.6-.14 1.29-.41 1.7-.93a2 2 0 0 0 .34-.82c.13-1.06-.39-2.43-2.23-2.75l-.85-.13-.47-.06-.13-.01c1.01.48 1.87 1.27 1.7 2.62"
813
+ }),
814
+ /* @__PURE__ */ t("path", {
815
+ fill: "url(#paint22_linear_15759_16997)",
816
+ d: "m15.95 13.05.39-.01c.6-.14 1.3-.42 1.7-.94q.2-.29.32-.7 0-.05.02-.11c.18-1.05-.34-2.28-1.94-2.69 2.74 1.52 1.57 4.45-.5 4.45"
817
+ }),
818
+ /* @__PURE__ */ t("path", {
819
+ fill: "url(#paint23_linear_15759_16997)",
820
+ d: "M14.35 8.17c.81.12 1.14.28 1.74.28.8 0 1.8-.71 1.8-1.9q.02-.65-.17-1.16a2 2 0 0 0-.6-.76q-.44-.32-1.26-.48a9 9 0 0 0-1.23-.13c.85.49 2.28.75 1.98 2.4-.33 1.82-1.42 1.57-2.26 1.75"
821
+ }),
822
+ /* @__PURE__ */ t("path", {
823
+ fill: "url(#paint24_linear_15759_16997)",
824
+ d: "M16.13 8.45c.8-.02 1.77-.73 1.77-1.9 0-1.09-.26-1.92-1.64-2.3 2.15 1.38 1.46 3.7-.13 4.2"
825
+ }),
826
+ /* @__PURE__ */ t("path", {
827
+ fill: "url(#paint25_linear_15759_16997)",
828
+ d: "M6.89 20.17q0 .4.08.75c-.21-.95.64-1.9 2.88-2.36 1.5-.3 5.44-.68 8.18.4-.59-.71-1.68-1-3.08-1.05l-4.23-.16c-.92-.04-3.8-.02-3.83 2.42"
829
+ }),
830
+ /* @__PURE__ */ t("path", {
831
+ fill: "url(#paint26_linear_15759_16997)",
832
+ d: "M7.24 10.48c0 1.02.77 2.35 2.4 2.4 1.66.05 2.52.02 3.47.13 1.14.14 1.67.12 2.24.13.43.02 1.5-.11 2.22-.56a10 10 0 0 0-4-.59c-4.46.29-5.73-.25-6.33-1.51"
833
+ }),
834
+ /* @__PURE__ */ t("path", {
835
+ fill: "url(#paint27_linear_15759_16997)",
836
+ d: "M16.3 17.75c.96.02 2.46-.54 2.5-2.51s-1.68-2.44-2.44-2.46c-.76-.01-3.42-.2-6.69-.26s-3.71 1.7-3.73 2.62.56 2.58 2.53 2.62c5.7.12 7.84-.01 7.84-.01"
837
+ }),
838
+ /* @__PURE__ */ t("path", {
839
+ fill: "url(#paint28_linear_15759_16997)",
840
+ d: "M15.8 17.18c.82.01 2.13-.41 2.16-1.93s-1.47-1.9-2.13-1.9c-.66-.02-2.97-.16-5.81-.22-2.85-.06-3.23 1.3-3.24 2.01s.08 2 1.8 2.03c4.95.1 7.22 0 7.22 0"
841
+ }),
842
+ /* @__PURE__ */ t("path", {
843
+ fill: "url(#paint29_linear_15759_16997)",
844
+ d: "M16.77 15.43c-.1 2.02-1.51 2.03-3.1 2.38a58 58 0 0 0 2.64-.06c.95.02 2.45-.54 2.5-2.51.03-1.97-1.7-2.44-2.45-2.46-.27 0-.8-.03-1.5-.06 1.05.43 1.98 1.22 1.9 2.7"
845
+ }),
846
+ /* @__PURE__ */ t("path", {
847
+ fill: "url(#paint30_radial_15759_16997)",
848
+ d: "M7.6 15.22c-.06-1.61 1.73-1.92 3.44-2 1.7-.08 3.6.78 3.65 1.92s-.73 2-3.62 2.15c-1.7.08-3.38 0-3.46-2.07"
849
+ }),
850
+ /* @__PURE__ */ t("path", {
851
+ fill: "url(#paint31_linear_15759_16997)",
852
+ d: "M16.49 17.75a2.37 2.37 0 0 0 2.31-2.51c.04-1.87-1.51-2.4-2.32-2.45 3.12 1.26 2.1 4.77 0 4.96"
853
+ }),
854
+ /* @__PURE__ */ t("path", {
855
+ fill: "url(#paint32_linear_15759_16997)",
856
+ d: "M5.94 15.33c.41-2.91 8.12-2.38 12.29-1.75-.57-.6-1.4-.79-1.87-.8-.76-.01-3.42-.2-6.69-.26s-3.71 1.7-3.73 2.62z"
857
+ }),
858
+ /* @__PURE__ */ t("path", {
859
+ fill: "url(#paint33_linear_15759_16997)",
860
+ d: "M9.8 8.84c1.5-.07 5.45-.56 8.33.99-.33-.6-.95-1.1-1.98-1.29-2.33-.4-6.21-.62-7.66-.08-.65.25-1.22.92-1.25 1.95.1-.9.95-1.5 2.56-1.57"
861
+ }),
862
+ /* @__PURE__ */ t("path", {
863
+ fill: "url(#paint34_linear_15759_16997)",
864
+ d: "M9.3 5.6c.98-.75 2.67-1.18 5.1-.77 1.52.25 2.55.34 3.23.36-.27-.5-.8-.85-1.77-1.04a15 15 0 0 0-5.56.28q-.78.25-1 1.17"
865
+ }),
866
+ /* @__PURE__ */ t("path", {
867
+ fill: "url(#paint35_linear_15759_16997)",
868
+ d: "M17.58 7.62c-1.81.65-2.7-.32-4.63-.32-2 0-2.97.8-3.68.04.22.7.87.85 1.55.85.86 0 1.9-.15 2.49-.12 1.65.08 1.98.38 2.78.38.53 0 1.13-.3 1.49-.83"
869
+ }),
870
+ /* @__PURE__ */ t("path", {
871
+ fill: "url(#paint36_linear_15759_16997)",
872
+ d: "M32.64 6.37c-1.4.19-4.56.57-5.07.57 4.6 3.28 2.55 10.26.86 13.79q-.35.74-.47 1.25c1.53-1.17 2.94-.83 4.8-.67 2.78.24 1.84-15.21-.12-14.94"
873
+ }),
874
+ /* @__PURE__ */ t("path", {
875
+ fill: "url(#paint37_linear_15759_16997)",
876
+ d: "M27.57 6.93c.4.34.87.9 1.3 1.45 0 0 2.3-1.18 4.77-.62-.28-.9-.62-1.45-1-1.4-1.4.2-4.56.57-5.07.57"
877
+ }),
878
+ /* @__PURE__ */ t("path", {
879
+ fill: "url(#paint38_radial_15759_16997)",
880
+ d: "M18.63 30.2c.9-.2 1.63 1.04 2.04 2.5.34 1.19-.12 2.7-1 2.87-.89.17-1.7.18-2.2-2.34-.28-1.48.28-2.85 1.16-3.04"
881
+ }),
882
+ /* @__PURE__ */ t("path", {
883
+ fill: "url(#paint39_linear_15759_16997)",
884
+ d: "M13.27 23.15s3.1-.51 3.99.88c.88 1.4-.7 3.1-.7 7.1 0 3.98 2.91 4.87 3.54 4.87 1.24 0 1.71-1 1.62-2.91-.07-1.27-.5-4.8 1.3-6.59 1.66-1.67 2.15-1.52 4.05-3.67s-11.78-.6-13.8.32"
885
+ }),
886
+ /* @__PURE__ */ t("path", {
887
+ fill: "#804b24",
888
+ d: "M16.13 8.45c.5 0 1-.23 1.35-.6.36-.38.52-.92.5-1.43s-.1-1.03-.42-1.45a2.2 2.2 0 0 0-1.3-.73c.46.17.92.4 1.2.8s.35.9.35 1.39c.03.48-.11.96-.43 1.33-.3.37-.75.63-1.25.69M16.92 12.86q.53-.14.95-.5c.29-.24.46-.58.56-.93q.1-.49.03-.98-.1-.49-.4-.9a2.6 2.6 0 0 0-1.62-.95c.6.2 1.16.53 1.5 1.04.36.5.46 1.15.34 1.75-.09.33-.22.66-.48.9q-.38.36-.88.57"
889
+ }),
890
+ /* @__PURE__ */ t("path", {
891
+ fill: "#804b24",
892
+ d: "M16.49 17.75c.59 0 1.2-.21 1.64-.63.46-.42.7-1.03.74-1.63s-.05-1.25-.42-1.74a2.4 2.4 0 0 0-1.53-.9c.57.17 1.1.5 1.42.97.33.48.42 1.08.36 1.65a2.4 2.4 0 0 1-.66 1.56c-.4.4-.97.65-1.55.72M15.97 22.97c.64-.11 1.29-.3 1.82-.72.55-.4.85-1.1.81-1.77a2.3 2.3 0 0 0-.76-1.8c-.52-.44-1.2-.6-1.84-.67.64.13 1.28.34 1.76.77.48.42.69 1.07.68 1.7.04.64-.23 1.27-.73 1.67-.5.41-1.12.65-1.74.82M18.13 9.83q-.31-.57-.86-.94a3 3 0 0 0-1.2-.42q-1.27-.22-2.53-.33-1.27-.08-2.55-.05c-.84.03-1.7.07-2.5.37.4-.13.82-.17 1.24-.2q.63-.07 1.27-.06 1.26 0 2.53.1 1.26.09 2.52.28c.81.11 1.64.5 2.08 1.25"
893
+ }),
894
+ /* @__PURE__ */ t("path", {
895
+ fill: "#804b24",
896
+ d: "M18.23 13.58c-.3-.34-.72-.59-1.16-.72-.44-.15-.91-.13-1.36-.16l-2.73-.13-2.73-.08a6 6 0 0 0-2.7.34c.87-.3 1.8-.29 2.7-.23l2.73.13 2.73.08c.45.02.9 0 1.34.12q.67.17 1.18.65M8.47 17.76a90 90 0 0 0 7.84.06c.67 0 1.36-.25 1.83-.74q.37-.37.52-.86.14-.48.14-.98a2.6 2.6 0 0 1-.72 1.78c-.46.46-1.13.68-1.77.67l-1.96.03-1.96.03h-1.96z"
897
+ }),
898
+ /* @__PURE__ */ n("defs", { children: [
899
+ /* @__PURE__ */ n("linearGradient", {
900
+ id: "paint0_linear_15759_16997",
901
+ x1: 13.17,
902
+ x2: 22.69,
903
+ y1: 20.37,
904
+ y2: 19.99,
905
+ gradientUnits: "userSpaceOnUse",
906
+ children: [/* @__PURE__ */ t("stop", {
907
+ offset: 0,
908
+ stopColor: "#ffcb4b"
909
+ }), /* @__PURE__ */ t("stop", {
910
+ offset: 1,
911
+ stopColor: "#ffd748"
912
+ })]
913
+ }),
914
+ /* @__PURE__ */ n("linearGradient", {
915
+ id: "paint1_linear_15759_16997",
916
+ x1: 22.77,
917
+ x2: 23.43,
918
+ y1: 15.41,
919
+ y2: 8.26,
920
+ gradientUnits: "userSpaceOnUse",
921
+ children: [/* @__PURE__ */ t("stop", {
922
+ offset: 0,
923
+ stopColor: "#ffcb4b"
924
+ }), /* @__PURE__ */ t("stop", {
925
+ offset: 1,
926
+ stopColor: "#ffd748"
927
+ })]
928
+ }),
929
+ /* @__PURE__ */ n("linearGradient", {
930
+ id: "paint2_linear_15759_16997",
931
+ x1: 24.66,
932
+ x2: 17.49,
933
+ y1: 26.01,
934
+ y2: 15.76,
935
+ gradientUnits: "userSpaceOnUse",
936
+ children: [/* @__PURE__ */ t("stop", {
937
+ offset: 0,
938
+ stopColor: "#ffcb4b"
939
+ }), /* @__PURE__ */ t("stop", {
940
+ offset: 1,
941
+ stopColor: "#ffd748"
942
+ })]
943
+ }),
944
+ /* @__PURE__ */ n("linearGradient", {
945
+ id: "paint3_linear_15759_16997",
946
+ x1: 29.85,
947
+ x2: 11.48,
948
+ y1: 30.1,
949
+ y2: 28.72,
950
+ gradientUnits: "userSpaceOnUse",
951
+ children: [/* @__PURE__ */ t("stop", {
952
+ offset: .31,
953
+ stopColor: "#ffbc47",
954
+ stopOpacity: 0
955
+ }), /* @__PURE__ */ t("stop", {
956
+ offset: 1,
957
+ stopColor: "#ff8900"
958
+ })]
959
+ }),
960
+ /* @__PURE__ */ n("linearGradient", {
961
+ id: "paint4_linear_15759_16997",
962
+ x1: 30.2,
963
+ x2: 6.08,
964
+ y1: 13.77,
965
+ y2: 13.77,
966
+ gradientUnits: "userSpaceOnUse",
967
+ children: [/* @__PURE__ */ t("stop", {
968
+ stopColor: "#ffbc47",
969
+ stopOpacity: 0
970
+ }), /* @__PURE__ */ t("stop", {
971
+ offset: 1,
972
+ stopColor: "#ffa754"
973
+ })]
974
+ }),
975
+ /* @__PURE__ */ n("linearGradient", {
976
+ id: "paint5_linear_15759_16997",
977
+ x1: 34.09,
978
+ x2: -13.56,
979
+ y1: 13.73,
980
+ y2: 12.21,
981
+ gradientUnits: "userSpaceOnUse",
982
+ children: [/* @__PURE__ */ t("stop", {
983
+ stopColor: "#ffbc47",
984
+ stopOpacity: 0
985
+ }), /* @__PURE__ */ t("stop", {
986
+ offset: 1,
987
+ stopColor: "#c86f34"
988
+ })]
989
+ }),
990
+ /* @__PURE__ */ n("linearGradient", {
991
+ id: "paint6_linear_15759_16997",
992
+ x1: 26.52,
993
+ x2: 18.64,
994
+ y1: 7.5,
995
+ y2: 11.77,
996
+ gradientUnits: "userSpaceOnUse",
997
+ children: [/* @__PURE__ */ t("stop", {
998
+ stopColor: "#ffbc47",
999
+ stopOpacity: 0
1000
+ }), /* @__PURE__ */ t("stop", {
1001
+ offset: 1,
1002
+ stopColor: "#c86f34"
1003
+ })]
1004
+ }),
1005
+ /* @__PURE__ */ n("linearGradient", {
1006
+ id: "paint7_linear_15759_16997",
1007
+ x1: 17.49,
1008
+ x2: 10.92,
1009
+ y1: 13.57,
1010
+ y2: 14.43,
1011
+ gradientUnits: "userSpaceOnUse",
1012
+ children: [/* @__PURE__ */ t("stop", {
1013
+ stopColor: "#643800",
1014
+ stopOpacity: 0
1015
+ }), /* @__PURE__ */ t("stop", {
1016
+ offset: 1,
1017
+ stopColor: "#643800"
1018
+ })]
1019
+ }),
1020
+ /* @__PURE__ */ n("linearGradient", {
1021
+ id: "paint8_linear_15759_16997",
1022
+ x1: 29.16,
1023
+ x2: 27.73,
1024
+ y1: 28.08,
1025
+ y2: 4.47,
1026
+ gradientUnits: "userSpaceOnUse",
1027
+ children: [/* @__PURE__ */ t("stop", {
1028
+ stopColor: "#ffbc47",
1029
+ stopOpacity: 0
1030
+ }), /* @__PURE__ */ t("stop", {
1031
+ offset: 1,
1032
+ stopColor: "#ffa754"
1033
+ })]
1034
+ }),
1035
+ /* @__PURE__ */ n("linearGradient", {
1036
+ id: "paint9_linear_15759_16997",
1037
+ x1: 7.34,
1038
+ x2: 16.66,
1039
+ y1: 20.5,
1040
+ y2: 20.5,
1041
+ gradientUnits: "userSpaceOnUse",
1042
+ children: [/* @__PURE__ */ t("stop", {
1043
+ offset: 0,
1044
+ stopColor: "#ffbc47"
1045
+ }), /* @__PURE__ */ t("stop", {
1046
+ offset: 1,
1047
+ stopColor: "#ffd748"
1048
+ })]
1049
+ }),
1050
+ /* @__PURE__ */ n("linearGradient", {
1051
+ id: "paint10_linear_15759_16997",
1052
+ x1: 7.34,
1053
+ x2: 16.67,
1054
+ y1: 10.64,
1055
+ y2: 10.64,
1056
+ gradientUnits: "userSpaceOnUse",
1057
+ children: [/* @__PURE__ */ t("stop", {
1058
+ offset: 0,
1059
+ stopColor: "#ffbc47"
1060
+ }), /* @__PURE__ */ t("stop", {
1061
+ offset: 1,
1062
+ stopColor: "#ffd748"
1063
+ })]
1064
+ }),
1065
+ /* @__PURE__ */ n("linearGradient", {
1066
+ id: "paint11_linear_15759_16997",
1067
+ x1: 7.34,
1068
+ x2: 16.66,
1069
+ y1: 6.22,
1070
+ y2: 6.22,
1071
+ gradientUnits: "userSpaceOnUse",
1072
+ children: [/* @__PURE__ */ t("stop", {
1073
+ offset: 0,
1074
+ stopColor: "#ffbc47"
1075
+ }), /* @__PURE__ */ t("stop", {
1076
+ offset: 1,
1077
+ stopColor: "#ffd748"
1078
+ })]
1079
+ }),
1080
+ /* @__PURE__ */ n("linearGradient", {
1081
+ id: "paint12_linear_15759_16997",
1082
+ x1: 17.92,
1083
+ x2: 13.06,
1084
+ y1: 20.45,
1085
+ y2: 20.56,
1086
+ gradientUnits: "userSpaceOnUse",
1087
+ children: [/* @__PURE__ */ t("stop", {
1088
+ offset: 0,
1089
+ stopColor: "#ffcb4b"
1090
+ }), /* @__PURE__ */ t("stop", {
1091
+ offset: 1,
1092
+ stopColor: "#ffd748"
1093
+ })]
1094
+ }),
1095
+ /* @__PURE__ */ n("linearGradient", {
1096
+ id: "paint13_linear_15759_16997",
1097
+ x1: 9.42,
1098
+ x2: 14.38,
1099
+ y1: 10.57,
1100
+ y2: 10.57,
1101
+ gradientUnits: "userSpaceOnUse",
1102
+ children: [/* @__PURE__ */ t("stop", {
1103
+ offset: 0,
1104
+ stopColor: "#ffcb4b"
1105
+ }), /* @__PURE__ */ t("stop", {
1106
+ offset: 1,
1107
+ stopColor: "#ffd748"
1108
+ })]
1109
+ }),
1110
+ /* @__PURE__ */ n("linearGradient", {
1111
+ id: "paint14_linear_15759_16997",
1112
+ x1: 9.42,
1113
+ x2: 14.38,
1114
+ y1: 6.22,
1115
+ y2: 6.22,
1116
+ gradientUnits: "userSpaceOnUse",
1117
+ children: [/* @__PURE__ */ t("stop", {
1118
+ offset: 0,
1119
+ stopColor: "#ffcb4b"
1120
+ }), /* @__PURE__ */ t("stop", {
1121
+ offset: 1,
1122
+ stopColor: "#ffd748"
1123
+ })]
1124
+ }),
1125
+ /* @__PURE__ */ n("linearGradient", {
1126
+ id: "paint15_linear_15759_16997",
1127
+ x1: 15.47,
1128
+ x2: 18.11,
1129
+ y1: 20.56,
1130
+ y2: 20.56,
1131
+ gradientUnits: "userSpaceOnUse",
1132
+ children: [/* @__PURE__ */ t("stop", {
1133
+ offset: 0,
1134
+ stopColor: "#fba23b",
1135
+ stopOpacity: 0
1136
+ }), /* @__PURE__ */ t("stop", {
1137
+ offset: 1,
1138
+ stopColor: "#fba23b"
1139
+ })]
1140
+ }),
1141
+ /* @__PURE__ */ n("linearGradient", {
1142
+ id: "paint16_linear_15759_16997",
1143
+ x1: 15.94,
1144
+ x2: 18.98,
1145
+ y1: 20.49,
1146
+ y2: 20.49,
1147
+ gradientUnits: "userSpaceOnUse",
1148
+ children: [/* @__PURE__ */ t("stop", {
1149
+ offset: 0,
1150
+ stopColor: "#ffbc47"
1151
+ }), /* @__PURE__ */ t("stop", {
1152
+ offset: 1,
1153
+ stopColor: "#e89043"
1154
+ })]
1155
+ }),
1156
+ /* @__PURE__ */ n("linearGradient", {
1157
+ id: "paint21_linear_15759_16997",
1158
+ x1: 15.15,
1159
+ x2: 18.98,
1160
+ y1: 10.69,
1161
+ y2: 10.69,
1162
+ gradientUnits: "userSpaceOnUse",
1163
+ children: [/* @__PURE__ */ t("stop", {
1164
+ offset: 0,
1165
+ stopColor: "#fba23b",
1166
+ stopOpacity: 0
1167
+ }), /* @__PURE__ */ t("stop", {
1168
+ offset: 1,
1169
+ stopColor: "#fba23b"
1170
+ })]
1171
+ }),
1172
+ /* @__PURE__ */ n("linearGradient", {
1173
+ id: "paint22_linear_15759_16997",
1174
+ x1: 15.97,
1175
+ x2: 18.03,
1176
+ y1: 10.83,
1177
+ y2: 10.83,
1178
+ gradientUnits: "userSpaceOnUse",
1179
+ children: [/* @__PURE__ */ t("stop", {
1180
+ offset: 0,
1181
+ stopColor: "#ffbc47"
1182
+ }), /* @__PURE__ */ t("stop", {
1183
+ offset: 1,
1184
+ stopColor: "#fba23b"
1185
+ })]
1186
+ }),
1187
+ /* @__PURE__ */ n("linearGradient", {
1188
+ id: "paint23_linear_15759_16997",
1189
+ x1: 15.29,
1190
+ x2: 19.77,
1191
+ y1: 6.2,
1192
+ y2: 7.02,
1193
+ gradientUnits: "userSpaceOnUse",
1194
+ children: [/* @__PURE__ */ t("stop", {
1195
+ offset: 0,
1196
+ stopColor: "#fba23b",
1197
+ stopOpacity: 0
1198
+ }), /* @__PURE__ */ t("stop", {
1199
+ offset: 1,
1200
+ stopColor: "#fba23b"
1201
+ })]
1202
+ }),
1203
+ /* @__PURE__ */ n("linearGradient", {
1204
+ id: "paint24_linear_15759_16997",
1205
+ x1: 15.75,
1206
+ x2: 17.65,
1207
+ y1: 6.34,
1208
+ y2: 6.34,
1209
+ gradientUnits: "userSpaceOnUse",
1210
+ children: [/* @__PURE__ */ t("stop", {
1211
+ offset: 0,
1212
+ stopColor: "#ffbc47"
1213
+ }), /* @__PURE__ */ t("stop", {
1214
+ offset: 1,
1215
+ stopColor: "#fba23b"
1216
+ })]
1217
+ }),
1218
+ /* @__PURE__ */ n("linearGradient", {
1219
+ id: "paint25_linear_15759_16997",
1220
+ x1: 12.74,
1221
+ x2: 11.53,
1222
+ y1: 21.08,
1223
+ y2: 15.26,
1224
+ gradientUnits: "userSpaceOnUse",
1225
+ children: [/* @__PURE__ */ t("stop", {
1226
+ stopColor: "#ffbc47",
1227
+ stopOpacity: 0
1228
+ }), /* @__PURE__ */ t("stop", {
1229
+ offset: 1,
1230
+ stopColor: "#c86f34"
1231
+ })]
1232
+ }),
1233
+ /* @__PURE__ */ n("linearGradient", {
1234
+ id: "paint26_linear_15759_16997",
1235
+ x1: 11.82,
1236
+ x2: 13.13,
1237
+ y1: 9.57,
1238
+ y2: 14.31,
1239
+ gradientUnits: "userSpaceOnUse",
1240
+ children: [/* @__PURE__ */ t("stop", {
1241
+ stopColor: "#ffbc47",
1242
+ stopOpacity: 0
1243
+ }), /* @__PURE__ */ t("stop", {
1244
+ offset: 1,
1245
+ stopColor: "#c86f34"
1246
+ })]
1247
+ }),
1248
+ /* @__PURE__ */ n("linearGradient", {
1249
+ id: "paint27_linear_15759_16997",
1250
+ x1: 7.34,
1251
+ x2: 16.66,
1252
+ y1: 15.16,
1253
+ y2: 15.16,
1254
+ gradientUnits: "userSpaceOnUse",
1255
+ children: [/* @__PURE__ */ t("stop", {
1256
+ offset: 0,
1257
+ stopColor: "#ffbc47"
1258
+ }), /* @__PURE__ */ t("stop", {
1259
+ offset: 1,
1260
+ stopColor: "#ffd748"
1261
+ })]
1262
+ }),
1263
+ /* @__PURE__ */ n("linearGradient", {
1264
+ id: "paint28_linear_15759_16997",
1265
+ x1: 17.04,
1266
+ x2: 9.89,
1267
+ y1: 15.42,
1268
+ y2: 15.16,
1269
+ gradientUnits: "userSpaceOnUse",
1270
+ children: [
1271
+ /* @__PURE__ */ t("stop", {
1272
+ offset: 0,
1273
+ stopColor: "#ffcb4b"
1274
+ }),
1275
+ /* @__PURE__ */ t("stop", {
1276
+ offset: .74,
1277
+ stopColor: "#ffd748"
1278
+ }),
1279
+ /* @__PURE__ */ t("stop", {
1280
+ offset: 1,
1281
+ stopColor: "#ffcb4b"
1282
+ })
1283
+ ]
1284
+ }),
1285
+ /* @__PURE__ */ n("linearGradient", {
1286
+ id: "paint29_linear_15759_16997",
1287
+ x1: 14.25,
1288
+ x2: 19.59,
1289
+ y1: 15.26,
1290
+ y2: 15.26,
1291
+ gradientUnits: "userSpaceOnUse",
1292
+ children: [/* @__PURE__ */ t("stop", {
1293
+ offset: 0,
1294
+ stopColor: "#fba23b",
1295
+ stopOpacity: 0
1296
+ }), /* @__PURE__ */ t("stop", {
1297
+ offset: 1,
1298
+ stopColor: "#fba23b"
1299
+ })]
1300
+ }),
1301
+ /* @__PURE__ */ n("linearGradient", {
1302
+ id: "paint31_linear_15759_16997",
1303
+ x1: 16.73,
1304
+ x2: 18.42,
1305
+ y1: 15.27,
1306
+ y2: 15.27,
1307
+ gradientUnits: "userSpaceOnUse",
1308
+ children: [/* @__PURE__ */ t("stop", {
1309
+ offset: 0,
1310
+ stopColor: "#ffbc47"
1311
+ }), /* @__PURE__ */ t("stop", {
1312
+ offset: 1,
1313
+ stopColor: "#fba23b"
1314
+ })]
1315
+ }),
1316
+ /* @__PURE__ */ n("linearGradient", {
1317
+ id: "paint32_linear_15759_16997",
1318
+ x1: 12.29,
1319
+ x2: 11.28,
1320
+ y1: 15.78,
1321
+ y2: 9.34,
1322
+ gradientUnits: "userSpaceOnUse",
1323
+ children: [/* @__PURE__ */ t("stop", {
1324
+ stopColor: "#ffbc47",
1325
+ stopOpacity: 0
1326
+ }), /* @__PURE__ */ t("stop", {
1327
+ offset: 1,
1328
+ stopColor: "#c86f34"
1329
+ })]
1330
+ }),
1331
+ /* @__PURE__ */ n("linearGradient", {
1332
+ id: "paint33_linear_15759_16997",
1333
+ x1: 13,
1334
+ x2: 10.4,
1335
+ y1: 10.8,
1336
+ y2: 5.16,
1337
+ gradientUnits: "userSpaceOnUse",
1338
+ children: [/* @__PURE__ */ t("stop", {
1339
+ stopColor: "#ffbc47",
1340
+ stopOpacity: 0
1341
+ }), /* @__PURE__ */ t("stop", {
1342
+ offset: 1,
1343
+ stopColor: "#c86f34"
1344
+ })]
1345
+ }),
1346
+ /* @__PURE__ */ n("linearGradient", {
1347
+ id: "paint34_linear_15759_16997",
1348
+ x1: 13.51,
1349
+ x2: 13.13,
1350
+ y1: 5.85,
1351
+ y2: 2.29,
1352
+ gradientUnits: "userSpaceOnUse",
1353
+ children: [/* @__PURE__ */ t("stop", {
1354
+ stopColor: "#ffbc47",
1355
+ stopOpacity: 0
1356
+ }), /* @__PURE__ */ t("stop", {
1357
+ offset: 1,
1358
+ stopColor: "#c86f34"
1359
+ })]
1360
+ }),
1361
+ /* @__PURE__ */ n("linearGradient", {
1362
+ id: "paint35_linear_15759_16997",
1363
+ x1: 13.42,
1364
+ x2: 13.42,
1365
+ y1: 6.39,
1366
+ y2: 8.97,
1367
+ gradientUnits: "userSpaceOnUse",
1368
+ children: [/* @__PURE__ */ t("stop", {
1369
+ stopColor: "#ffbc47",
1370
+ stopOpacity: 0
1371
+ }), /* @__PURE__ */ t("stop", {
1372
+ offset: 1,
1373
+ stopColor: "#c86f34"
1374
+ })]
1375
+ }),
1376
+ /* @__PURE__ */ n("linearGradient", {
1377
+ id: "paint36_linear_15759_16997",
1378
+ x1: 31.12,
1379
+ x2: 34.45,
1380
+ y1: 15.85,
1381
+ y2: 25.99,
1382
+ gradientUnits: "userSpaceOnUse",
1383
+ children: [/* @__PURE__ */ t("stop", {
1384
+ stopColor: "#c86f34",
1385
+ stopOpacity: 0
1386
+ }), /* @__PURE__ */ t("stop", {
1387
+ offset: 1,
1388
+ stopColor: "#c86f34"
1389
+ })]
1390
+ }),
1391
+ /* @__PURE__ */ n("linearGradient", {
1392
+ id: "paint37_linear_15759_16997",
1393
+ x1: 30.55,
1394
+ x2: 30.74,
1395
+ y1: 9.69,
1396
+ y2: 2.43,
1397
+ gradientUnits: "userSpaceOnUse",
1398
+ children: [/* @__PURE__ */ t("stop", {
1399
+ stopColor: "#ffbc47",
1400
+ stopOpacity: 0
1401
+ }), /* @__PURE__ */ t("stop", {
1402
+ offset: 1,
1403
+ stopColor: "#c86f34"
1404
+ })]
1405
+ }),
1406
+ /* @__PURE__ */ n("linearGradient", {
1407
+ id: "paint39_linear_15759_16997",
1408
+ x1: 20.38,
1409
+ x2: 17.94,
1410
+ y1: 21.74,
1411
+ y2: 43.79,
1412
+ gradientUnits: "userSpaceOnUse",
1413
+ children: [/* @__PURE__ */ t("stop", {
1414
+ stopColor: "#ffbc47",
1415
+ stopOpacity: 0
1416
+ }), /* @__PURE__ */ t("stop", {
1417
+ offset: 1,
1418
+ stopColor: "#c86f34"
1419
+ })]
1420
+ }),
1421
+ /* @__PURE__ */ n("radialGradient", {
1422
+ id: "paint17_radial_15759_16997",
1423
+ cx: 0,
1424
+ cy: 0,
1425
+ r: 1,
1426
+ gradientTransform: "matrix(-3.57 -1 .46 -1.66 26 9.47)",
1427
+ gradientUnits: "userSpaceOnUse",
1428
+ children: [/* @__PURE__ */ t("stop", { stopColor: "#fbe07a" }), /* @__PURE__ */ t("stop", {
1429
+ offset: 1,
1430
+ stopColor: "#ffd748",
1431
+ stopOpacity: 0
1432
+ })]
1433
+ }),
1434
+ /* @__PURE__ */ n("radialGradient", {
1435
+ id: "paint18_radial_15759_16997",
1436
+ cx: 0,
1437
+ cy: 0,
1438
+ r: 1,
1439
+ gradientTransform: "rotate(182 6.22 10.13)scale(3.17 2.08)",
1440
+ gradientUnits: "userSpaceOnUse",
1441
+ children: [/* @__PURE__ */ t("stop", { stopColor: "#fbe07a" }), /* @__PURE__ */ t("stop", {
1442
+ offset: 1,
1443
+ stopColor: "#ffd748"
1444
+ })]
1445
+ }),
1446
+ /* @__PURE__ */ n("radialGradient", {
1447
+ id: "paint19_radial_15759_16997",
1448
+ cx: 0,
1449
+ cy: 0,
1450
+ r: 1,
1451
+ gradientTransform: "matrix(-3.4 0 0 -1.84 12.23 10.25)",
1452
+ gradientUnits: "userSpaceOnUse",
1453
+ children: [/* @__PURE__ */ t("stop", { stopColor: "#fbe07a" }), /* @__PURE__ */ t("stop", {
1454
+ offset: 1,
1455
+ stopColor: "#ffd748",
1456
+ stopOpacity: 0
1457
+ })]
1458
+ }),
1459
+ /* @__PURE__ */ n("radialGradient", {
1460
+ id: "paint20_radial_15759_16997",
1461
+ cx: 0,
1462
+ cy: 0,
1463
+ r: 1,
1464
+ gradientTransform: "matrix(-3.12 0 0 -1.95 13.41 6.12)",
1465
+ gradientUnits: "userSpaceOnUse",
1466
+ children: [/* @__PURE__ */ t("stop", { stopColor: "#fbe07a" }), /* @__PURE__ */ t("stop", {
1467
+ offset: 1,
1468
+ stopColor: "#ffd748",
1469
+ stopOpacity: 0
1470
+ })]
1471
+ }),
1472
+ /* @__PURE__ */ n("radialGradient", {
1473
+ id: "paint30_radial_15759_16997",
1474
+ cx: 0,
1475
+ cy: 0,
1476
+ r: 1,
1477
+ gradientTransform: "rotate(177 5.4 7.76)scale(3.49 2.3)",
1478
+ gradientUnits: "userSpaceOnUse",
1479
+ children: [/* @__PURE__ */ t("stop", { stopColor: "#fbe07a" }), /* @__PURE__ */ t("stop", {
1480
+ offset: 1,
1481
+ stopColor: "#ffd748",
1482
+ stopOpacity: 0
1483
+ })]
1484
+ }),
1485
+ /* @__PURE__ */ n("radialGradient", {
1486
+ id: "paint38_radial_15759_16997",
1487
+ cx: 0,
1488
+ cy: 0,
1489
+ r: 1,
1490
+ gradientTransform: "rotate(259 23.1 8.58)scale(3.35 1.96)",
1491
+ gradientUnits: "userSpaceOnUse",
1492
+ children: [/* @__PURE__ */ t("stop", { stopColor: "#fbe07a" }), /* @__PURE__ */ t("stop", {
1493
+ offset: 1,
1494
+ stopColor: "#ffd748",
1495
+ stopOpacity: 0
1496
+ })]
1497
+ })
1498
+ ] })
1499
+ ]
1500
+ }), E = (e) => /* @__PURE__ */ n("svg", {
1501
+ xmlns: "http://www.w3.org/2000/svg",
1502
+ width: 40,
1503
+ height: 40,
1504
+ fill: "none",
1505
+ viewBox: "0 0 40 40",
1506
+ ...e,
1507
+ children: [
1508
+ /* @__PURE__ */ t("path", {
1509
+ fill: "url(#paint0_linear_15759_16949)",
1510
+ d: "M19.9 4c-1.24 0-1.71 1-1.62 2.91.07 1.27.5 4.8-1.3 6.59-1.66 1.67-2.15 1.52-4.05 3.67s-3.48 1.71-5.7 1.52c-2.77-.24-1.83 15.21.13 14.94 1.4-.19 4.56-.57 5.07-.57.5 0 3.98 2.7 7.02 2.73 4.94.05 7.66-.83 7.66-.83l1.45-3.28.48-10.01-2.3-4.82s-3.1.51-4-.88c-.88-1.4.7-3.1.7-7.1C23.44 4.9 20.53 4 19.9 4"
1511
+ }),
1512
+ /* @__PURE__ */ t("path", {
1513
+ fill: "url(#paint1_linear_15759_16949)",
1514
+ d: "m27.29 34.93-.2-.68c-.55-.06-1.26.2-2.24.19-4.67-.04-9.13-1.38-11.05-2.9-1.25-1-1.8-2.31-2.69-1.93-1.09.47-4.2 1.2-5.33-.25.32 2.47.89 4.37 1.58 4.27 1.4-.19 4.56-.57 5.07-.57.5 0 3.88 2.62 7.02 2.73 4.07.13 7.68-.57 7.68-.57z"
1515
+ }),
1516
+ /* @__PURE__ */ t("path", {
1517
+ fill: "url(#paint2_linear_15759_16949)",
1518
+ d: "M9.21 19.67c1.84.5 3-.34 3.94-1.48.94-1.13 1.74-2.13 4.09-3.65s2.04-5.7 1.85-7.1c-.2-1.39-.07-3.44.8-3.44-1.23 0-1.7 1-1.6 2.91.06 1.27.48 4.8-1.3 6.59-1.67 1.67-2.16 1.52-4.06 3.67s-3.48 1.71-5.7 1.52c0 .48.15.47 1.98.98"
1519
+ }),
1520
+ /* @__PURE__ */ t("path", {
1521
+ fill: "url(#paint3_linear_15759_16949)",
1522
+ d: "M22.74 15.97c-.88-1.4.7-3.1.7-7.1C23.44 4.9 20.53 4 19.9 4q-.26 0-.45.05c2.58.17 4.14 3.42 3.25 6.78-.73 2.73-1.09 4.91.1 6.2.76.83 2.27.68 3.93-.18 0 0-3.1.51-3.99-.88"
1523
+ }),
1524
+ /* @__PURE__ */ t("path", {
1525
+ fill: "url(#paint4_linear_15759_16949)",
1526
+ d: "M22.92 17.39c-1.52.5-5.36 1.7-8.26 4.33-7.37 6.68 5.2 7.52 7.8 13.24.5 1.09 3.4-5.73 3.4-5.73l.94-1.58-2.71-7.22z"
1527
+ }),
1528
+ /* @__PURE__ */ t("path", {
1529
+ fill: "url(#paint5_linear_15759_16949)",
1530
+ d: "M23.14 17.97c-1.52.5-7.72 4.48-7.72 6.45 0 5.66 4.3 2.87 6.62 9.55.32.93 1.46 1.7 1.46 1.7.94-.76 2.36-6.44 2.36-6.44l.94-1.58-2.71-7.22z"
1531
+ }),
1532
+ /* @__PURE__ */ t("path", {
1533
+ fill: "url(#paint6_linear_15759_16949)",
1534
+ d: "m26.65 35.34 2.9-3.33.65-13.89-7.28-.73c-1.67.9-1.87 2.13-1.25 4.1.27.83-.8 1.07-.86 3.5-.05 1.67 1.05 1.68 1.05 2.18s-.55.45-.73 1.9c-.26 2.07 1.47 2.1 1.47 2.55s-.96.7-.9 2.39c.07 2.13-3.9 1.7-6.58-.24-1.1-.8-2.06-.88-2.81-.7h.12c.5 0 3.9 2.72 7.02 2.72 3.65 0 6.17-.22 7.2-.45"
1535
+ }),
1536
+ /* @__PURE__ */ t("path", {
1537
+ fill: "url(#paint7_linear_15759_16949)",
1538
+ d: "M27.32 18.3c-2.25 0-3.48 2.2-2.63 3.89s-1.58 3.92-1.33 5.02.7 3.88 1.04 4.34-.57 1.5-.57 1.5l2.85.36 2.66-1.18-.1-8.04.29-5.03z"
1539
+ }),
1540
+ /* @__PURE__ */ t("path", {
1541
+ fill: "url(#paint8_linear_15759_16949)",
1542
+ d: "M12.93 17.17c-1.23 1.4-2.33 1.7-3.56 1.7.36.56.6 1.19.58 1.8-.07 1.6.28 3.57.55 1.52.2-1.57 1.27-3.5 2.54-5.14z"
1543
+ }),
1544
+ /* @__PURE__ */ t("path", {
1545
+ fill: "url(#paint9_linear_15759_16949)",
1546
+ d: "M29.02 16.8c-2.66-.11-7.43-.26-7.54 2.52-.08 2.02 1.35 2.69 3.57 2.77l4.24.16c.91.04 3.8.02 3.82-2.42.04-3.05-4.1-3.04-4.1-3.04"
1547
+ }),
1548
+ /* @__PURE__ */ t("path", {
1549
+ fill: "url(#paint10_linear_15759_16949)",
1550
+ d: "M24.65 26.86c-.71-.02-2.83.5-3.03 1.85-.15 1.06.39 2.43 2.23 2.75 2.33.4 6.21.62 7.67.08.64-.25 1.2-.93 1.24-1.95a2.4 2.4 0 0 0-2.4-2.47c-1.66-.05-2.52-.02-3.47-.13-1.14-.14-1.67-.12-2.24-.13"
1551
+ }),
1552
+ /* @__PURE__ */ t("path", {
1553
+ fill: "url(#paint11_linear_15759_16949)",
1554
+ d: "M23.9 31.55c-.8 0-1.8.72-1.8 1.9 0 1.19.31 2.07 2.04 2.4 1.74.33 4.51.05 5.56-.28.81-.26 1.11-1.02 1.11-2.28s-.78-1.48-1.63-1.48c-.86 0-1.9.15-2.49.12-1.65-.08-1.98-.38-2.78-.38"
1555
+ }),
1556
+ /* @__PURE__ */ t("path", {
1557
+ fill: "url(#paint12_linear_15759_16949)",
1558
+ d: "M28.8 17.35c-2.33-.09-6.5-.22-6.58 1.98-.06 1.6 1.19 2.13 3.12 2.2s7.02.17 7.04-1.76c.02-2.4-3.59-2.42-3.59-2.42"
1559
+ }),
1560
+ /* @__PURE__ */ t("path", {
1561
+ fill: "url(#paint13_linear_15759_16949)",
1562
+ d: "M24.86 27.42c-.62-.01-2.35.13-2.52 1.42-.11.87.34 1.98 1.94 2.25 2.03.34 5.41.52 6.68.07.56-.2 1.05-.75 1.08-1.6.02-.83-.76-1.87-2.2-1.91s-2.22.1-3.04 0c-1-.11-1.44-.21-1.94-.23"
1563
+ }),
1564
+ /* @__PURE__ */ t("path", {
1565
+ fill: "url(#paint14_linear_15759_16949)",
1566
+ d: "M24.25 31.99c-.7 0-1.56.57-1.56 1.53 0 .95.27 1.66 1.77 1.93 1.5.26 3.9.04 4.8-.23.7-.21.97-.82.97-1.84 0-1.01-.68-1.19-1.42-1.19s-1.64.13-2.15.1c-1.43-.07-1.71-.3-2.4-.3"
1567
+ }),
1568
+ /* @__PURE__ */ t("path", {
1569
+ fill: "url(#paint15_linear_15759_16949)",
1570
+ d: "M23.83 19.33c.05-1.51 1.26-2.24 2.8-2.58-2.45.06-5.07.52-5.15 2.57-.08 2.02 1.35 2.69 3.57 2.77q.36 0 .69.03c-1.24-.37-1.97-1.19-1.91-2.79"
1571
+ }),
1572
+ /* @__PURE__ */ t("path", {
1573
+ fill: "url(#paint16_linear_15759_16949)",
1574
+ d: "M24.04 17.03c-1.42.3-2.51.98-2.56 2.3-.06 1.67.92 2.41 2.52 2.66-3.25-1.3-2.09-4.5.04-4.96"
1575
+ }),
1576
+ /* @__PURE__ */ t("path", {
1577
+ fill: "url(#paint17_radial_15759_16949)",
1578
+ d: "M20.26 32.98c-.38.86-2.16.92-3.99.12s-3-2.14-2.63-3 2.16-.91 3.99-.12c1.83.8 3 2.14 2.63 3"
1579
+ }),
1580
+ /* @__PURE__ */ t("path", {
1581
+ fill: "url(#paint18_radial_15759_16949)",
1582
+ d: "M31 19.74c-.01 1.17-1.57 1.72-3.27 1.82-1.4.09-2.94-.9-2.9-2.04s.24-2.15 3.14-2.04c1.7.05 3.06 1.12 3.04 2.26"
1583
+ }),
1584
+ /* @__PURE__ */ t("path", {
1585
+ fill: "url(#paint19_radial_15759_16949)",
1586
+ d: "M31.32 29.98c-.01 1.61-1.79 1.3-3.49 1.42-2.16.14-3.6-.53-3.6-1.67s.83-1.97 3.73-1.98c1.7 0 3.37.16 3.36 2.23"
1587
+ }),
1588
+ /* @__PURE__ */ t("path", {
1589
+ fill: "url(#paint20_radial_15759_16949)",
1590
+ d: "M29.76 34.05c-.01 1.37-1.62 1.56-3.15 1.56s-3.18-.8-3.18-1.78c0-.97.73-1.68 3.32-1.68 1.53 0 3.02.13 3 1.9"
1591
+ }),
1592
+ /* @__PURE__ */ t("path", {
1593
+ fill: "url(#paint21_linear_15759_16949)",
1594
+ d: "M23.6 29.04c.25-1.84 1.66-1.73 3.27-1.92-1.86-.14-2.64-.16-2.64-.16a3 3 0 0 0-.57 0c-.6.14-1.29.41-1.7.93a2 2 0 0 0-.34.82c-.13 1.06.39 2.43 2.23 2.75l.85.13.47.06.13.01c-1.01-.48-1.87-1.27-1.7-2.62"
1595
+ }),
1596
+ /* @__PURE__ */ t("path", {
1597
+ fill: "url(#paint22_linear_15759_16949)",
1598
+ d: "m24.05 26.95-.39.01c-.6.14-1.3.42-1.7.94q-.2.29-.32.7 0 .05-.02.11c-.18 1.05.34 2.28 1.94 2.69-2.74-1.52-1.57-4.45.5-4.45"
1599
+ }),
1600
+ /* @__PURE__ */ t("path", {
1601
+ fill: "url(#paint23_linear_15759_16949)",
1602
+ d: "M25.65 31.83c-.8-.12-1.14-.28-1.74-.28-.8 0-1.8.71-1.8 1.9q-.01.65.17 1.16.2.42.6.76.44.32 1.26.48.57.1 1.23.13c-.84-.49-2.28-.75-1.98-2.4.33-1.82 1.42-1.57 2.26-1.75"
1603
+ }),
1604
+ /* @__PURE__ */ t("path", {
1605
+ fill: "url(#paint24_linear_15759_16949)",
1606
+ d: "M23.87 31.55c-.8.02-1.77.73-1.77 1.9 0 1.09.26 1.92 1.64 2.3-2.15-1.38-1.46-3.7.13-4.2"
1607
+ }),
1608
+ /* @__PURE__ */ t("path", {
1609
+ fill: "url(#paint25_linear_15759_16949)",
1610
+ d: "M33.11 19.83q0-.4-.08-.75c.21.95-.63 1.9-2.88 2.36-1.49.3-5.44.68-8.18-.4.6.71 1.68 1 3.08 1.05l4.24.16c.91.04 3.8.02 3.82-2.42"
1611
+ }),
1612
+ /* @__PURE__ */ t("path", {
1613
+ fill: "url(#paint26_linear_15759_16949)",
1614
+ d: "M32.76 29.52c0-1.02-.77-2.35-2.4-2.4-1.66-.05-2.52-.02-3.47-.13-1.14-.14-1.67-.12-2.24-.13-.43-.02-1.5.11-2.21.56.8.29 2.13.7 3.99.59 4.46-.29 5.73.25 6.33 1.51"
1615
+ }),
1616
+ /* @__PURE__ */ t("path", {
1617
+ fill: "url(#paint27_linear_15759_16949)",
1618
+ d: "M23.7 22.25c-.96-.02-2.46.54-2.5 2.51s1.68 2.44 2.44 2.46c.76.01 3.42.2 6.69.26s3.71-1.7 3.73-2.62-.56-2.58-2.53-2.62c-5.7-.12-7.84.01-7.84.01"
1619
+ }),
1620
+ /* @__PURE__ */ t("path", {
1621
+ fill: "url(#paint28_linear_15759_16949)",
1622
+ d: "M24.2 22.82c-.82-.01-2.13.41-2.16 1.93-.03 1.53 1.47 1.9 2.13 1.9.66.02 2.97.16 5.81.22 2.85.06 3.23-1.3 3.24-2.01s-.08-2-1.8-2.03c-4.95-.1-7.22 0-7.22 0"
1623
+ }),
1624
+ /* @__PURE__ */ t("path", {
1625
+ fill: "url(#paint29_linear_15759_16949)",
1626
+ d: "M23.23 24.57c.1-2.02 1.51-2.03 3.1-2.38-1.86.01-2.64.06-2.64.06-.95-.02-2.45.54-2.5 2.51-.03 1.97 1.7 2.44 2.45 2.46q.44 0 1.5.06c-1.05-.43-1.98-1.22-1.9-2.7"
1627
+ }),
1628
+ /* @__PURE__ */ t("path", {
1629
+ fill: "url(#paint30_radial_15759_16949)",
1630
+ d: "M32.4 24.78c.06 1.61-1.73 1.92-3.43 2s-3.6-.78-3.66-1.92c-.05-1.14.73-2 3.62-2.15 1.7-.08 3.38 0 3.46 2.07"
1631
+ }),
1632
+ /* @__PURE__ */ t("path", {
1633
+ fill: "url(#paint31_linear_15759_16949)",
1634
+ d: "M23.52 22.25c-.95.05-2.29.66-2.32 2.51-.04 1.87 1.52 2.4 2.32 2.45-3.12-1.26-2.1-4.77 0-4.96"
1635
+ }),
1636
+ /* @__PURE__ */ t("path", {
1637
+ fill: "url(#paint32_linear_15759_16949)",
1638
+ d: "M34.06 24.67c-.41 2.91-8.12 2.38-12.29 1.75.57.6 1.4.79 1.87.8.76.01 3.42.2 6.69.26s3.71-1.7 3.73-2.62z"
1639
+ }),
1640
+ /* @__PURE__ */ t("path", {
1641
+ fill: "url(#paint33_linear_15759_16949)",
1642
+ d: "M30.2 31.16c-1.5.07-5.45.56-8.33-.99.33.6.95 1.1 1.98 1.29 2.33.4 6.21.62 7.66.08.65-.25 1.22-.92 1.25-1.95-.1.9-.95 1.5-2.56 1.57"
1643
+ }),
1644
+ /* @__PURE__ */ t("path", {
1645
+ fill: "url(#paint34_linear_15759_16949)",
1646
+ d: "M30.7 34.4c-.98.74-2.67 1.18-5.1.77-1.52-.25-2.55-.34-3.23-.36.27.5.8.85 1.77 1.04 1.74.33 4.51.05 5.56-.28q.79-.26 1-1.17"
1647
+ }),
1648
+ /* @__PURE__ */ t("path", {
1649
+ fill: "url(#paint35_linear_15759_16949)",
1650
+ d: "M22.42 32.38c1.81-.65 2.7.32 4.63.32 2 0 2.97-.8 3.68-.04-.22-.7-.87-.85-1.55-.85-.86 0-1.9.15-2.49.12-1.65-.08-1.98-.38-2.78-.38-.52 0-1.13.3-1.49.83"
1651
+ }),
1652
+ /* @__PURE__ */ t("path", {
1653
+ fill: "url(#paint36_linear_15759_16949)",
1654
+ d: "M7.37 33.63c1.39-.19 4.55-.57 5.06-.57-4.6-3.28-2.55-10.26-.86-13.8q.36-.73.47-1.24c-1.53 1.17-2.94.83-4.8.67-2.78-.24-1.84 15.21.13 14.94"
1655
+ }),
1656
+ /* @__PURE__ */ t("path", {
1657
+ fill: "url(#paint37_linear_15759_16949)",
1658
+ d: "M10.26 30.46c-.48-.63-.06.73.32 1.71.32.84-2.16.34-4.05.55.24.61.53.96.84.91 1.39-.19 4.55-.57 5.06-.57-.72-.6-1.7-1.96-2.17-2.6"
1659
+ }),
1660
+ /* @__PURE__ */ t("path", {
1661
+ fill: "url(#paint38_linear_15759_16949)",
1662
+ d: "M12.43 33.07c-.4-.34-.87-.9-1.3-1.45 0 0-2.3 1.18-4.77.62.28.9.62 1.45 1 1.4a95 95 0 0 1 5.07-.57"
1663
+ }),
1664
+ /* @__PURE__ */ t("path", {
1665
+ fill: "url(#paint39_radial_15759_16949)",
1666
+ d: "M21.16 9.94c-.9.2-1.64-1.05-2.05-2.5-.34-1.19.12-2.7 1-2.88.9-.17 1.71-.17 2.2 2.35.29 1.48-.27 2.84-1.15 3.03"
1667
+ }),
1668
+ /* @__PURE__ */ t("path", {
1669
+ fill: "#804b24",
1670
+ d: "M23.87 31.55c-.5.06-.94.32-1.25.69s-.46.85-.43 1.33c0 .5.08.99.35 1.38.28.4.74.64 1.2.8-.48-.1-.98-.3-1.3-.72s-.4-.96-.42-1.45c-.02-.51.14-1.05.5-1.43.35-.37.85-.6 1.35-.6M23.08 27.14q-.5.21-.88.57a2 2 0 0 0-.48.9c-.12.6-.02 1.25.33 1.75s.91.84 1.51 1.04a2.6 2.6 0 0 1-1.62-.96q-.3-.4-.4-.9-.08-.48.03-.96.14-.56.56-.94.42-.35.95-.5M23.52 22.25a2.6 2.6 0 0 0-1.56.72c-.4.41-.63.98-.66 1.56-.06.57.03 1.17.36 1.65.32.47.85.8 1.42.96-.58-.1-1.16-.4-1.53-.89a2.5 2.5 0 0 1-.42-1.74c.05-.6.29-1.21.74-1.63a2.5 2.5 0 0 1 1.65-.63M24.04 17.03c-.63.17-1.26.4-1.75.82-.5.4-.77 1.03-.73 1.67 0 .63.2 1.28.69 1.7.47.43 1.11.64 1.75.77a3.4 3.4 0 0 1-1.84-.67 2.3 2.3 0 0 1-.76-1.8 2.1 2.1 0 0 1 .81-1.77c.54-.41 1.19-.6 1.83-.72"
1671
+ }),
1672
+ /* @__PURE__ */ t("path", {
1673
+ fill: "#804b24",
1674
+ d: "M21.87 30.17a2.8 2.8 0 0 0 2.09 1.25q1.25.2 2.51.27 1.28.12 2.54.11.63 0 1.26-.05c.42-.04.84-.08 1.25-.21-.8.3-1.67.34-2.51.37q-1.28.03-2.55-.05-1.26-.11-2.52-.33-.65-.1-1.2-.43a2.3 2.3 0 0 1-.87-.93M21.77 26.42q.5.48 1.18.64c.43.13.89.1 1.34.13l2.73.08 2.73.13c.9.06 1.83.07 2.7-.23-.85.36-1.8.39-2.7.34l-2.73-.08-2.73-.13c-.45-.03-.92-.01-1.36-.16a2.6 2.6 0 0 1-1.16-.72M31.53 22.24q-.98.01-1.96.01H27.6l-1.96.03q-.97-.01-1.95.04c-.65-.02-1.32.2-1.78.66-.47.46-.7 1.12-.72 1.78q0-.5.14-.98.16-.49.52-.86a2.6 2.6 0 0 1 1.83-.73q1.95-.1 3.92-.06 1.95.01 3.92.1"
1675
+ }),
1676
+ /* @__PURE__ */ n("defs", { children: [
1677
+ /* @__PURE__ */ n("linearGradient", {
1678
+ id: "paint0_linear_15759_16949",
1679
+ x1: 26.83,
1680
+ x2: 17.31,
1681
+ y1: 19.63,
1682
+ y2: 20.01,
1683
+ gradientUnits: "userSpaceOnUse",
1684
+ children: [/* @__PURE__ */ t("stop", {
1685
+ offset: 0,
1686
+ stopColor: "#ffcb4b"
1687
+ }), /* @__PURE__ */ t("stop", {
1688
+ offset: 1,
1689
+ stopColor: "#ffd748"
1690
+ })]
1691
+ }),
1692
+ /* @__PURE__ */ n("linearGradient", {
1693
+ id: "paint1_linear_15759_16949",
1694
+ x1: 16.56,
1695
+ x2: 16.37,
1696
+ y1: 32.83,
1697
+ y2: 27.83,
1698
+ gradientUnits: "userSpaceOnUse",
1699
+ children: [/* @__PURE__ */ t("stop", {
1700
+ offset: 0,
1701
+ stopColor: "#ffcb4b"
1702
+ }), /* @__PURE__ */ t("stop", {
1703
+ offset: 1,
1704
+ stopColor: "#ffd748"
1705
+ })]
1706
+ }),
1707
+ /* @__PURE__ */ n("linearGradient", {
1708
+ id: "paint2_linear_15759_16949",
1709
+ x1: 15.34,
1710
+ x2: 22.51,
1711
+ y1: 13.98,
1712
+ y2: 24.24,
1713
+ gradientUnits: "userSpaceOnUse",
1714
+ children: [/* @__PURE__ */ t("stop", {
1715
+ offset: 0,
1716
+ stopColor: "#ffcb4b"
1717
+ }), /* @__PURE__ */ t("stop", {
1718
+ offset: 1,
1719
+ stopColor: "#ffd748"
1720
+ })]
1721
+ }),
1722
+ /* @__PURE__ */ n("linearGradient", {
1723
+ id: "paint3_linear_15759_16949",
1724
+ x1: 10.15,
1725
+ x2: 28.52,
1726
+ y1: 9.9,
1727
+ y2: 11.27,
1728
+ gradientUnits: "userSpaceOnUse",
1729
+ children: [/* @__PURE__ */ t("stop", {
1730
+ offset: .31,
1731
+ stopColor: "#ffbc47",
1732
+ stopOpacity: 0
1733
+ }), /* @__PURE__ */ t("stop", {
1734
+ offset: 1,
1735
+ stopColor: "#ff8900"
1736
+ })]
1737
+ }),
1738
+ /* @__PURE__ */ n("linearGradient", {
1739
+ id: "paint4_linear_15759_16949",
1740
+ x1: 9.8,
1741
+ x2: 33.92,
1742
+ y1: 26.23,
1743
+ y2: 26.23,
1744
+ gradientUnits: "userSpaceOnUse",
1745
+ children: [/* @__PURE__ */ t("stop", {
1746
+ stopColor: "#ffbc47",
1747
+ stopOpacity: 0
1748
+ }), /* @__PURE__ */ t("stop", {
1749
+ offset: 1,
1750
+ stopColor: "#ffa754"
1751
+ })]
1752
+ }),
1753
+ /* @__PURE__ */ n("linearGradient", {
1754
+ id: "paint5_linear_15759_16949",
1755
+ x1: 5.91,
1756
+ x2: 53.56,
1757
+ y1: 26.27,
1758
+ y2: 27.79,
1759
+ gradientUnits: "userSpaceOnUse",
1760
+ children: [/* @__PURE__ */ t("stop", {
1761
+ stopColor: "#ffbc47",
1762
+ stopOpacity: 0
1763
+ }), /* @__PURE__ */ t("stop", {
1764
+ offset: 1,
1765
+ stopColor: "#c86f34"
1766
+ })]
1767
+ }),
1768
+ /* @__PURE__ */ n("linearGradient", {
1769
+ id: "paint6_linear_15759_16949",
1770
+ x1: 13.48,
1771
+ x2: 21.36,
1772
+ y1: 32.5,
1773
+ y2: 28.22,
1774
+ gradientUnits: "userSpaceOnUse",
1775
+ children: [/* @__PURE__ */ t("stop", {
1776
+ stopColor: "#ffbc47",
1777
+ stopOpacity: 0
1778
+ }), /* @__PURE__ */ t("stop", {
1779
+ offset: 1,
1780
+ stopColor: "#c86f34"
1781
+ })]
1782
+ }),
1783
+ /* @__PURE__ */ n("linearGradient", {
1784
+ id: "paint7_linear_15759_16949",
1785
+ x1: 22.51,
1786
+ x2: 29.08,
1787
+ y1: 26.43,
1788
+ y2: 25.57,
1789
+ gradientUnits: "userSpaceOnUse",
1790
+ children: [/* @__PURE__ */ t("stop", {
1791
+ stopColor: "#643800",
1792
+ stopOpacity: 0
1793
+ }), /* @__PURE__ */ t("stop", {
1794
+ offset: 1,
1795
+ stopColor: "#643800"
1796
+ })]
1797
+ }),
1798
+ /* @__PURE__ */ n("linearGradient", {
1799
+ id: "paint8_linear_15759_16949",
1800
+ x1: 10.84,
1801
+ x2: 12.27,
1802
+ y1: 11.92,
1803
+ y2: 35.53,
1804
+ gradientUnits: "userSpaceOnUse",
1805
+ children: [/* @__PURE__ */ t("stop", {
1806
+ stopColor: "#ffbc47",
1807
+ stopOpacity: 0
1808
+ }), /* @__PURE__ */ t("stop", {
1809
+ offset: 1,
1810
+ stopColor: "#ffa754"
1811
+ })]
1812
+ }),
1813
+ /* @__PURE__ */ n("linearGradient", {
1814
+ id: "paint9_linear_15759_16949",
1815
+ x1: 32.66,
1816
+ x2: 23.34,
1817
+ y1: 19.5,
1818
+ y2: 19.5,
1819
+ gradientUnits: "userSpaceOnUse",
1820
+ children: [/* @__PURE__ */ t("stop", {
1821
+ offset: 0,
1822
+ stopColor: "#ffbc47"
1823
+ }), /* @__PURE__ */ t("stop", {
1824
+ offset: 1,
1825
+ stopColor: "#ffd748"
1826
+ })]
1827
+ }),
1828
+ /* @__PURE__ */ n("linearGradient", {
1829
+ id: "paint10_linear_15759_16949",
1830
+ x1: 32.66,
1831
+ x2: 23.33,
1832
+ y1: 29.36,
1833
+ y2: 29.36,
1834
+ gradientUnits: "userSpaceOnUse",
1835
+ children: [/* @__PURE__ */ t("stop", {
1836
+ offset: 0,
1837
+ stopColor: "#ffbc47"
1838
+ }), /* @__PURE__ */ t("stop", {
1839
+ offset: 1,
1840
+ stopColor: "#ffd748"
1841
+ })]
1842
+ }),
1843
+ /* @__PURE__ */ n("linearGradient", {
1844
+ id: "paint11_linear_15759_16949",
1845
+ x1: 32.66,
1846
+ x2: 23.34,
1847
+ y1: 33.78,
1848
+ y2: 33.78,
1849
+ gradientUnits: "userSpaceOnUse",
1850
+ children: [/* @__PURE__ */ t("stop", {
1851
+ offset: 0,
1852
+ stopColor: "#ffbc47"
1853
+ }), /* @__PURE__ */ t("stop", {
1854
+ offset: 1,
1855
+ stopColor: "#ffd748"
1856
+ })]
1857
+ }),
1858
+ /* @__PURE__ */ n("linearGradient", {
1859
+ id: "paint12_linear_15759_16949",
1860
+ x1: 22.08,
1861
+ x2: 26.94,
1862
+ y1: 19.55,
1863
+ y2: 19.44,
1864
+ gradientUnits: "userSpaceOnUse",
1865
+ children: [/* @__PURE__ */ t("stop", {
1866
+ offset: 0,
1867
+ stopColor: "#ffcb4b"
1868
+ }), /* @__PURE__ */ t("stop", {
1869
+ offset: 1,
1870
+ stopColor: "#ffd748"
1871
+ })]
1872
+ }),
1873
+ /* @__PURE__ */ n("linearGradient", {
1874
+ id: "paint13_linear_15759_16949",
1875
+ x1: 30.58,
1876
+ x2: 25.62,
1877
+ y1: 29.42,
1878
+ y2: 29.42,
1879
+ gradientUnits: "userSpaceOnUse",
1880
+ children: [/* @__PURE__ */ t("stop", {
1881
+ offset: 0,
1882
+ stopColor: "#ffcb4b"
1883
+ }), /* @__PURE__ */ t("stop", {
1884
+ offset: 1,
1885
+ stopColor: "#ffd748"
1886
+ })]
1887
+ }),
1888
+ /* @__PURE__ */ n("linearGradient", {
1889
+ id: "paint14_linear_15759_16949",
1890
+ x1: 30.58,
1891
+ x2: 25.62,
1892
+ y1: 33.78,
1893
+ y2: 33.78,
1894
+ gradientUnits: "userSpaceOnUse",
1895
+ children: [/* @__PURE__ */ t("stop", {
1896
+ offset: 0,
1897
+ stopColor: "#ffcb4b"
1898
+ }), /* @__PURE__ */ t("stop", {
1899
+ offset: 1,
1900
+ stopColor: "#ffd748"
1901
+ })]
1902
+ }),
1903
+ /* @__PURE__ */ n("linearGradient", {
1904
+ id: "paint15_linear_15759_16949",
1905
+ x1: 24.53,
1906
+ x2: 21.89,
1907
+ y1: 19.44,
1908
+ y2: 19.44,
1909
+ gradientUnits: "userSpaceOnUse",
1910
+ children: [/* @__PURE__ */ t("stop", {
1911
+ offset: 0,
1912
+ stopColor: "#fba23b",
1913
+ stopOpacity: 0
1914
+ }), /* @__PURE__ */ t("stop", {
1915
+ offset: 1,
1916
+ stopColor: "#fba23b"
1917
+ })]
1918
+ }),
1919
+ /* @__PURE__ */ n("linearGradient", {
1920
+ id: "paint16_linear_15759_16949",
1921
+ x1: 24.06,
1922
+ x2: 21.02,
1923
+ y1: 19.51,
1924
+ y2: 19.51,
1925
+ gradientUnits: "userSpaceOnUse",
1926
+ children: [/* @__PURE__ */ t("stop", {
1927
+ offset: 0,
1928
+ stopColor: "#ffbc47"
1929
+ }), /* @__PURE__ */ t("stop", {
1930
+ offset: 1,
1931
+ stopColor: "#e89043"
1932
+ })]
1933
+ }),
1934
+ /* @__PURE__ */ n("linearGradient", {
1935
+ id: "paint21_linear_15759_16949",
1936
+ x1: 24.85,
1937
+ x2: 21.02,
1938
+ y1: 29.31,
1939
+ y2: 29.31,
1940
+ gradientUnits: "userSpaceOnUse",
1941
+ children: [/* @__PURE__ */ t("stop", {
1942
+ offset: 0,
1943
+ stopColor: "#fba23b",
1944
+ stopOpacity: 0
1945
+ }), /* @__PURE__ */ t("stop", {
1946
+ offset: 1,
1947
+ stopColor: "#fba23b"
1948
+ })]
1949
+ }),
1950
+ /* @__PURE__ */ n("linearGradient", {
1951
+ id: "paint22_linear_15759_16949",
1952
+ x1: 24.03,
1953
+ x2: 21.97,
1954
+ y1: 29.17,
1955
+ y2: 29.17,
1956
+ gradientUnits: "userSpaceOnUse",
1957
+ children: [/* @__PURE__ */ t("stop", {
1958
+ offset: 0,
1959
+ stopColor: "#ffbc47"
1960
+ }), /* @__PURE__ */ t("stop", {
1961
+ offset: 1,
1962
+ stopColor: "#fba23b"
1963
+ })]
1964
+ }),
1965
+ /* @__PURE__ */ n("linearGradient", {
1966
+ id: "paint23_linear_15759_16949",
1967
+ x1: 24.71,
1968
+ x2: 20.23,
1969
+ y1: 33.8,
1970
+ y2: 32.98,
1971
+ gradientUnits: "userSpaceOnUse",
1972
+ children: [/* @__PURE__ */ t("stop", {
1973
+ offset: 0,
1974
+ stopColor: "#fba23b",
1975
+ stopOpacity: 0
1976
+ }), /* @__PURE__ */ t("stop", {
1977
+ offset: 1,
1978
+ stopColor: "#fba23b"
1979
+ })]
1980
+ }),
1981
+ /* @__PURE__ */ n("linearGradient", {
1982
+ id: "paint24_linear_15759_16949",
1983
+ x1: 24.25,
1984
+ x2: 22.35,
1985
+ y1: 33.66,
1986
+ y2: 33.66,
1987
+ gradientUnits: "userSpaceOnUse",
1988
+ children: [/* @__PURE__ */ t("stop", {
1989
+ offset: 0,
1990
+ stopColor: "#ffbc47"
1991
+ }), /* @__PURE__ */ t("stop", {
1992
+ offset: 1,
1993
+ stopColor: "#fba23b"
1994
+ })]
1995
+ }),
1996
+ /* @__PURE__ */ n("linearGradient", {
1997
+ id: "paint25_linear_15759_16949",
1998
+ x1: 27.26,
1999
+ x2: 28.47,
2000
+ y1: 18.92,
2001
+ y2: 24.74,
2002
+ gradientUnits: "userSpaceOnUse",
2003
+ children: [/* @__PURE__ */ t("stop", {
2004
+ stopColor: "#ffbc47",
2005
+ stopOpacity: 0
2006
+ }), /* @__PURE__ */ t("stop", {
2007
+ offset: 1,
2008
+ stopColor: "#c86f34"
2009
+ })]
2010
+ }),
2011
+ /* @__PURE__ */ n("linearGradient", {
2012
+ id: "paint26_linear_15759_16949",
2013
+ x1: 28.18,
2014
+ x2: 26.87,
2015
+ y1: 30.43,
2016
+ y2: 25.69,
2017
+ gradientUnits: "userSpaceOnUse",
2018
+ children: [/* @__PURE__ */ t("stop", {
2019
+ stopColor: "#ffbc47",
2020
+ stopOpacity: 0
2021
+ }), /* @__PURE__ */ t("stop", {
2022
+ offset: 1,
2023
+ stopColor: "#c86f34"
2024
+ })]
2025
+ }),
2026
+ /* @__PURE__ */ n("linearGradient", {
2027
+ id: "paint27_linear_15759_16949",
2028
+ x1: 32.66,
2029
+ x2: 23.34,
2030
+ y1: 24.83,
2031
+ y2: 24.83,
2032
+ gradientUnits: "userSpaceOnUse",
2033
+ children: [/* @__PURE__ */ t("stop", {
2034
+ offset: 0,
2035
+ stopColor: "#ffbc47"
2036
+ }), /* @__PURE__ */ t("stop", {
2037
+ offset: 1,
2038
+ stopColor: "#ffd748"
2039
+ })]
2040
+ }),
2041
+ /* @__PURE__ */ n("linearGradient", {
2042
+ id: "paint28_linear_15759_16949",
2043
+ x1: 22.96,
2044
+ x2: 30.11,
2045
+ y1: 24.57,
2046
+ y2: 24.84,
2047
+ gradientUnits: "userSpaceOnUse",
2048
+ children: [
2049
+ /* @__PURE__ */ t("stop", {
2050
+ offset: 0,
2051
+ stopColor: "#ffcb4b"
2052
+ }),
2053
+ /* @__PURE__ */ t("stop", {
2054
+ offset: .74,
2055
+ stopColor: "#ffd748"
2056
+ }),
2057
+ /* @__PURE__ */ t("stop", {
2058
+ offset: 1,
2059
+ stopColor: "#ffcb4b"
2060
+ })
2061
+ ]
2062
+ }),
2063
+ /* @__PURE__ */ n("linearGradient", {
2064
+ id: "paint29_linear_15759_16949",
2065
+ x1: 25.75,
2066
+ x2: 20.41,
2067
+ y1: 24.74,
2068
+ y2: 24.74,
2069
+ gradientUnits: "userSpaceOnUse",
2070
+ children: [/* @__PURE__ */ t("stop", {
2071
+ offset: 0,
2072
+ stopColor: "#fba23b",
2073
+ stopOpacity: 0
2074
+ }), /* @__PURE__ */ t("stop", {
2075
+ offset: 1,
2076
+ stopColor: "#fba23b"
2077
+ })]
2078
+ }),
2079
+ /* @__PURE__ */ n("linearGradient", {
2080
+ id: "paint31_linear_15759_16949",
2081
+ x1: 23.27,
2082
+ x2: 21.58,
2083
+ y1: 24.73,
2084
+ y2: 24.73,
2085
+ gradientUnits: "userSpaceOnUse",
2086
+ children: [/* @__PURE__ */ t("stop", {
2087
+ offset: 0,
2088
+ stopColor: "#ffbc47"
2089
+ }), /* @__PURE__ */ t("stop", {
2090
+ offset: 1,
2091
+ stopColor: "#fba23b"
2092
+ })]
2093
+ }),
2094
+ /* @__PURE__ */ n("linearGradient", {
2095
+ id: "paint32_linear_15759_16949",
2096
+ x1: 27.71,
2097
+ x2: 28.72,
2098
+ y1: 24.22,
2099
+ y2: 30.66,
2100
+ gradientUnits: "userSpaceOnUse",
2101
+ children: [/* @__PURE__ */ t("stop", {
2102
+ stopColor: "#ffbc47",
2103
+ stopOpacity: 0
2104
+ }), /* @__PURE__ */ t("stop", {
2105
+ offset: 1,
2106
+ stopColor: "#c86f34"
2107
+ })]
2108
+ }),
2109
+ /* @__PURE__ */ n("linearGradient", {
2110
+ id: "paint33_linear_15759_16949",
2111
+ x1: 27,
2112
+ x2: 29.6,
2113
+ y1: 29.2,
2114
+ y2: 34.84,
2115
+ gradientUnits: "userSpaceOnUse",
2116
+ children: [/* @__PURE__ */ t("stop", {
2117
+ stopColor: "#ffbc47",
2118
+ stopOpacity: 0
2119
+ }), /* @__PURE__ */ t("stop", {
2120
+ offset: 1,
2121
+ stopColor: "#c86f34"
2122
+ })]
2123
+ }),
2124
+ /* @__PURE__ */ n("linearGradient", {
2125
+ id: "paint34_linear_15759_16949",
2126
+ x1: 26.49,
2127
+ x2: 26.87,
2128
+ y1: 34.15,
2129
+ y2: 37.71,
2130
+ gradientUnits: "userSpaceOnUse",
2131
+ children: [/* @__PURE__ */ t("stop", {
2132
+ stopColor: "#ffbc47",
2133
+ stopOpacity: 0
2134
+ }), /* @__PURE__ */ t("stop", {
2135
+ offset: 1,
2136
+ stopColor: "#c86f34"
2137
+ })]
2138
+ }),
2139
+ /* @__PURE__ */ n("linearGradient", {
2140
+ id: "paint35_linear_15759_16949",
2141
+ x1: 26.58,
2142
+ x2: 26.58,
2143
+ y1: 33.61,
2144
+ y2: 31.03,
2145
+ gradientUnits: "userSpaceOnUse",
2146
+ children: [/* @__PURE__ */ t("stop", {
2147
+ stopColor: "#ffbc47",
2148
+ stopOpacity: 0
2149
+ }), /* @__PURE__ */ t("stop", {
2150
+ offset: 1,
2151
+ stopColor: "#c86f34"
2152
+ })]
2153
+ }),
2154
+ /* @__PURE__ */ n("linearGradient", {
2155
+ id: "paint36_linear_15759_16949",
2156
+ x1: 9.18,
2157
+ x2: 1.11,
2158
+ y1: 26.49,
2159
+ y2: 38.69,
2160
+ gradientUnits: "userSpaceOnUse",
2161
+ children: [/* @__PURE__ */ t("stop", {
2162
+ stopColor: "#c86f34",
2163
+ stopOpacity: 0
2164
+ }), /* @__PURE__ */ t("stop", {
2165
+ offset: 1,
2166
+ stopColor: "#c86f34"
2167
+ })]
2168
+ }),
2169
+ /* @__PURE__ */ n("linearGradient", {
2170
+ id: "paint37_linear_15759_16949",
2171
+ x1: 8.65,
2172
+ x2: 9.98,
2173
+ y1: 29.19,
2174
+ y2: 35.13,
2175
+ gradientUnits: "userSpaceOnUse",
2176
+ children: [/* @__PURE__ */ t("stop", {
2177
+ stopColor: "#ffbc47",
2178
+ stopOpacity: 0
2179
+ }), /* @__PURE__ */ t("stop", {
2180
+ offset: 1,
2181
+ stopColor: "#c86f34"
2182
+ })]
2183
+ }),
2184
+ /* @__PURE__ */ n("linearGradient", {
2185
+ id: "paint38_linear_15759_16949",
2186
+ x1: 9.45,
2187
+ x2: 9.26,
2188
+ y1: 30.3,
2189
+ y2: 37.57,
2190
+ gradientUnits: "userSpaceOnUse",
2191
+ children: [/* @__PURE__ */ t("stop", {
2192
+ stopColor: "#ffbc47",
2193
+ stopOpacity: 0
2194
+ }), /* @__PURE__ */ t("stop", {
2195
+ offset: 1,
2196
+ stopColor: "#c86f34"
2197
+ })]
2198
+ }),
2199
+ /* @__PURE__ */ n("radialGradient", {
2200
+ id: "paint17_radial_15759_16949",
2201
+ cx: 0,
2202
+ cy: 0,
2203
+ r: 1,
2204
+ gradientTransform: "rotate(24 -65.8 55.54)scale(3.7 1.72)",
2205
+ gradientUnits: "userSpaceOnUse",
2206
+ children: [/* @__PURE__ */ t("stop", { stopColor: "#fbe07a" }), /* @__PURE__ */ t("stop", {
2207
+ offset: 1,
2208
+ stopColor: "#ffd748",
2209
+ stopOpacity: 0
2210
+ })]
2211
+ }),
2212
+ /* @__PURE__ */ n("radialGradient", {
2213
+ id: "paint18_radial_15759_16949",
2214
+ cx: 0,
2215
+ cy: 0,
2216
+ r: 1,
2217
+ gradientTransform: "matrix(3.17 .11 -.07 2.08 27.92 19.53)",
2218
+ gradientUnits: "userSpaceOnUse",
2219
+ children: [/* @__PURE__ */ t("stop", { stopColor: "#fbe07a" }), /* @__PURE__ */ t("stop", {
2220
+ offset: 1,
2221
+ stopColor: "#ffd748"
2222
+ })]
2223
+ }),
2224
+ /* @__PURE__ */ n("radialGradient", {
2225
+ id: "paint19_radial_15759_16949",
2226
+ cx: 0,
2227
+ cy: 0,
2228
+ r: 1,
2229
+ gradientTransform: "matrix(3.4 0 0 1.84 27.77 29.75)",
2230
+ gradientUnits: "userSpaceOnUse",
2231
+ children: [/* @__PURE__ */ t("stop", { stopColor: "#fbe07a" }), /* @__PURE__ */ t("stop", {
2232
+ offset: 1,
2233
+ stopColor: "#ffd748",
2234
+ stopOpacity: 0
2235
+ })]
2236
+ }),
2237
+ /* @__PURE__ */ n("radialGradient", {
2238
+ id: "paint20_radial_15759_16949",
2239
+ cx: 0,
2240
+ cy: 0,
2241
+ r: 1,
2242
+ gradientTransform: "matrix(3.12 0 0 1.95 26.6 33.88)",
2243
+ gradientUnits: "userSpaceOnUse",
2244
+ children: [/* @__PURE__ */ t("stop", { stopColor: "#fbe07a" }), /* @__PURE__ */ t("stop", {
2245
+ offset: 1,
2246
+ stopColor: "#ffd748",
2247
+ stopOpacity: 0
2248
+ })]
2249
+ }),
2250
+ /* @__PURE__ */ n("radialGradient", {
2251
+ id: "paint30_radial_15759_16949",
2252
+ cx: 0,
2253
+ cy: 0,
2254
+ r: 1,
2255
+ gradientTransform: "matrix(3.49 -.17 .1 2.29 28.85 24.75)",
2256
+ gradientUnits: "userSpaceOnUse",
2257
+ children: [/* @__PURE__ */ t("stop", { stopColor: "#fbe07a" }), /* @__PURE__ */ t("stop", {
2258
+ offset: 1,
2259
+ stopColor: "#ffd748",
2260
+ stopOpacity: 0
2261
+ })]
2262
+ }),
2263
+ /* @__PURE__ */ n("radialGradient", {
2264
+ id: "paint39_radial_15759_16949",
2265
+ cx: 0,
2266
+ cy: 0,
2267
+ r: 1,
2268
+ gradientTransform: "rotate(79 5.98 16.17)scale(3.35 1.96)",
2269
+ gradientUnits: "userSpaceOnUse",
2270
+ children: [/* @__PURE__ */ t("stop", { stopColor: "#fbe07a" }), /* @__PURE__ */ t("stop", {
2271
+ offset: 1,
2272
+ stopColor: "#ffd748",
2273
+ stopOpacity: 0
2274
+ })]
2275
+ })
2276
+ ] })
2277
+ ]
2278
+ }), D = {
2279
+ list: "_list_1yzyr_1",
2280
+ icon: "_icon_1yzyr_7",
2281
+ button: "_button_1yzyr_12"
2282
+ }, O = ({ classNames: e, minLabel: i, maxLabel: a, onChange: o }) => {
2283
+ let c = [[
2284
+ T,
2285
+ 0,
2286
+ i ?? "Thumbs down"
2287
+ ], [
2288
+ E,
2289
+ 1,
2290
+ a ?? "Thumbs up"
2291
+ ]], l = r((e) => {
2292
+ o(Number(e.currentTarget.value));
2293
+ }, [o]);
2294
+ return /* @__PURE__ */ n("div", {
2295
+ className: s(D.base, e?.base),
2296
+ children: [/* @__PURE__ */ t("div", {
2297
+ className: s(D.list, e?.list),
2298
+ children: c.map(([n, r, i]) => /* @__PURE__ */ t("button", {
2299
+ "aria-label": i,
2300
+ className: s(D.button, e?.button),
2301
+ type: "button",
2302
+ value: r,
2303
+ onClick: l,
2304
+ children: /* @__PURE__ */ t(n, {
2305
+ "aria-hidden": "true",
2306
+ className: s(D.icon, e?.icon),
2307
+ width: 32,
2308
+ height: 32
2309
+ })
2310
+ }, r))
2311
+ }), !!i && !!a && /* @__PURE__ */ t(x, {
2312
+ className: s(D.labels, e?.labels),
2313
+ minLabel: i,
2314
+ maxLabel: a,
2315
+ placement: "center"
2316
+ })]
2317
+ });
2318
+ }, k = {
2319
+ base: "_base_113r0_1",
2320
+ rating: "_rating_113r0_5",
2321
+ feedback: "_feedback_113r0_6",
2322
+ success: "_success_113r0_7"
2323
+ }, A = ({ classNames: e, dir: r, scaleStyle: i, question: a, minLabel: o, maxLabel: c, textQuestion: l, textButtonLabel: u, responseType: d, choiceOptions: f, thankYouMessage: p, onScoreSubmit: m, onFeedbackSubmit: h }) => {
2324
+ let { screen: g, onScoreChange: _, onFeedbackChange: b } = y({
2325
+ responseType: d,
2326
+ onScoreSubmit: m,
2327
+ onFeedbackSubmit: h
2328
+ });
2329
+ return /* @__PURE__ */ n(v, {
2330
+ className: k.base,
2331
+ classNames: {
2332
+ ...e?.base,
2333
+ rating: s(k.rating, e?.base?.rating),
2334
+ feedback: s(k.feedback, e?.base?.feedback),
2335
+ success: s(k.success, e?.base?.success)
2336
+ },
2337
+ dir: r,
2338
+ screen: g,
2339
+ question: a,
2340
+ textQuestion: l,
2341
+ textButtonLabel: u,
2342
+ responseType: d,
2343
+ choiceOptions: f,
2344
+ thankYouMessage: p,
2345
+ onFeedback: b,
2346
+ children: [i === "emoji" && /* @__PURE__ */ t(ee, {
2347
+ classNames: e?.scale,
2348
+ minLabel: o,
2349
+ maxLabel: c,
2350
+ onChange: _
2351
+ }), i === "thumbs" && /* @__PURE__ */ t(O, {
2352
+ classNames: e?.scale,
2353
+ minLabel: o,
2354
+ maxLabel: c,
2355
+ onChange: _
2356
+ })]
2357
+ });
2358
+ }, j = (e) => /* @__PURE__ */ n("svg", {
2359
+ xmlns: "http://www.w3.org/2000/svg",
2360
+ width: 40,
2361
+ height: 40,
2362
+ fill: "none",
2363
+ viewBox: "0 0 40 40",
2364
+ ...e,
2365
+ children: [
2366
+ /* @__PURE__ */ t("path", {
2367
+ fill: "url(#paint0_radial_15759_16822)",
2368
+ d: "M20 38a18 18 0 1 0 0-36 18 18 0 0 0 0 36"
2369
+ }),
2370
+ /* @__PURE__ */ t("path", {
2371
+ fill: "url(#paint1_radial_15759_16822)",
2372
+ d: "M20 38a18 18 0 1 0 0-36 18 18 0 0 0 0 36",
2373
+ opacity: .5
2374
+ }),
2375
+ /* @__PURE__ */ t("path", {
2376
+ fill: "url(#paint2_radial_15759_16822)",
2377
+ d: "M19.66 27.32s3.73-.02 5.01 2.95q.14.29.15.6c.04.4-.25.83-.97.56a14 14 0 0 0-4.2-.68c-1.09 0-3.05.23-4.19.68-.7.27-1-.15-.97-.56q.03-.32.15-.6c1.28-2.96 5.02-2.95 5.02-2.95"
2378
+ }),
2379
+ /* @__PURE__ */ t("path", {
2380
+ fill: "url(#paint3_radial_15759_16822)",
2381
+ d: "M14.12 24.56c.96 0 1.74-1.17 1.74-2.62 0-1.44-.78-2.62-1.74-2.62-.95 0-1.73 1.18-1.73 2.62s.78 2.62 1.73 2.62"
2382
+ }),
2383
+ /* @__PURE__ */ t("path", {
2384
+ fill: "url(#paint4_linear_15759_16822)",
2385
+ d: "M13.44 21c1.01 0 1.86 1.04 2.1 2.45q.31-.66.32-1.5c0-1.46-.78-2.63-1.74-2.63-.83 0-1.52.88-1.69 2.06q.46-.37 1-.38"
2386
+ }),
2387
+ /* @__PURE__ */ t("path", {
2388
+ fill: "url(#paint5_linear_15759_16822)",
2389
+ d: "M12.27 15.56c-1.55 0-2.88 1.79-1.14 2.06 1.73.28 4.89 1.77 6.22 2.8.1.12.49.08.46-.23 0-1.18-3.65-4.63-5.54-4.63"
2390
+ }),
2391
+ /* @__PURE__ */ t("path", {
2392
+ fill: "url(#paint6_linear_15759_16822)",
2393
+ d: "M19.66 28.3s3.04-.01 5.11 2.32l-.1-.34c-1.29-2.97-5.02-2.95-5.02-2.95s-3.74-.02-5.02 2.95q-.07.17-.1.34c2.08-2.33 5.13-2.32 5.13-2.32"
2394
+ }),
2395
+ /* @__PURE__ */ t("path", {
2396
+ fill: "url(#paint7_radial_15759_16822)",
2397
+ d: "M25.88 24.56c.95 0 1.73-1.17 1.73-2.62 0-1.44-.78-2.62-1.73-2.62-.96 0-1.74 1.18-1.74 2.62s.78 2.62 1.74 2.62"
2398
+ }),
2399
+ /* @__PURE__ */ t("path", {
2400
+ fill: "url(#paint8_linear_15759_16822)",
2401
+ d: "M26.56 21c-1 0-1.86 1.04-2.1 2.45q-.31-.66-.32-1.5c0-1.46.78-2.63 1.74-2.63.83 0 1.52.88 1.69 2.06a1.6 1.6 0 0 0-1-.38"
2402
+ }),
2403
+ /* @__PURE__ */ t("path", {
2404
+ fill: "url(#paint9_linear_15759_16822)",
2405
+ d: "M27.73 15.56c1.55 0 2.88 1.79 1.14 2.06a18 18 0 0 0-6.22 2.8c-.1.12-.49.08-.46-.23 0-1.18 3.65-4.63 5.54-4.63"
2406
+ }),
2407
+ /* @__PURE__ */ n("defs", { children: [
2408
+ /* @__PURE__ */ n("radialGradient", {
2409
+ id: "paint0_radial_15759_16822",
2410
+ cx: 0,
2411
+ cy: 0,
2412
+ r: 1,
2413
+ gradientTransform: "translate(16.46 12.7)scale(21.71)",
2414
+ gradientUnits: "userSpaceOnUse",
2415
+ children: [/* @__PURE__ */ t("stop", { stopColor: "#ffdf30" }), /* @__PURE__ */ t("stop", {
2416
+ offset: 1,
2417
+ stopColor: "#ffb82e"
2418
+ })]
2419
+ }),
2420
+ /* @__PURE__ */ n("radialGradient", {
2421
+ id: "paint1_radial_15759_16822",
2422
+ cx: 0,
2423
+ cy: 0,
2424
+ r: 1,
2425
+ gradientTransform: "translate(16.46 12.7)scale(17.08)",
2426
+ gradientUnits: "userSpaceOnUse",
2427
+ children: [/* @__PURE__ */ t("stop", { stopColor: "#ffe95f" }), /* @__PURE__ */ t("stop", {
2428
+ offset: 1,
2429
+ stopColor: "#ffbb47",
2430
+ stopOpacity: 0
2431
+ })]
2432
+ }),
2433
+ /* @__PURE__ */ n("radialGradient", {
2434
+ id: "paint2_radial_15759_16822",
2435
+ cx: 0,
2436
+ cy: 0,
2437
+ r: 1,
2438
+ gradientTransform: "matrix(3.94 0 0 2.1 19.65 29.42)",
2439
+ gradientUnits: "userSpaceOnUse",
2440
+ children: [/* @__PURE__ */ t("stop", {
2441
+ offset: 0,
2442
+ stopColor: "#7a4400"
2443
+ }), /* @__PURE__ */ t("stop", {
2444
+ offset: 1,
2445
+ stopColor: "#643800"
2446
+ })]
2447
+ }),
2448
+ /* @__PURE__ */ n("radialGradient", {
2449
+ id: "paint3_radial_15759_16822",
2450
+ cx: 0,
2451
+ cy: 0,
2452
+ r: 1,
2453
+ gradientTransform: "matrix(.7 2.44 -1.58 .46 13.6 22)",
2454
+ gradientUnits: "userSpaceOnUse",
2455
+ children: [/* @__PURE__ */ t("stop", {
2456
+ offset: 0,
2457
+ stopColor: "#7a4400"
2458
+ }), /* @__PURE__ */ t("stop", {
2459
+ offset: 1,
2460
+ stopColor: "#643800"
2461
+ })]
2462
+ }),
2463
+ /* @__PURE__ */ n("radialGradient", {
2464
+ id: "paint7_radial_15759_16822",
2465
+ cx: 0,
2466
+ cy: 0,
2467
+ r: 1,
2468
+ gradientTransform: "rotate(106 4.96 20.92)scale(2.54 1.65)",
2469
+ gradientUnits: "userSpaceOnUse",
2470
+ children: [/* @__PURE__ */ t("stop", {
2471
+ offset: 0,
2472
+ stopColor: "#7a4400"
2473
+ }), /* @__PURE__ */ t("stop", {
2474
+ offset: 1,
2475
+ stopColor: "#643800"
2476
+ })]
2477
+ }),
2478
+ /* @__PURE__ */ n("linearGradient", {
2479
+ id: "paint4_linear_15759_16822",
2480
+ x1: 14.14,
2481
+ x2: 14.14,
2482
+ y1: 20.12,
2483
+ y2: 22.47,
2484
+ gradientUnits: "userSpaceOnUse",
2485
+ children: [/* @__PURE__ */ t("stop", {
2486
+ offset: 0,
2487
+ stopColor: "#3c2200"
2488
+ }), /* @__PURE__ */ t("stop", {
2489
+ offset: 1,
2490
+ stopColor: "#512d00"
2491
+ })]
2492
+ }),
2493
+ /* @__PURE__ */ n("linearGradient", {
2494
+ id: "paint5_linear_15759_16822",
2495
+ x1: 14.06,
2496
+ x2: 14.06,
2497
+ y1: 21.79,
2498
+ y2: 16.35,
2499
+ gradientUnits: "userSpaceOnUse",
2500
+ children: [/* @__PURE__ */ t("stop", {
2501
+ offset: 0,
2502
+ stopColor: "#3c2200"
2503
+ }), /* @__PURE__ */ t("stop", {
2504
+ offset: 1,
2505
+ stopColor: "#643800"
2506
+ })]
2507
+ }),
2508
+ /* @__PURE__ */ n("linearGradient", {
2509
+ id: "paint6_linear_15759_16822",
2510
+ x1: 19.65,
2511
+ x2: 19.65,
2512
+ y1: 26.03,
2513
+ y2: 28.87,
2514
+ gradientUnits: "userSpaceOnUse",
2515
+ children: [/* @__PURE__ */ t("stop", {
2516
+ offset: 0,
2517
+ stopColor: "#3c2200"
2518
+ }), /* @__PURE__ */ t("stop", {
2519
+ offset: 1,
2520
+ stopColor: "#512d00"
2521
+ })]
2522
+ }),
2523
+ /* @__PURE__ */ n("linearGradient", {
2524
+ id: "paint8_linear_15759_16822",
2525
+ x1: 25.86,
2526
+ x2: 25.86,
2527
+ y1: 20.12,
2528
+ y2: 22.47,
2529
+ gradientUnits: "userSpaceOnUse",
2530
+ children: [/* @__PURE__ */ t("stop", {
2531
+ offset: 0,
2532
+ stopColor: "#3c2200"
2533
+ }), /* @__PURE__ */ t("stop", {
2534
+ offset: 1,
2535
+ stopColor: "#512d00"
2536
+ })]
2537
+ }),
2538
+ /* @__PURE__ */ n("linearGradient", {
2539
+ id: "paint9_linear_15759_16822",
2540
+ x1: 25.94,
2541
+ x2: 25.94,
2542
+ y1: 21.79,
2543
+ y2: 16.35,
2544
+ gradientUnits: "userSpaceOnUse",
2545
+ children: [/* @__PURE__ */ t("stop", {
2546
+ offset: 0,
2547
+ stopColor: "#3c2200"
2548
+ }), /* @__PURE__ */ t("stop", {
2549
+ offset: 1,
2550
+ stopColor: "#643800"
2551
+ })]
2552
+ })
2553
+ ] })
2554
+ ]
2555
+ }), M = (e) => /* @__PURE__ */ n("svg", {
2556
+ xmlns: "http://www.w3.org/2000/svg",
2557
+ width: 40,
2558
+ height: 40,
2559
+ fill: "none",
2560
+ viewBox: "0 0 40 40",
2561
+ ...e,
2562
+ children: [
2563
+ /* @__PURE__ */ t("path", {
2564
+ fill: "url(#paint0_radial_15759_16856)",
2565
+ d: "M20 38a18 18 0 1 0 0-36 18 18 0 0 0 0 36"
2566
+ }),
2567
+ /* @__PURE__ */ t("path", {
2568
+ fill: "url(#paint1_radial_15759_16856)",
2569
+ d: "M20 38a18 18 0 1 0 0-36 18 18 0 0 0 0 36",
2570
+ opacity: .5
2571
+ }),
2572
+ /* @__PURE__ */ t("path", {
2573
+ fill: "url(#paint2_radial_15759_16856)",
2574
+ d: "M20 38a18 18 0 1 0 0-36 18 18 0 0 0 0 36"
2575
+ }),
2576
+ /* @__PURE__ */ t("path", {
2577
+ fill: "url(#paint3_radial_15759_16856)",
2578
+ d: "M20 38a18 18 0 1 0 0-36 18 18 0 0 0 0 36"
2579
+ }),
2580
+ /* @__PURE__ */ t("path", {
2581
+ fill: "url(#paint4_radial_15759_16856)",
2582
+ d: "m32.4 25.99.04-.3a.8.8 0 0 0-.55-.74 1 1 0 0 0-.53-.02 42.4 42.4 0 0 1-22.72 0 .85.85 0 0 0-1.08.75q0 .17.04.35l.2.84.17.51c1.26 2.95 4.55 8.13 12.04 8.13s10.77-5.2 12.04-8.14l.15-.45z"
2583
+ }),
2584
+ /* @__PURE__ */ t("path", {
2585
+ fill: "url(#paint5_radial_15759_16856)",
2586
+ d: "M20 34.7c2.9 0 5.13-.84 6.83-2.02A16 16 0 0 0 20 31.25c-2.71 0-4.97.56-6.84 1.44 1.71 1.18 3.94 2 6.84 2"
2587
+ }),
2588
+ /* @__PURE__ */ t("path", {
2589
+ fill: "url(#paint6_linear_15759_16856)",
2590
+ d: "m32.2 26.89.2-.87.03-.34a.85.85 0 0 0-1.08-.75 42.4 42.4 0 0 1-22.72 0 .85.85 0 0 0-1.08.75l.03.35.2.86q.07.23.17.49c.5 1.2 1.35 2.75 2.66 4.17-1.23-1.46.28-2.26 2.99-1.93s6.39.34 6.39.34 3.69-.01 6.39-.34 4.22.48 3 1.93a15 15 0 0 0 2.65-4.17q.1-.26.16-.5"
2591
+ }),
2592
+ /* @__PURE__ */ t("path", {
2593
+ fill: "url(#paint7_radial_15759_16856)",
2594
+ d: "M20 27.3q-5.86 0-11.46-1.55l.04.5c.1.97.8 1.77 1.75 1.98a45 45 0 0 0 20.07-.16c.5-.13.87-.55.93-1.07l.12-1.24A43 43 0 0 1 20 27.3"
2595
+ }),
2596
+ /* @__PURE__ */ t("path", {
2597
+ fill: "url(#paint8_radial_15759_16856)",
2598
+ d: "M12.76 9.6a4 4 0 0 0-2.24 2.86 3.9 3.9 0 0 0-5.58 4.94c1.95 4.33 10.21 5.3 10.21 5.3s4.73-6.83 2.77-11.17a3.9 3.9 0 0 0-5.16-1.94"
2599
+ }),
2600
+ /* @__PURE__ */ t("path", {
2601
+ fill: "url(#paint9_radial_15759_16856)",
2602
+ d: "M14.38 9.25c3.35 2.22 3.4 7.1 1.76 9.23-1.8 2.35-3.7 2.49-7.93 2.1 3.07 1.67 6.94 2.12 6.94 2.12s4.73-6.83 2.77-11.17a3.9 3.9 0 0 0-3.54-2.28",
2603
+ opacity: .5
2604
+ }),
2605
+ /* @__PURE__ */ t("path", {
2606
+ fill: "url(#paint10_radial_15759_16856)",
2607
+ d: "M12.76 9.6a4 4 0 0 0-2.24 2.86 3.9 3.9 0 0 0-5.58 4.94c1.95 4.33 10.21 5.3 10.21 5.3s4.73-6.83 2.77-11.17a3.9 3.9 0 0 0-5.16-1.94",
2608
+ opacity: .5
2609
+ }),
2610
+ /* @__PURE__ */ t("path", {
2611
+ fill: "url(#paint11_radial_15759_16856)",
2612
+ d: "M12.76 9.6a4 4 0 0 0-2.24 2.86 3.9 3.9 0 0 0-5.58 4.94c1.95 4.33 10.21 5.3 10.21 5.3s4.73-6.83 2.77-11.17a3.9 3.9 0 0 0-5.16-1.94",
2613
+ opacity: .5
2614
+ }),
2615
+ /* @__PURE__ */ t("path", {
2616
+ fill: "url(#paint12_radial_15759_16856)",
2617
+ d: "M9.6 12.77c.72.67.45 2.17-.63 3.34S6.43 17.67 5.7 17c-.73-.68-.46-2.17.62-3.34s2.54-1.57 3.28-.9",
2618
+ opacity: .24
2619
+ }),
2620
+ /* @__PURE__ */ t("path", {
2621
+ fill: "url(#paint13_radial_15759_16856)",
2622
+ d: "M13.63 10.12c.76.33.95 1.58.42 2.8-.53 1.2-1.56 1.9-2.33 1.58-.76-.33-.94-1.58-.42-2.8.53-1.2 1.57-1.9 2.33-1.58",
2623
+ opacity: .24
2624
+ }),
2625
+ /* @__PURE__ */ t("path", {
2626
+ fill: "url(#paint14_linear_15759_16856)",
2627
+ d: "M13.25 10.52c2.06-.2 4.96 1.66 3.57 6.25-.84 2.75-2.26 4.6-4.84 5.29 1.79.5 3.18.66 3.18.66s4.73-6.83 2.77-11.17a3.9 3.9 0 0 0-7.4.92s1.21-1.8 2.72-1.95",
2628
+ opacity: .32
2629
+ }),
2630
+ /* @__PURE__ */ t("path", {
2631
+ fill: "url(#paint15_radial_15759_16856)",
2632
+ d: "M33.39 12.23a3.9 3.9 0 0 0-3.64.23 3.91 3.91 0 0 0-7.4-.9c-1.94 4.33 2.81 11.15 2.81 11.15s8.25-.99 10.2-5.33a3.9 3.9 0 0 0-1.97-5.15"
2633
+ }),
2634
+ /* @__PURE__ */ t("path", {
2635
+ fill: "url(#paint16_radial_15759_16856)",
2636
+ d: "M34.73 13.2c.56 3.99-3.07 7.26-5.75 7.45-2.96.22-4.31-1.12-6.83-4.54.77 3.4 3 6.61 3 6.61s8.25-.99 10.2-5.33a3.9 3.9 0 0 0-.62-4.18",
2637
+ opacity: .5
2638
+ }),
2639
+ /* @__PURE__ */ t("path", {
2640
+ fill: "url(#paint17_radial_15759_16856)",
2641
+ d: "M33.39 12.23a3.9 3.9 0 0 0-3.64.23 3.91 3.91 0 0 0-7.4-.9c-1.94 4.33 2.81 11.15 2.81 11.15s8.25-.99 10.2-5.33a3.9 3.9 0 0 0-1.97-5.15",
2642
+ opacity: .5
2643
+ }),
2644
+ /* @__PURE__ */ t("path", {
2645
+ fill: "url(#paint18_radial_15759_16856)",
2646
+ d: "M33.39 12.23a3.9 3.9 0 0 0-3.64.23 3.91 3.91 0 0 0-7.4-.9c-1.94 4.33 2.81 11.15 2.81 11.15s8.25-.99 10.2-5.33a3.9 3.9 0 0 0-1.97-5.15",
2647
+ opacity: .5
2648
+ }),
2649
+ /* @__PURE__ */ t("path", {
2650
+ fill: "url(#paint19_radial_15759_16856)",
2651
+ d: "M28.91 11.96c-.02 1-1.33 1.79-2.91 1.75-1.59-.03-2.86-.86-2.85-1.87.02-1 1.33-1.78 2.91-1.75 1.6.03 2.87.87 2.85 1.87",
2652
+ opacity: .24
2653
+ }),
2654
+ /* @__PURE__ */ t("path", {
2655
+ fill: "url(#paint20_radial_15759_16856)",
2656
+ d: "M33.58 13.23c.26.79-.55 1.75-1.8 2.16-1.25.4-2.48.1-2.73-.69-.26-.79.55-1.75 1.8-2.16 1.24-.41 2.47-.1 2.73.69",
2657
+ opacity: .24
2658
+ }),
2659
+ /* @__PURE__ */ t("path", {
2660
+ fill: "url(#paint21_linear_15759_16856)",
2661
+ d: "M33.03 13.2c1.52 1.4 2.03 4.8-2.32 6.81-2.61 1.2-4.94 1.35-7.17-.11.81 1.66 1.62 2.82 1.62 2.82s8.25-.99 10.2-5.33a3.91 3.91 0 0 0-5.6-4.93s2.17-.29 3.27.73",
2662
+ opacity: .32
2663
+ }),
2664
+ /* @__PURE__ */ n("defs", { children: [
2665
+ /* @__PURE__ */ n("radialGradient", {
2666
+ id: "paint0_radial_15759_16856",
2667
+ cx: 0,
2668
+ cy: 0,
2669
+ r: 1,
2670
+ gradientTransform: "translate(16.46 12.7)scale(21.71)",
2671
+ gradientUnits: "userSpaceOnUse",
2672
+ children: [/* @__PURE__ */ t("stop", { stopColor: "#ffe030" }), /* @__PURE__ */ t("stop", {
2673
+ offset: 1,
2674
+ stopColor: "#ffb92e"
2675
+ })]
2676
+ }),
2677
+ /* @__PURE__ */ n("radialGradient", {
2678
+ id: "paint1_radial_15759_16856",
2679
+ cx: 0,
2680
+ cy: 0,
2681
+ r: 1,
2682
+ gradientTransform: "translate(16.46 12.7)scale(17.08)",
2683
+ gradientUnits: "userSpaceOnUse",
2684
+ children: [/* @__PURE__ */ t("stop", { stopColor: "#ffea5f" }), /* @__PURE__ */ t("stop", {
2685
+ offset: 1,
2686
+ stopColor: "#ffbc47",
2687
+ stopOpacity: 0
2688
+ })]
2689
+ }),
2690
+ /* @__PURE__ */ n("radialGradient", {
2691
+ id: "paint2_radial_15759_16856",
2692
+ cx: 0,
2693
+ cy: 0,
2694
+ r: 1,
2695
+ gradientTransform: "matrix(8.02 5.15 -3.76 5.85 10 20.16)",
2696
+ gradientUnits: "userSpaceOnUse",
2697
+ children: [
2698
+ /* @__PURE__ */ t("stop", {
2699
+ stopColor: "#eb672a",
2700
+ stopOpacity: .5
2701
+ }),
2702
+ /* @__PURE__ */ t("stop", {
2703
+ offset: .43,
2704
+ stopColor: "#dc641b",
2705
+ stopOpacity: .28
2706
+ }),
2707
+ /* @__PURE__ */ t("stop", {
2708
+ offset: .99,
2709
+ stopColor: "#c25e00",
2710
+ stopOpacity: 0
2711
+ })
2712
+ ]
2713
+ }),
2714
+ /* @__PURE__ */ n("radialGradient", {
2715
+ id: "paint3_radial_15759_16856",
2716
+ cx: 0,
2717
+ cy: 0,
2718
+ r: 1,
2719
+ gradientTransform: "rotate(147 12.04 14.48)scale(9.53 6.96)",
2720
+ gradientUnits: "userSpaceOnUse",
2721
+ children: [
2722
+ /* @__PURE__ */ t("stop", {
2723
+ stopColor: "#eb672a",
2724
+ stopOpacity: .5
2725
+ }),
2726
+ /* @__PURE__ */ t("stop", {
2727
+ offset: .43,
2728
+ stopColor: "#dc641b",
2729
+ stopOpacity: .28
2730
+ }),
2731
+ /* @__PURE__ */ t("stop", {
2732
+ offset: .99,
2733
+ stopColor: "#c25e00",
2734
+ stopOpacity: 0
2735
+ })
2736
+ ]
2737
+ }),
2738
+ /* @__PURE__ */ n("radialGradient", {
2739
+ id: "paint4_radial_15759_16856",
2740
+ cx: 0,
2741
+ cy: 0,
2742
+ r: 1,
2743
+ gradientTransform: "translate(20 30.2)scale(9.56)",
2744
+ gradientUnits: "userSpaceOnUse",
2745
+ children: [/* @__PURE__ */ t("stop", {
2746
+ offset: 0,
2747
+ stopColor: "#7a4400"
2748
+ }), /* @__PURE__ */ t("stop", {
2749
+ offset: 1,
2750
+ stopColor: "#643800"
2751
+ })]
2752
+ }),
2753
+ /* @__PURE__ */ n("radialGradient", {
2754
+ id: "paint5_radial_15759_16856",
2755
+ cx: 0,
2756
+ cy: 0,
2757
+ r: 1,
2758
+ gradientTransform: "matrix(7.61 0 0 2.3 20.14 33.39)",
2759
+ gradientUnits: "userSpaceOnUse",
2760
+ children: [/* @__PURE__ */ t("stop", {
2761
+ offset: .25,
2762
+ stopColor: "red"
2763
+ }), /* @__PURE__ */ t("stop", {
2764
+ offset: 1,
2765
+ stopColor: "#c20000"
2766
+ })]
2767
+ }),
2768
+ /* @__PURE__ */ n("radialGradient", {
2769
+ id: "paint7_radial_15759_16856",
2770
+ cx: 0,
2771
+ cy: 0,
2772
+ r: 1,
2773
+ gradientTransform: "translate(20 27.51)scale(20.98)",
2774
+ gradientUnits: "userSpaceOnUse",
2775
+ children: [/* @__PURE__ */ t("stop", {
2776
+ offset: 0,
2777
+ stopColor: "#fff"
2778
+ }), /* @__PURE__ */ t("stop", {
2779
+ offset: 1,
2780
+ stopColor: "#a9bcbe"
2781
+ })]
2782
+ }),
2783
+ /* @__PURE__ */ n("radialGradient", {
2784
+ id: "paint8_radial_15759_16856",
2785
+ cx: 0,
2786
+ cy: 0,
2787
+ r: 1,
2788
+ gradientTransform: "matrix(6.6 -8.99 7.13 5.23 9.46 15.03)",
2789
+ gradientUnits: "userSpaceOnUse",
2790
+ children: [/* @__PURE__ */ t("stop", {
2791
+ offset: .25,
2792
+ stopColor: "red"
2793
+ }), /* @__PURE__ */ t("stop", {
2794
+ offset: .86,
2795
+ stopColor: "#c20000"
2796
+ })]
2797
+ }),
2798
+ /* @__PURE__ */ n("radialGradient", {
2799
+ id: "paint9_radial_15759_16856",
2800
+ cx: 0,
2801
+ cy: 0,
2802
+ r: 1,
2803
+ gradientTransform: "matrix(5.68 -7.74 6.14 4.5 9.43 14.3)",
2804
+ gradientUnits: "userSpaceOnUse",
2805
+ children: [/* @__PURE__ */ t("stop", {
2806
+ offset: .25,
2807
+ stopColor: "red"
2808
+ }), /* @__PURE__ */ t("stop", {
2809
+ offset: 1,
2810
+ stopColor: "#c20000"
2811
+ })]
2812
+ }),
2813
+ /* @__PURE__ */ n("radialGradient", {
2814
+ id: "paint10_radial_15759_16856",
2815
+ cx: 0,
2816
+ cy: 0,
2817
+ r: 1,
2818
+ gradientTransform: "matrix(6.6 -8.99 7.13 5.23 9.46 15.03)",
2819
+ gradientUnits: "userSpaceOnUse",
2820
+ children: [/* @__PURE__ */ t("stop", {
2821
+ stopColor: "#fff",
2822
+ stopOpacity: .25
2823
+ }), /* @__PURE__ */ t("stop", {
2824
+ offset: 1,
2825
+ stopColor: "#fff",
2826
+ stopOpacity: 0
2827
+ })]
2828
+ }),
2829
+ /* @__PURE__ */ n("radialGradient", {
2830
+ id: "paint11_radial_15759_16856",
2831
+ cx: 0,
2832
+ cy: 0,
2833
+ r: 1,
2834
+ gradientTransform: "rotate(-51 25.15 -7.08)scale(8.14 4.02)",
2835
+ gradientUnits: "userSpaceOnUse",
2836
+ children: [/* @__PURE__ */ t("stop", {
2837
+ stopColor: "#bd2719",
2838
+ stopOpacity: .25
2839
+ }), /* @__PURE__ */ t("stop", {
2840
+ offset: 1,
2841
+ stopColor: "#bd2719",
2842
+ stopOpacity: 0
2843
+ })]
2844
+ }),
2845
+ /* @__PURE__ */ n("radialGradient", {
2846
+ id: "paint12_radial_15759_16856",
2847
+ cx: 0,
2848
+ cy: 0,
2849
+ r: 1,
2850
+ gradientTransform: "matrix(2 -2.08 1.3 1.25 7.64 14.9)",
2851
+ gradientUnits: "userSpaceOnUse",
2852
+ children: [/* @__PURE__ */ t("stop", { stopColor: "#fff" }), /* @__PURE__ */ t("stop", {
2853
+ offset: 1,
2854
+ stopColor: "#fff",
2855
+ stopOpacity: 0
2856
+ })]
2857
+ }),
2858
+ /* @__PURE__ */ n("radialGradient", {
2859
+ id: "paint13_radial_15759_16856",
2860
+ cx: 0,
2861
+ cy: 0,
2862
+ r: 1,
2863
+ gradientTransform: "rotate(-65 16 -3.77)scale(2.4 1.49)",
2864
+ gradientUnits: "userSpaceOnUse",
2865
+ children: [/* @__PURE__ */ t("stop", { stopColor: "#fff" }), /* @__PURE__ */ t("stop", {
2866
+ offset: 1,
2867
+ stopColor: "#fff",
2868
+ stopOpacity: 0
2869
+ })]
2870
+ }),
2871
+ /* @__PURE__ */ n("radialGradient", {
2872
+ id: "paint15_radial_15759_16856",
2873
+ cx: 0,
2874
+ cy: 0,
2875
+ r: 1,
2876
+ gradientTransform: "matrix(11.1 -1.02 .81 8.8 27.1 13.36)",
2877
+ gradientUnits: "userSpaceOnUse",
2878
+ children: [/* @__PURE__ */ t("stop", {
2879
+ offset: .25,
2880
+ stopColor: "red"
2881
+ }), /* @__PURE__ */ t("stop", {
2882
+ offset: .86,
2883
+ stopColor: "#c20000"
2884
+ })]
2885
+ }),
2886
+ /* @__PURE__ */ n("radialGradient", {
2887
+ id: "paint16_radial_15759_16856",
2888
+ cx: 0,
2889
+ cy: 0,
2890
+ r: 1,
2891
+ gradientTransform: "matrix(9.56 -.88 .7 7.58 27.64 12.85)",
2892
+ gradientUnits: "userSpaceOnUse",
2893
+ children: [/* @__PURE__ */ t("stop", {
2894
+ offset: .25,
2895
+ stopColor: "red"
2896
+ }), /* @__PURE__ */ t("stop", {
2897
+ offset: 1,
2898
+ stopColor: "#c20000"
2899
+ })]
2900
+ }),
2901
+ /* @__PURE__ */ n("radialGradient", {
2902
+ id: "paint17_radial_15759_16856",
2903
+ cx: 0,
2904
+ cy: 0,
2905
+ r: 1,
2906
+ gradientTransform: "matrix(11.1 -1.02 .81 8.8 27.1 13.36)",
2907
+ gradientUnits: "userSpaceOnUse",
2908
+ children: [/* @__PURE__ */ t("stop", {
2909
+ stopColor: "#fff",
2910
+ stopOpacity: .25
2911
+ }), /* @__PURE__ */ t("stop", {
2912
+ offset: 1,
2913
+ stopColor: "#fff",
2914
+ stopOpacity: 0
2915
+ })]
2916
+ }),
2917
+ /* @__PURE__ */ n("radialGradient", {
2918
+ id: "paint18_radial_15759_16856",
2919
+ cx: 0,
2920
+ cy: 0,
2921
+ r: 1,
2922
+ gradientTransform: "matrix(8.13 -.3 .15 4.02 29.22 18.45)",
2923
+ gradientUnits: "userSpaceOnUse",
2924
+ children: [/* @__PURE__ */ t("stop", {
2925
+ stopColor: "#bd2719",
2926
+ stopOpacity: .25
2927
+ }), /* @__PURE__ */ t("stop", {
2928
+ offset: 1,
2929
+ stopColor: "#bd2719",
2930
+ stopOpacity: 0
2931
+ })]
2932
+ }),
2933
+ /* @__PURE__ */ n("radialGradient", {
2934
+ id: "paint19_radial_15759_16856",
2935
+ cx: 0,
2936
+ cy: 0,
2937
+ r: 1,
2938
+ gradientTransform: "matrix(2.89 .12 -.08 1.8 26.04 11.91)",
2939
+ gradientUnits: "userSpaceOnUse",
2940
+ children: [/* @__PURE__ */ t("stop", { stopColor: "#fff" }), /* @__PURE__ */ t("stop", {
2941
+ offset: 1,
2942
+ stopColor: "#fff",
2943
+ stopOpacity: 0
2944
+ })]
2945
+ }),
2946
+ /* @__PURE__ */ n("radialGradient", {
2947
+ id: "paint20_radial_15759_16856",
2948
+ cx: 0,
2949
+ cy: 0,
2950
+ r: 1,
2951
+ gradientTransform: "matrix(2.3 -.69 .43 1.43 31.33 13.96)",
2952
+ gradientUnits: "userSpaceOnUse",
2953
+ children: [/* @__PURE__ */ t("stop", { stopColor: "#fff" }), /* @__PURE__ */ t("stop", {
2954
+ offset: 1,
2955
+ stopColor: "#fff",
2956
+ stopOpacity: 0
2957
+ })]
2958
+ }),
2959
+ /* @__PURE__ */ n("linearGradient", {
2960
+ id: "paint6_linear_15759_16856",
2961
+ x1: 32.3,
2962
+ x2: 7.85,
2963
+ y1: 28.23,
2964
+ y2: 28.23,
2965
+ gradientUnits: "userSpaceOnUse",
2966
+ children: [
2967
+ /* @__PURE__ */ t("stop", {
2968
+ offset: 0,
2969
+ stopColor: "#3c2200"
2970
+ }),
2971
+ /* @__PURE__ */ t("stop", {
2972
+ offset: .5,
2973
+ stopColor: "#512d00"
2974
+ }),
2975
+ /* @__PURE__ */ t("stop", {
2976
+ offset: 1,
2977
+ stopColor: "#3c2200"
2978
+ })
2979
+ ]
2980
+ }),
2981
+ /* @__PURE__ */ n("linearGradient", {
2982
+ id: "paint14_linear_15759_16856",
2983
+ x1: 18.6,
2984
+ x2: 12.19,
2985
+ y1: 26.74,
2986
+ y2: 9.21,
2987
+ gradientUnits: "userSpaceOnUse",
2988
+ children: [/* @__PURE__ */ t("stop", { stopColor: "#860805" }), /* @__PURE__ */ t("stop", {
2989
+ offset: 1,
2990
+ stopColor: "#bd2719",
2991
+ stopOpacity: 0
2992
+ })]
2993
+ }),
2994
+ /* @__PURE__ */ n("linearGradient", {
2995
+ id: "paint21_linear_15759_16856",
2996
+ x1: 24.43,
2997
+ x2: 33.3,
2998
+ y1: 27.96,
2999
+ y2: 11.54,
3000
+ gradientUnits: "userSpaceOnUse",
3001
+ children: [/* @__PURE__ */ t("stop", { stopColor: "#860805" }), /* @__PURE__ */ t("stop", {
3002
+ offset: 1,
3003
+ stopColor: "#bd2719",
3004
+ stopOpacity: 0
3005
+ })]
3006
+ })
3007
+ ] })
3008
+ ]
3009
+ }), N = (e) => /* @__PURE__ */ n("svg", {
3010
+ xmlns: "http://www.w3.org/2000/svg",
3011
+ width: 40,
3012
+ height: 40,
3013
+ fill: "none",
3014
+ viewBox: "0 0 40 40",
3015
+ ...e,
3016
+ children: [
3017
+ /* @__PURE__ */ t("path", {
3018
+ fill: "url(#paint0_radial_15759_16937)",
3019
+ d: "M20 38a18 18 0 1 0 0-36 18 18 0 0 0 0 36"
3020
+ }),
3021
+ /* @__PURE__ */ t("path", {
3022
+ fill: "url(#paint1_radial_15759_16937)",
3023
+ d: "M20 38a18 18 0 1 0 0-36 18 18 0 0 0 0 36",
3024
+ opacity: .5
3025
+ }),
3026
+ /* @__PURE__ */ t("path", {
3027
+ fill: "url(#paint2_linear_15759_16937)",
3028
+ d: "M16.75 12.13c.11-.86-.6-1.5-1.92-1.67-1.14-.15-3.72.28-5.76 2.7-.39.45.06.78.42.5 1.2-.93 4.19-1.94 6.35-1.37.86.22.9-.16.9-.16"
3029
+ }),
3030
+ /* @__PURE__ */ t("path", {
3031
+ fill: "url(#paint3_radial_15759_16937)",
3032
+ d: "M14.13 20.76c.95 0 1.73-1.17 1.73-2.62 0-1.44-.78-2.62-1.73-2.62-.96 0-1.74 1.18-1.74 2.62s.78 2.62 1.74 2.62"
3033
+ }),
3034
+ /* @__PURE__ */ t("path", {
3035
+ fill: "url(#paint4_linear_15759_16937)",
3036
+ d: "M14.13 16.41c.74 0 1.4.65 1.73 1.61-.02-1.42-.79-2.55-1.73-2.55-.95 0-1.71 1.13-1.74 2.55.34-.96.98-1.6 1.74-1.6"
3037
+ }),
3038
+ /* @__PURE__ */ t("path", {
3039
+ fill: "url(#paint5_radial_15759_16937)",
3040
+ d: "M25.87 20.76c.96 0 1.74-1.17 1.74-2.62 0-1.44-.78-2.62-1.74-2.62-.95 0-1.73 1.18-1.73 2.62s.78 2.62 1.73 2.62"
3041
+ }),
3042
+ /* @__PURE__ */ t("path", {
3043
+ fill: "url(#paint6_linear_15759_16937)",
3044
+ d: "M25.87 16.48c-.74 0-1.4.65-1.73 1.6.02-1.41.79-2.55 1.73-2.55.95 0 1.71 1.14 1.74 2.56-.34-.96-.98-1.61-1.74-1.61"
3045
+ }),
3046
+ /* @__PURE__ */ t("path", {
3047
+ fill: "url(#paint7_linear_15759_16937)",
3048
+ d: "M23.25 12.13c-.11-.86.6-1.5 1.92-1.67 1.14-.15 3.72.28 5.76 2.7.39.45-.06.78-.42.5-1.2-.93-4.19-1.94-6.35-1.37-.86.22-.9-.16-.9-.16"
3049
+ }),
3050
+ /* @__PURE__ */ t("path", {
3051
+ fill: "url(#paint8_radial_15759_16937)",
3052
+ d: "M27.58 27.85H12.42a.85.85 0 0 1-.85-.84c0-.46.39-.85.85-.85h15.16c.46 0 .85.39.85.85s-.39.84-.85.84"
3053
+ }),
3054
+ /* @__PURE__ */ t("path", {
3055
+ fill: "url(#paint9_linear_15759_16937)",
3056
+ d: "M12.34 26.62h15.33c.33 0 .62.19.76.46V27a.85.85 0 0 0-.85-.85H12.42a.85.85 0 0 0-.85.85v.07a.9.9 0 0 1 .77-.46"
3057
+ }),
3058
+ /* @__PURE__ */ n("defs", { children: [
3059
+ /* @__PURE__ */ n("radialGradient", {
3060
+ id: "paint0_radial_15759_16937",
3061
+ cx: 0,
3062
+ cy: 0,
3063
+ r: 1,
3064
+ gradientTransform: "translate(16.46 12.7)scale(21.71)",
3065
+ gradientUnits: "userSpaceOnUse",
3066
+ children: [/* @__PURE__ */ t("stop", { stopColor: "#ffe030" }), /* @__PURE__ */ t("stop", {
3067
+ offset: 1,
3068
+ stopColor: "#ffb92e"
3069
+ })]
3070
+ }),
3071
+ /* @__PURE__ */ n("radialGradient", {
3072
+ id: "paint1_radial_15759_16937",
3073
+ cx: 0,
3074
+ cy: 0,
3075
+ r: 1,
3076
+ gradientTransform: "translate(16.46 12.7)scale(17.08)",
3077
+ gradientUnits: "userSpaceOnUse",
3078
+ children: [/* @__PURE__ */ t("stop", { stopColor: "#ffea5f" }), /* @__PURE__ */ t("stop", {
3079
+ offset: 1,
3080
+ stopColor: "#ffbc47",
3081
+ stopOpacity: 0
3082
+ })]
3083
+ }),
3084
+ /* @__PURE__ */ n("radialGradient", {
3085
+ id: "paint3_radial_15759_16937",
3086
+ cx: 0,
3087
+ cy: 0,
3088
+ r: 1,
3089
+ gradientTransform: "matrix(.7 2.44 -1.58 .46 13.6 18.21)",
3090
+ gradientUnits: "userSpaceOnUse",
3091
+ children: [/* @__PURE__ */ t("stop", {
3092
+ offset: 0,
3093
+ stopColor: "#7a4400"
3094
+ }), /* @__PURE__ */ t("stop", {
3095
+ offset: 1,
3096
+ stopColor: "#643800"
3097
+ })]
3098
+ }),
3099
+ /* @__PURE__ */ n("radialGradient", {
3100
+ id: "paint5_radial_15759_16937",
3101
+ cx: 0,
3102
+ cy: 0,
3103
+ r: 1,
3104
+ gradientTransform: "rotate(74 .56 25.97)scale(2.54 1.65)",
3105
+ gradientUnits: "userSpaceOnUse",
3106
+ children: [/* @__PURE__ */ t("stop", {
3107
+ offset: 0,
3108
+ stopColor: "#7a4400"
3109
+ }), /* @__PURE__ */ t("stop", {
3110
+ offset: 1,
3111
+ stopColor: "#643800"
3112
+ })]
3113
+ }),
3114
+ /* @__PURE__ */ n("radialGradient", {
3115
+ id: "paint8_radial_15759_16937",
3116
+ cx: 0,
3117
+ cy: 0,
3118
+ r: 1,
3119
+ gradientTransform: "matrix(5.99 0 0 1.08 20 27)",
3120
+ gradientUnits: "userSpaceOnUse",
3121
+ children: [/* @__PURE__ */ t("stop", {
3122
+ offset: 0,
3123
+ stopColor: "#7a4400"
3124
+ }), /* @__PURE__ */ t("stop", {
3125
+ offset: 1,
3126
+ stopColor: "#643800"
3127
+ })]
3128
+ }),
3129
+ /* @__PURE__ */ n("linearGradient", {
3130
+ id: "paint2_linear_15759_16937",
3131
+ x1: 12.8,
3132
+ x2: 13.09,
3133
+ y1: 13.08,
3134
+ y2: 10.82,
3135
+ gradientUnits: "userSpaceOnUse",
3136
+ children: [/* @__PURE__ */ t("stop", {
3137
+ offset: 0,
3138
+ stopColor: "#3c2200"
3139
+ }), /* @__PURE__ */ t("stop", {
3140
+ offset: 1,
3141
+ stopColor: "#7a4400"
3142
+ })]
3143
+ }),
3144
+ /* @__PURE__ */ n("linearGradient", {
3145
+ id: "paint4_linear_15759_16937",
3146
+ x1: 14.12,
3147
+ x2: 14.12,
3148
+ y1: 15.51,
3149
+ y2: 17.95,
3150
+ gradientUnits: "userSpaceOnUse",
3151
+ children: [/* @__PURE__ */ t("stop", {
3152
+ offset: 0,
3153
+ stopColor: "#3c2200"
3154
+ }), /* @__PURE__ */ t("stop", {
3155
+ offset: 1,
3156
+ stopColor: "#512d00"
3157
+ })]
3158
+ }),
3159
+ /* @__PURE__ */ n("linearGradient", {
3160
+ id: "paint6_linear_15759_16937",
3161
+ x1: 25.88,
3162
+ x2: 25.88,
3163
+ y1: 15.58,
3164
+ y2: 18.02,
3165
+ gradientUnits: "userSpaceOnUse",
3166
+ children: [/* @__PURE__ */ t("stop", {
3167
+ offset: 0,
3168
+ stopColor: "#3c2200"
3169
+ }), /* @__PURE__ */ t("stop", {
3170
+ offset: 1,
3171
+ stopColor: "#512d00"
3172
+ })]
3173
+ }),
3174
+ /* @__PURE__ */ n("linearGradient", {
3175
+ id: "paint7_linear_15759_16937",
3176
+ x1: 27.2,
3177
+ x2: 26.91,
3178
+ y1: 13.08,
3179
+ y2: 10.82,
3180
+ gradientUnits: "userSpaceOnUse",
3181
+ children: [/* @__PURE__ */ t("stop", {
3182
+ offset: 0,
3183
+ stopColor: "#3c2200"
3184
+ }), /* @__PURE__ */ t("stop", {
3185
+ offset: 1,
3186
+ stopColor: "#7a4400"
3187
+ })]
3188
+ }),
3189
+ /* @__PURE__ */ n("linearGradient", {
3190
+ id: "paint9_linear_15759_16937",
3191
+ x1: 11.57,
3192
+ x2: 28.43,
3193
+ y1: 26.61,
3194
+ y2: 26.61,
3195
+ gradientUnits: "userSpaceOnUse",
3196
+ children: [/* @__PURE__ */ t("stop", {
3197
+ offset: 0,
3198
+ stopColor: "#3c2200"
3199
+ }), /* @__PURE__ */ t("stop", {
3200
+ offset: 1,
3201
+ stopColor: "#512d00"
3202
+ })]
3203
+ })
3204
+ ] })
3205
+ ]
3206
+ }), P = {
3207
+ list: "_list_1vfe4_1",
3208
+ icon: "_icon_1vfe4_6",
3209
+ button: "_button_1vfe4_11"
3210
+ }, F = [
3211
+ [j, 1],
3212
+ [S, 2],
3213
+ [N, 3],
3214
+ [C, 4],
3215
+ [M, 5]
3216
+ ], I = ({ minLabel: e, maxLabel: i, onChange: a, classNames: o }) => {
3217
+ let c = r((e) => {
3218
+ a(Number(e.currentTarget.value));
3219
+ }, [a]);
3220
+ return /* @__PURE__ */ n("div", {
3221
+ className: s(P.base, o?.base),
3222
+ children: [/* @__PURE__ */ t("div", {
3223
+ className: s(P.list, o?.list),
3224
+ children: F.map(([e, n]) => /* @__PURE__ */ t("button", {
3225
+ "aria-label": `Score ${n}`,
3226
+ className: s(P.button, o?.button),
3227
+ type: "button",
3228
+ value: n,
3229
+ onClick: c,
3230
+ children: /* @__PURE__ */ t(e, {
3231
+ "aria-hidden": "true",
3232
+ className: s(P.icon, o?.icon),
3233
+ width: 32,
3234
+ height: 32
3235
+ })
3236
+ }, n))
3237
+ }), !!e && !!i && /* @__PURE__ */ t(x, {
3238
+ className: o?.labels,
3239
+ minLabel: e,
3240
+ maxLabel: i
3241
+ })]
3242
+ });
3243
+ }, L = {
3244
+ list: "_list_16sag_1",
3245
+ button: "_button_16sag_6"
3246
+ }, R = [
3247
+ 1,
3248
+ 2,
3249
+ 3,
3250
+ 4,
3251
+ 5
3252
+ ], z = ({ classNames: e, minLabel: i, maxLabel: a, onChange: o }) => {
3253
+ let c = r((e) => {
3254
+ o(Number(e.currentTarget.value));
3255
+ }, [o]);
3256
+ return /* @__PURE__ */ n("div", {
3257
+ className: s(L.base, e?.base),
3258
+ children: [/* @__PURE__ */ t("div", {
3259
+ className: s(L.list, e?.list),
3260
+ children: R.map((n) => /* @__PURE__ */ t("button", {
3261
+ "aria-label": `Score ${n}`,
3262
+ className: s(L.button, e?.button),
3263
+ type: "button",
3264
+ value: n,
3265
+ onClick: c,
3266
+ children: /* @__PURE__ */ t("span", {
3267
+ className: s(L.score, e?.score),
3268
+ children: n
3269
+ })
3270
+ }, n))
3271
+ }), !!i && !!a && /* @__PURE__ */ t(x, {
3272
+ className: e?.labels,
3273
+ minLabel: i,
3274
+ maxLabel: a
3275
+ })]
3276
+ });
3277
+ }, B = (e) => /* @__PURE__ */ t("svg", {
3278
+ xmlns: "http://www.w3.org/2000/svg",
3279
+ fill: "none",
3280
+ viewBox: "0 0 40 40",
3281
+ ...e,
3282
+ children: /* @__PURE__ */ t("path", {
3283
+ fill: "#d0d5dd",
3284
+ stroke: "#d0d5dd",
3285
+ strokeLinecap: "round",
3286
+ strokeLinejoin: "round",
3287
+ d: "M18.8 5.76c.39-.78.58-1.17.84-1.3.23-.1.5-.1.72 0 .26.13.45.52.84 1.3l3.64 7.38c.11.23.17.34.25.43a1 1 0 0 0 .26.2c.11.04.24.06.5.1l8.14 1.19c.86.12 1.3.19 1.5.4q.25.29.21.68c-.04.29-.35.59-.97 1.2l-5.9 5.74c-.18.18-.27.27-.33.37q-.08.15-.1.3c-.01.13 0 .25.05.5l1.4 8.12c.14.86.21 1.28.08 1.54a.8.8 0 0 1-.59.42c-.28.05-.66-.15-1.43-.55l-7.29-3.84a2 2 0 0 0-.46-.2 1 1 0 0 0-.32 0c-.12.02-.23.08-.46.2l-7.29 3.84c-.77.4-1.15.6-1.44.55a.8.8 0 0 1-.58-.42c-.13-.26-.06-.68.09-1.54l1.39-8.11c.04-.26.06-.38.05-.5a1 1 0 0 0-.1-.3c-.06-.11-.15-.2-.34-.38l-5.9-5.75c-.61-.6-.92-.9-.96-1.19a.8.8 0 0 1 .22-.68c.2-.21.63-.28 1.48-.4l8.16-1.2c.25-.03.38-.05.49-.1q.14-.06.26-.19c.08-.09.14-.2.25-.43z"
3288
+ })
3289
+ }), V = (e) => /* @__PURE__ */ t("svg", {
3290
+ xmlns: "http://www.w3.org/2000/svg",
3291
+ fill: "none",
3292
+ viewBox: "0 0 40 40",
3293
+ ...e,
3294
+ children: /* @__PURE__ */ t("path", {
3295
+ fill: "#fec84b",
3296
+ stroke: "#fec84b",
3297
+ strokeLinecap: "round",
3298
+ strokeLinejoin: "round",
3299
+ strokeWidth: 2,
3300
+ d: "M18.8 5.76c.39-.78.58-1.17.84-1.3.23-.1.5-.1.72 0 .26.13.45.52.84 1.3l3.64 7.38c.11.23.17.34.25.43a1 1 0 0 0 .26.2c.11.04.24.06.5.1l8.14 1.19c.86.12 1.3.19 1.5.4q.25.29.21.68c-.04.29-.35.59-.97 1.2l-5.9 5.74c-.18.18-.27.27-.33.37q-.08.15-.1.3c-.01.13 0 .25.05.5l1.4 8.12c.14.86.21 1.28.08 1.54a.8.8 0 0 1-.59.42c-.28.05-.66-.15-1.43-.55l-7.29-3.84a2 2 0 0 0-.46-.2 1 1 0 0 0-.32 0c-.12.02-.23.08-.46.2l-7.29 3.84c-.77.4-1.15.6-1.44.55a.8.8 0 0 1-.58-.42c-.13-.26-.06-.68.09-1.54l1.39-8.11c.04-.26.06-.38.05-.5a1 1 0 0 0-.1-.3c-.06-.11-.15-.2-.34-.38l-5.9-5.75c-.61-.6-.92-.9-.96-1.19a.8.8 0 0 1 .22-.68c.2-.21.63-.28 1.48-.4l8.16-1.2c.25-.03.38-.05.49-.1q.14-.06.26-.19c.08-.09.14-.2.25-.43z"
3301
+ })
3302
+ }), H = {
3303
+ list: "_list_1kpxu_1",
3304
+ icon: "_icon_1kpxu_6",
3305
+ button: "_button_1kpxu_11"
3306
+ }, U = [
3307
+ 1,
3308
+ 2,
3309
+ 3,
3310
+ 4,
3311
+ 5
3312
+ ], W = ({ minLabel: e, maxLabel: i, onChange: a, classNames: c }) => {
3313
+ let [l, u] = o(null), d = r((e) => {
3314
+ u(Number(e.currentTarget.value));
3315
+ }, []), f = r((e) => {
3316
+ u(Number(e.currentTarget.value));
3317
+ }, []), p = r(() => {
3318
+ u(null);
3319
+ }, []), m = r((e) => {
3320
+ a(Number(e.currentTarget.value));
3321
+ }, [a]);
3322
+ return /* @__PURE__ */ n("div", {
3323
+ className: s(H.base, c?.base),
3324
+ children: [/* @__PURE__ */ t("div", {
3325
+ className: s(H.list, c?.list),
3326
+ onBlur: p,
3327
+ onMouseLeave: p,
3328
+ children: U.map((e) => /* @__PURE__ */ t("button", {
3329
+ "aria-label": `${e} ${e > 1 ? "stars" : "star"}`,
3330
+ className: s(H.button, c?.button),
3331
+ type: "button",
3332
+ value: e,
3333
+ onClick: m,
3334
+ onFocus: d,
3335
+ onMouseOver: f,
3336
+ children: t(l !== null && e <= l ? V : B, {
3337
+ "aria-hidden": "true",
3338
+ className: s(H.icon, c?.icon),
3339
+ width: 40,
3340
+ height: 40
3341
+ })
3342
+ }, e))
3343
+ }), !!e && !!i && /* @__PURE__ */ t(x, {
3344
+ className: c?.labels,
3345
+ minLabel: e,
3346
+ maxLabel: i
3347
+ })]
3348
+ });
3349
+ }, G = {
3350
+ base: "_base_m4qio_1",
3351
+ rating: "_rating_m4qio_5",
3352
+ feedback: "_feedback_m4qio_6",
3353
+ success: "_success_m4qio_7"
3354
+ }, K = ({ classNames: e, dir: r, scaleStyle: i, question: a, minLabel: o, maxLabel: c, textQuestion: l, textButtonLabel: u, responseType: d, choiceOptions: f, thankYouMessage: p, onScoreSubmit: m, onFeedbackSubmit: h }) => {
3355
+ let { screen: g, onScoreChange: _, onFeedbackChange: b } = y({
3356
+ responseType: d,
3357
+ onScoreSubmit: m,
3358
+ onFeedbackSubmit: h
3359
+ });
3360
+ return /* @__PURE__ */ n(v, {
3361
+ className: G.base,
3362
+ classNames: {
3363
+ ...e?.base,
3364
+ rating: s(G.rating, e?.base?.rating),
3365
+ feedback: s(G.feedback, e?.base?.feedback),
3366
+ success: s(G.success, e?.base?.success)
3367
+ },
3368
+ dir: r,
3369
+ screen: g,
3370
+ question: a,
3371
+ textQuestion: l,
3372
+ textButtonLabel: u,
3373
+ responseType: d,
3374
+ choiceOptions: f,
3375
+ thankYouMessage: p,
3376
+ onFeedback: b,
3377
+ children: [
3378
+ i === "emoji" && /* @__PURE__ */ t(I, {
3379
+ classNames: e?.scale,
3380
+ minLabel: o,
3381
+ maxLabel: c,
3382
+ onChange: _
3383
+ }),
3384
+ i === "numbers" && /* @__PURE__ */ t(z, {
3385
+ classNames: e?.scale,
3386
+ minLabel: o,
3387
+ maxLabel: c,
3388
+ onChange: _
3389
+ }),
3390
+ i === "stars" && /* @__PURE__ */ t(W, {
3391
+ classNames: e?.scale,
3392
+ minLabel: o,
3393
+ maxLabel: c,
3394
+ onChange: _
3395
+ })
3396
+ ]
3397
+ });
3398
+ }, q = {
3399
+ list: "_list_whbas_1",
3400
+ button: "_button_whbas_13",
3401
+ score: "_score_whbas_52",
3402
+ label: "_label_whbas_55",
3403
+ labels: "_labels_whbas_75"
3404
+ }, J = [
3405
+ 1,
3406
+ 2,
3407
+ 3,
3408
+ 4,
3409
+ 5,
3410
+ 6,
3411
+ 7
3412
+ ], Y = ({ classNames: e, minLabel: i, maxLabel: a, onChange: o }) => {
3413
+ let c = r((e) => {
3414
+ o(Number(e.currentTarget.value));
3415
+ }, [o]);
3416
+ return /* @__PURE__ */ n("div", {
3417
+ className: s(q.base, e?.base),
3418
+ children: [/* @__PURE__ */ t("div", {
3419
+ className: s(q.list, e?.list),
3420
+ children: J.map((r) => /* @__PURE__ */ n("button", {
3421
+ "aria-label": `Score ${r}`,
3422
+ className: s(q.button, e?.button),
3423
+ type: "button",
3424
+ value: r,
3425
+ onClick: c,
3426
+ children: [
3427
+ /* @__PURE__ */ t("span", {
3428
+ className: s(q.score, e?.score),
3429
+ children: r
3430
+ }),
3431
+ r === J[0] && !!i && /* @__PURE__ */ t("span", {
3432
+ className: q.label,
3433
+ children: ` - ${i}`
3434
+ }, "left"),
3435
+ r === J[J.length - 1] && !!a && /* @__PURE__ */ t("span", {
3436
+ className: q.label,
3437
+ children: ` - ${a}`
3438
+ }, "right")
3439
+ ]
3440
+ }, r))
3441
+ }), !!i && !!a && /* @__PURE__ */ t(x, {
3442
+ className: s(q.labels, e?.labels),
3443
+ minLabel: i,
3444
+ maxLabel: a
3445
+ })]
3446
+ });
3447
+ }, X = {
3448
+ base: "_base_12no3_1",
3449
+ rating: "_rating_12no3_5",
3450
+ feedback: "_feedback_12no3_19",
3451
+ success: "_success_12no3_20"
3452
+ }, te = ({ classNames: e, dir: n, scaleStyle: r, question: i, minLabel: a, maxLabel: o, textQuestion: c, textButtonLabel: l, responseType: u, choiceOptions: d, thankYouMessage: f, onScoreSubmit: p, onFeedbackSubmit: m }) => {
3453
+ let { screen: h, onScoreChange: g, onFeedbackChange: _ } = y({
3454
+ responseType: u,
3455
+ onScoreSubmit: p,
3456
+ onFeedbackSubmit: m
3457
+ });
3458
+ return /* @__PURE__ */ t(v, {
3459
+ className: X.base,
3460
+ classNames: {
3461
+ ...e?.base,
3462
+ rating: s(X.rating, e?.base?.rating),
3463
+ feedback: s(X.feedback, e?.base?.feedback),
3464
+ success: s(X.success, e?.base?.success)
3465
+ },
3466
+ dir: n,
3467
+ screen: h,
3468
+ question: i,
3469
+ textQuestion: c,
3470
+ textButtonLabel: l,
3471
+ responseType: u,
3472
+ choiceOptions: d,
3473
+ thankYouMessage: f,
3474
+ onFeedback: _,
3475
+ children: r === "numbers" && /* @__PURE__ */ t(Y, {
3476
+ classNames: e?.scale,
3477
+ minLabel: a,
3478
+ maxLabel: o,
3479
+ onChange: g
3480
+ })
3481
+ });
3482
+ }, Z = {
3483
+ list: "_list_divjm_1",
3484
+ button: "_button_divjm_13",
3485
+ score: "_score_divjm_52",
3486
+ label: "_label_divjm_55",
3487
+ labels: "_labels_divjm_75"
3488
+ }, Q = [
3489
+ 0,
3490
+ 1,
3491
+ 2,
3492
+ 3,
3493
+ 4,
3494
+ 5,
3495
+ 6,
3496
+ 7,
3497
+ 8,
3498
+ 9,
3499
+ 10
3500
+ ], ne = ({ classNames: e, minLabel: i, maxLabel: a, onChange: o }) => {
3501
+ let c = r((e) => {
3502
+ o(Number(e.currentTarget.value));
3503
+ }, [o]);
3504
+ return /* @__PURE__ */ n("div", {
3505
+ className: s(Z.base, e?.base),
3506
+ children: [/* @__PURE__ */ t("div", {
3507
+ className: s(Z.list, e?.list),
3508
+ children: Q.map((r) => /* @__PURE__ */ n("button", {
3509
+ "aria-label": `Score ${r}`,
3510
+ className: s(Z.button, e?.button),
3511
+ type: "button",
3512
+ value: r,
3513
+ onClick: c,
3514
+ children: [
3515
+ /* @__PURE__ */ t("span", {
3516
+ className: s(Z.score, e?.score),
3517
+ children: r
3518
+ }),
3519
+ r === Q[0] && !!i && /* @__PURE__ */ t("span", {
3520
+ className: Z.label,
3521
+ children: ` - ${i}`
3522
+ }, "left"),
3523
+ r === Q[Q.length - 1] && !!a && /* @__PURE__ */ t("span", {
3524
+ className: Z.label,
3525
+ children: ` - ${a}`
3526
+ }, "right")
3527
+ ]
3528
+ }, r))
3529
+ }), !!i && !!a && /* @__PURE__ */ t(x, {
3530
+ className: s(Z.labels, e?.labels),
3531
+ minLabel: i,
3532
+ maxLabel: a
3533
+ })]
3534
+ });
3535
+ }, $ = {
3536
+ base: "_base_1invl_1",
3537
+ rating: "_rating_1invl_5",
3538
+ feedback: "_feedback_1invl_19",
3539
+ success: "_success_1invl_20"
3540
+ }, re = ({ classNames: e, dir: n, scaleStyle: r, question: i, minLabel: a, maxLabel: o, textQuestion: c, textButtonLabel: l, responseType: u, choiceOptions: d, thankYouMessage: f, onScoreSubmit: p, onFeedbackSubmit: m }) => {
3541
+ let { screen: h, onScoreChange: g, onFeedbackChange: _ } = y({
3542
+ responseType: u,
3543
+ onScoreSubmit: p,
3544
+ onFeedbackSubmit: m
3545
+ });
3546
+ return /* @__PURE__ */ t(v, {
3547
+ className: $.base,
3548
+ classNames: {
3549
+ ...e?.base,
3550
+ rating: s($.rating, e?.base?.rating),
3551
+ feedback: s($.feedback, e?.base?.feedback),
3552
+ success: s($.success, e?.base?.success)
3553
+ },
3554
+ dir: n,
3555
+ screen: h,
3556
+ question: i,
3557
+ textQuestion: c,
3558
+ textButtonLabel: l,
3559
+ responseType: u,
3560
+ choiceOptions: d,
3561
+ thankYouMessage: f,
3562
+ onFeedback: _,
3563
+ children: r === "numbers" && /* @__PURE__ */ t(ne, {
3564
+ classNames: e?.scale,
3565
+ minLabel: a,
3566
+ maxLabel: o,
3567
+ onChange: g
3568
+ })
3569
+ });
1002
3570
  };
3571
+ //#endregion
3572
+ export { te as CES7Survey, A as CSAT2Survey, K as CSAT5Survey, re as NPS10Survey, d as Popup, l as Surface };