react-feedback-surveys 1.6.0 → 1.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -1,1002 +1,3737 @@
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_1vr2h_1", le = "_animated_1vr2h_19", se = "_fadeForward_1vr2h_1", ie = "_topLeft_1vr2h_34", oe = "_topRight_1vr2h_45", ce = "_bottomRight_1vr2h_56", pe = "_bottomLeft_1vr2h_67", fe = "_close_1vr2h_78", z = {
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(z.base, { [z.animated]: t }, z[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(z.close, r?.close),
54
- title: "Close survey",
55
- type: "button",
56
- onClick: n
57
- }
58
- )
59
- ] })
60
- }
61
- ), de = "_choices_174z3_1", _e = "_choice_174z3_1", me = "_label_174z3_12", Ee = "_sr_174z3_21", ue = "_checkbox_174z3_33", be = "_check_174z3_33", ye = "_input_174z3_70", he = "_textarea_174z3_75", Ce = "_invalid_174z3_97", ge = "_submit_174z3_102", 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
- ) }), ve = "_base_1xpqq_1", Ge = "_head_1xpqq_7", we = "_title_1xpqq_14", v = {
218
- base: ve,
219
- head: Ge,
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
- v.base,
241
- l,
242
- r?.base,
243
- r?.[c]
244
- ),
245
- dir: s,
246
- children: [
247
- /* @__PURE__ */ a("div", { className: i(v.head, r?.head), children: /* @__PURE__ */ E(
248
- "div",
249
- {
250
- "aria-level": 2,
251
- id: u,
252
- className: i(v.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(v.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(v.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(v.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", ze = "_text_1e603_40", G = {
359
- base: ke,
360
- label: $e,
361
- between: Te,
362
- center: qe,
363
- text: ze
364
- }, M = ({
365
- className: t,
366
- classNames: l,
367
- minLabel: r,
368
- maxLabel: s,
369
- placement: o = "between"
370
- }) => /* @__PURE__ */ E("div", { className: i(G.base, G[o], l?.base, t), children: [
371
- /* @__PURE__ */ a("div", { className: i(G.label, l?.label), children: /* @__PURE__ */ a("span", { className: G.text, children: r }) }),
372
- /* @__PURE__ */ a("div", { className: i(G.label, l?.label), children: /* @__PURE__ */ a("span", { className: G.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" })))), Ne = "_list_grany_1", Fe = "_icon_grany_7", je = "_button_grany_12", $ = {
374
- list: Ne,
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", N = {
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: N.base,
500
- classNames: {
501
- ...t?.base,
502
- rating: i(N.rating, t?.base?.rating),
503
- feedback: i(N.feedback, t?.base?.feedback),
504
- success: i(N.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", v1 = "_success_12no3_20", R = {
822
- base: O1,
823
- rating: S1,
824
- feedback: M1,
825
- success: v1
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
- }, G1 = "_list_divjm_1", w1 = "_button_divjm_13", k1 = "_score_divjm_52", $1 = "_label_divjm_55", T1 = "_labels_divjm_75", S = {
881
- list: G1,
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
- }, z1 = "_base_1invl_1", N1 = "_rating_1invl_5", F1 = "_feedback_1invl_19", j1 = "_success_1invl_20", D = {
936
- base: z1,
937
- rating: N1,
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_d5qlz_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
+ sr: "_sr_clg7k_1",
40
+ subtext: "_subtext_clg7k_13",
41
+ input: "_input_clg7k_18",
42
+ invalid: "_invalid_clg7k_35",
43
+ submit: "_submit_clg7k_42",
44
+ skip: "_skip_clg7k_74"
45
+ }, p = /^[^\s@]+@[^\s@]+\.[^\s@]+$/, m = ({ subtext: e, buttonSendLabel: a = "Send", buttonSkipLabel: s = "Skip", onSubmit: c }) => {
46
+ let l = i(), [u, d] = o(""), [m, h] = o(!1), g = r((e) => {
47
+ e.stopPropagation();
48
+ }, []), _ = r((e) => {
49
+ d(e.currentTarget.value), m && h(!1);
50
+ }, [m]), v = r((e) => {
51
+ e.preventDefault();
52
+ let t = u.trim();
53
+ if (!t || !p.test(t)) {
54
+ h(!0);
55
+ return;
56
+ }
57
+ c?.(t);
58
+ }, [u, c]), y = r(() => {
59
+ c?.(void 0);
60
+ }, [c]), b = `${l}-contact-input`;
61
+ return /* @__PURE__ */ n("form", {
62
+ "aria-label": "Contact form",
63
+ className: f.base,
64
+ noValidate: !0,
65
+ onSubmit: v,
66
+ children: [
67
+ /* @__PURE__ */ t("label", {
68
+ htmlFor: b,
69
+ className: f.sr,
70
+ children: "Email address"
71
+ }),
72
+ !!e && /* @__PURE__ */ t("div", {
73
+ className: f.subtext,
74
+ children: e
75
+ }),
76
+ /* @__PURE__ */ t("input", {
77
+ "aria-label": "Email address",
78
+ "aria-invalid": m,
79
+ className: `${f.input} ${m ? f.invalid : ""}`,
80
+ id: b,
81
+ maxLength: 254,
82
+ name: "email",
83
+ placeholder: "your@email.com",
84
+ type: "email",
85
+ value: u,
86
+ onChange: _,
87
+ onKeyDown: g
88
+ }),
89
+ /* @__PURE__ */ t("button", {
90
+ className: f.submit,
91
+ type: "submit",
92
+ children: a
93
+ }),
94
+ /* @__PURE__ */ t("button", {
95
+ className: f.skip,
96
+ type: "button",
97
+ onClick: y,
98
+ children: s
99
+ })
100
+ ]
101
+ });
102
+ }, h = {
103
+ choices: "_choices_nhux3_1",
104
+ choice: "_choice_nhux3_1",
105
+ label: "_label_nhux3_12",
106
+ sr: "_sr_nhux3_21",
107
+ checkbox: "_checkbox_nhux3_33",
108
+ check: "_check_nhux3_33",
109
+ input: "_input_nhux3_74",
110
+ textarea: "_textarea_nhux3_79",
111
+ submit: "_submit_nhux3_104",
112
+ skip: "_skip_nhux3_136",
113
+ success: "_success_nhux3_166"
114
+ }, g = ({ buttonSendLabel: a = "Submit", buttonSkipLabel: s = "Skip", responseType: c, choiceOptions: l, onSubmit: u }) => {
115
+ let d = i(), [f, p] = o(""), [m, g] = o([]), _ = r((e) => {
116
+ e.stopPropagation();
117
+ }, []), v = r((e) => {
118
+ p(e.currentTarget.value);
119
+ }, []), y = r((e) => {
120
+ let { value: t, checked: n } = e.currentTarget;
121
+ g((e) => n ? [...e, t] : e.filter((e) => e !== t));
122
+ }, []), b = r((e) => {
123
+ e.preventDefault();
124
+ let t = f.trim();
125
+ if (c === "choices") {
126
+ u?.([...m, t].filter(Boolean));
127
+ return;
128
+ }
129
+ u?.(f.trim());
130
+ }, [
131
+ f,
132
+ c,
133
+ m,
134
+ u
135
+ ]), x = r(() => {
136
+ u?.(void 0);
137
+ }, [u]);
138
+ if (!c) return null;
139
+ let S = `${d}-feedback-textarea`, C = `${d}-feedback-input`, w = `${d}-feedback-choices`;
140
+ return /* @__PURE__ */ n("form", {
141
+ "aria-label": "Feedback form",
142
+ className: h.base,
143
+ noValidate: !0,
144
+ onSubmit: b,
145
+ children: [
146
+ c === "choices" && /* @__PURE__ */ t("div", {
147
+ className: h.choices,
148
+ id: w,
149
+ children: l?.map((e) => /* @__PURE__ */ t("div", {
150
+ className: h.choice,
151
+ children: /* @__PURE__ */ n("label", {
152
+ className: h.label,
153
+ children: [
154
+ /* @__PURE__ */ t("input", {
155
+ "aria-label": e,
156
+ className: h.checkbox,
157
+ checked: m.includes(e),
158
+ name: "feedback",
159
+ type: "checkbox",
160
+ value: e,
161
+ onChange: y,
162
+ onKeyDown: _
163
+ }),
164
+ /* @__PURE__ */ t("span", {
165
+ className: h.check,
166
+ "aria-hidden": "true"
167
+ }),
168
+ e
169
+ ]
170
+ })
171
+ }, e))
172
+ }),
173
+ c === "choices" && /* @__PURE__ */ n(e, { children: [/* @__PURE__ */ t("label", {
174
+ htmlFor: C,
175
+ className: h.sr,
176
+ children: "Additional feedback"
177
+ }), /* @__PURE__ */ t("input", {
178
+ "aria-label": "Additional feedback",
179
+ "aria-describedby": w,
180
+ className: h.input,
181
+ id: C,
182
+ maxLength: 1e3,
183
+ name: "feedback",
184
+ placeholder: "Other",
185
+ value: f,
186
+ onChange: v
187
+ })] }),
188
+ c === "text" && /* @__PURE__ */ n(e, { children: [/* @__PURE__ */ t("label", {
189
+ htmlFor: S,
190
+ className: h.sr,
191
+ children: "Your feedback"
192
+ }), /* @__PURE__ */ t("textarea", {
193
+ "aria-label": "Your feedback",
194
+ className: h.textarea,
195
+ id: S,
196
+ maxLength: 1e3,
197
+ name: "feedback",
198
+ rows: 4,
199
+ value: f,
200
+ onChange: v,
201
+ onKeyDown: _
202
+ })] }),
203
+ /* @__PURE__ */ t("button", {
204
+ className: h.submit,
205
+ type: "submit",
206
+ children: a
207
+ }),
208
+ /* @__PURE__ */ t("button", {
209
+ className: h.skip,
210
+ type: "button",
211
+ onClick: x,
212
+ children: s
213
+ })
214
+ ]
215
+ });
216
+ }, _ = (e) => /* @__PURE__ */ n("svg", {
217
+ xmlns: "http://www.w3.org/2000/svg",
218
+ viewBox: "0 0 512 512",
219
+ ...e,
220
+ children: [
221
+ /* @__PURE__ */ t("path", {
222
+ fill: "#ffb636",
223
+ d: "M378.6 355.6 45 500.7a26.8 26.8 0 0 1-34.9-34.5L156 127.5"
224
+ }),
225
+ /* @__PURE__ */ t("path", {
226
+ fill: "#ffd469",
227
+ 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"
228
+ }),
229
+ /* @__PURE__ */ t("path", {
230
+ fill: "#a06c33",
231
+ 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"
232
+ }),
233
+ /* @__PURE__ */ t("path", {
234
+ fill: "#f7f9aa",
235
+ d: "M155.6 327.6a10.9 10.9 0 1 1-21.8 0 10.9 10.9 0 0 1 21.8 0z"
236
+ }),
237
+ /* @__PURE__ */ t("path", {
238
+ fill: "#ffb636",
239
+ 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"
240
+ }),
241
+ /* @__PURE__ */ t("path", {
242
+ fill: "#bea4ff",
243
+ 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"
244
+ }),
245
+ /* @__PURE__ */ t("path", {
246
+ fill: "#ff6e83",
247
+ 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"
248
+ }),
249
+ /* @__PURE__ */ t("path", {
250
+ fill: "#59cafc",
251
+ 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"
252
+ })
253
+ ]
254
+ }), v = {
255
+ base: "_base_1ilpx_1",
256
+ icon: "_icon_1ilpx_6"
257
+ }, y = () => /* @__PURE__ */ t("div", {
258
+ className: v.base,
259
+ children: /* @__PURE__ */ t(_, {
260
+ "aria-hidden": "true",
261
+ className: v.icon,
262
+ width: 84,
263
+ height: 84
264
+ })
265
+ }), b = {
266
+ base: "_base_1xpqq_1",
267
+ head: "_head_1xpqq_7",
268
+ title: "_title_1xpqq_14"
269
+ }, x = ({ children: e, className: r, classNames: a, dir: o, question: c, textQuestion: l, textButtonSendLabel: u, textButtonSkipLabel: d, responseType: f, choiceOptions: p, thankYouMessage: h, contactQuestion: _, contactSubtext: v, contactButtonSendLabel: x, contactButtonSkipLabel: S, screen: C, onFeedback: w, onContact: T }) => {
270
+ let E = i();
271
+ return /* @__PURE__ */ n("div", {
272
+ className: s(b.base, r, a?.base, a?.[C]),
273
+ dir: o,
274
+ children: [
275
+ /* @__PURE__ */ t("div", {
276
+ className: s(b.head, a?.head),
277
+ children: /* @__PURE__ */ n("div", {
278
+ "aria-level": 2,
279
+ id: E,
280
+ className: s(b.title, a?.title),
281
+ role: "heading",
282
+ children: [
283
+ C === "rating" && c,
284
+ C === "feedback" && l,
285
+ C === "contact" && _,
286
+ C === "success" && h
287
+ ]
288
+ })
289
+ }),
290
+ C === "rating" && /* @__PURE__ */ t("div", {
291
+ "aria-label": "Rating selection",
292
+ "aria-labelledby": E,
293
+ className: s(b.body, a?.body),
294
+ role: "region",
295
+ children: e
296
+ }),
297
+ C === "feedback" && /* @__PURE__ */ t("div", {
298
+ "aria-label": "Feedback form",
299
+ "aria-labelledby": E,
300
+ className: s(b.body, a?.body),
301
+ role: "region",
302
+ children: /* @__PURE__ */ t(g, {
303
+ buttonSendLabel: u,
304
+ buttonSkipLabel: d,
305
+ choiceOptions: p,
306
+ responseType: f,
307
+ onSubmit: w
308
+ })
309
+ }),
310
+ C === "contact" && /* @__PURE__ */ t("div", {
311
+ "aria-label": "Contact form",
312
+ "aria-labelledby": E,
313
+ className: s(b.body, a?.body),
314
+ role: "region",
315
+ children: /* @__PURE__ */ t(m, {
316
+ buttonSendLabel: x,
317
+ buttonSkipLabel: S,
318
+ subtext: v,
319
+ onSubmit: T
320
+ })
321
+ }),
322
+ C === "success" && /* @__PURE__ */ t("div", {
323
+ "aria-atomic": "true",
324
+ "aria-live": "polite",
325
+ "aria-label": h,
326
+ "aria-labelledby": E,
327
+ className: s(b.body, a?.body),
328
+ tabIndex: -1,
329
+ role: "status",
330
+ children: /* @__PURE__ */ t(y, {})
331
+ })
332
+ ]
333
+ });
334
+ }, S = ({ responseType: e, collectContact: t, userId: n, onScoreSubmit: i, onFeedbackSubmit: s, onContactSubmit: c }) => {
335
+ let [l, u] = o(), [d, f] = o(), [p, m] = o(null), [h, g] = o(!1), [_, v] = o(!1), [y, b] = o(!1), x = !!t && !n, S = a(() => _ ? "success" : h ? "contact" : typeof l == "number" ? "feedback" : "rating", [
336
+ l,
337
+ h,
338
+ _
339
+ ]), C = r(() => {
340
+ x ? g(!0) : v(!0);
341
+ }, [x]);
342
+ return {
343
+ error: p,
344
+ value: l,
345
+ screen: S,
346
+ isLoading: y,
347
+ isSuccess: _,
348
+ onScoreChange: r(async (t) => {
349
+ if (u(t), m(null), i) {
350
+ b(!0);
351
+ try {
352
+ await i({ value: t }), e || C();
353
+ } catch (e) {
354
+ m(e instanceof Error ? e : /* @__PURE__ */ Error("Failed to submit"));
355
+ } finally {
356
+ b(!1);
357
+ }
358
+ } else e || C();
359
+ }, [
360
+ e,
361
+ i,
362
+ C
363
+ ]),
364
+ onFeedbackChange: r(async (e) => {
365
+ if (!e?.length) {
366
+ C();
367
+ return;
368
+ }
369
+ m(null);
370
+ let t = Array.isArray(e) ? e.join(";\n") : e;
371
+ if (f(t), s) {
372
+ b(!0);
373
+ try {
374
+ await s({
375
+ value: l,
376
+ text: t
377
+ }), C();
378
+ } catch (e) {
379
+ m(e instanceof Error ? e : /* @__PURE__ */ Error("Failed to submit"));
380
+ } finally {
381
+ b(!1);
382
+ }
383
+ } else C();
384
+ }, [
385
+ l,
386
+ s,
387
+ C
388
+ ]),
389
+ onContactChange: r(async (e) => {
390
+ if (m(null), !e) {
391
+ v(!0);
392
+ return;
393
+ }
394
+ if (c) {
395
+ b(!0);
396
+ try {
397
+ await c({
398
+ value: l,
399
+ text: d,
400
+ email: e
401
+ }), v(!0);
402
+ } catch (e) {
403
+ m(e instanceof Error ? e : /* @__PURE__ */ Error("Failed to submit"));
404
+ } finally {
405
+ b(!1);
406
+ }
407
+ } else v(!0);
408
+ }, [
409
+ l,
410
+ d,
411
+ c
412
+ ])
413
+ };
414
+ }, C = {
415
+ base: "_base_nswpf_1",
416
+ label: "_label_nswpf_6",
417
+ between: "_between_nswpf_15",
418
+ center: "_center_nswpf_29",
419
+ text: "_text_nswpf_41"
420
+ }, w = ({ className: e, classNames: r, minLabel: i, maxLabel: a, placement: o = "between" }) => /* @__PURE__ */ n("div", {
421
+ className: s(C.base, C[o], r?.base, e),
422
+ children: [/* @__PURE__ */ t("div", {
423
+ className: s(C.label, r?.label),
424
+ children: /* @__PURE__ */ t("span", {
425
+ className: C.text,
426
+ children: i
427
+ })
428
+ }), /* @__PURE__ */ t("div", {
429
+ className: s(C.label, r?.label),
430
+ children: /* @__PURE__ */ t("span", {
431
+ className: C.text,
432
+ children: a
433
+ })
434
+ })]
435
+ }), T = (e) => /* @__PURE__ */ n("svg", {
436
+ xmlns: "http://www.w3.org/2000/svg",
437
+ width: 40,
438
+ height: 40,
439
+ fill: "none",
440
+ viewBox: "0 0 40 40",
441
+ ...e,
442
+ children: [
443
+ /* @__PURE__ */ t("path", {
444
+ fill: "url(#paint0_radial_5688_13)",
445
+ 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"
446
+ }),
447
+ /* @__PURE__ */ t("path", {
448
+ fill: "url(#paint1_radial_5688_13)",
449
+ 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",
450
+ opacity: .5
451
+ }),
452
+ /* @__PURE__ */ t("path", {
453
+ fill: "url(#paint2_linear_5688_13)",
454
+ 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"
455
+ }),
456
+ /* @__PURE__ */ t("path", {
457
+ fill: "url(#paint3_radial_5688_13)",
458
+ 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"
459
+ }),
460
+ /* @__PURE__ */ t("path", {
461
+ fill: "url(#paint4_linear_5688_13)",
462
+ 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"
463
+ }),
464
+ /* @__PURE__ */ t("path", {
465
+ fill: "#643800",
466
+ 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"
467
+ }),
468
+ /* @__PURE__ */ t("path", {
469
+ fill: "url(#paint5_linear_5688_13)",
470
+ 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"
471
+ }),
472
+ /* @__PURE__ */ t("path", {
473
+ fill: "url(#paint6_linear_5688_13)",
474
+ 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"
475
+ }),
476
+ /* @__PURE__ */ t("path", {
477
+ fill: "url(#paint7_radial_5688_13)",
478
+ 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"
479
+ }),
480
+ /* @__PURE__ */ t("path", {
481
+ fill: "url(#paint8_linear_5688_13)",
482
+ 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"
483
+ }),
484
+ /* @__PURE__ */ n("defs", { children: [
485
+ /* @__PURE__ */ n("linearGradient", {
486
+ id: "paint2_linear_5688_13",
487
+ x1: 12.647,
488
+ x2: 13.424,
489
+ y1: 14.976,
490
+ y2: 12.074,
491
+ gradientUnits: "userSpaceOnUse",
492
+ children: [/* @__PURE__ */ t("stop", {
493
+ offset: .001,
494
+ stopColor: "#3c2200"
495
+ }), /* @__PURE__ */ t("stop", {
496
+ offset: 1,
497
+ stopColor: "#7a4400"
498
+ })]
499
+ }),
500
+ /* @__PURE__ */ n("linearGradient", {
501
+ id: "paint4_linear_5688_13",
502
+ x1: 14.12,
503
+ x2: 14.12,
504
+ y1: 15.657,
505
+ y2: 18.213,
506
+ gradientUnits: "userSpaceOnUse",
507
+ children: [/* @__PURE__ */ t("stop", {
508
+ offset: .001,
509
+ stopColor: "#3c2200"
510
+ }), /* @__PURE__ */ t("stop", {
511
+ offset: 1,
512
+ stopColor: "#512d00"
513
+ })]
514
+ }),
515
+ /* @__PURE__ */ n("linearGradient", {
516
+ id: "paint5_linear_5688_13",
517
+ x1: 19.997,
518
+ x2: 19.997,
519
+ y1: 26.57,
520
+ y2: 29.09,
521
+ gradientUnits: "userSpaceOnUse",
522
+ children: [/* @__PURE__ */ t("stop", {
523
+ offset: .001,
524
+ stopColor: "#3c2200"
525
+ }), /* @__PURE__ */ t("stop", {
526
+ offset: 1,
527
+ stopColor: "#512d00"
528
+ })]
529
+ }),
530
+ /* @__PURE__ */ n("linearGradient", {
531
+ id: "paint6_linear_5688_13",
532
+ x1: 27.323,
533
+ x2: 26.545,
534
+ y1: 15.046,
535
+ y2: 12.144,
536
+ gradientUnits: "userSpaceOnUse",
537
+ children: [/* @__PURE__ */ t("stop", {
538
+ offset: .001,
539
+ stopColor: "#3c2200"
540
+ }), /* @__PURE__ */ t("stop", {
541
+ offset: 1,
542
+ stopColor: "#7a4400"
543
+ })]
544
+ }),
545
+ /* @__PURE__ */ n("linearGradient", {
546
+ id: "paint8_linear_5688_13",
547
+ x1: 25.873,
548
+ x2: 25.873,
549
+ y1: 15.657,
550
+ y2: 18.213,
551
+ gradientUnits: "userSpaceOnUse",
552
+ children: [/* @__PURE__ */ t("stop", {
553
+ offset: .001,
554
+ stopColor: "#3c2200"
555
+ }), /* @__PURE__ */ t("stop", {
556
+ offset: 1,
557
+ stopColor: "#512d00"
558
+ })]
559
+ }),
560
+ /* @__PURE__ */ n("radialGradient", {
561
+ id: "paint0_radial_5688_13",
562
+ cx: 0,
563
+ cy: 0,
564
+ r: 1,
565
+ gradientTransform: "translate(16.454 12.705)scale(21.7148)",
566
+ gradientUnits: "userSpaceOnUse",
567
+ children: [/* @__PURE__ */ t("stop", { stopColor: "#ffe030" }), /* @__PURE__ */ t("stop", {
568
+ offset: 1,
569
+ stopColor: "#ffb92e"
570
+ })]
571
+ }),
572
+ /* @__PURE__ */ n("radialGradient", {
573
+ id: "paint1_radial_5688_13",
574
+ cx: 0,
575
+ cy: 0,
576
+ r: 1,
577
+ gradientTransform: "translate(16.454 12.705)scale(17.084)",
578
+ gradientUnits: "userSpaceOnUse",
579
+ children: [/* @__PURE__ */ t("stop", { stopColor: "#ffea5f" }), /* @__PURE__ */ t("stop", {
580
+ offset: 1,
581
+ stopColor: "#ffbc47",
582
+ stopOpacity: 0
583
+ })]
584
+ }),
585
+ /* @__PURE__ */ n("radialGradient", {
586
+ id: "paint3_radial_5688_13",
587
+ cx: 0,
588
+ cy: 0,
589
+ r: 1,
590
+ gradientTransform: "rotate(73.854 -5.448 18.256)scale(2.54329 1.64547)",
591
+ gradientUnits: "userSpaceOnUse",
592
+ children: [/* @__PURE__ */ t("stop", {
593
+ offset: .001,
594
+ stopColor: "#7a4400"
595
+ }), /* @__PURE__ */ t("stop", {
596
+ offset: 1,
597
+ stopColor: "#643800"
598
+ })]
599
+ }),
600
+ /* @__PURE__ */ n("radialGradient", {
601
+ id: "paint7_radial_5688_13",
602
+ cx: 0,
603
+ cy: 0,
604
+ r: 1,
605
+ gradientTransform: "rotate(73.854 .428 26.075)scale(2.54329 1.64547)",
606
+ gradientUnits: "userSpaceOnUse",
607
+ children: [/* @__PURE__ */ t("stop", {
608
+ offset: .001,
609
+ stopColor: "#7a4400"
610
+ }), /* @__PURE__ */ t("stop", {
611
+ offset: 1,
612
+ stopColor: "#643800"
613
+ })]
614
+ })
615
+ ] })
616
+ ]
617
+ }), E = (e) => /* @__PURE__ */ n("svg", {
618
+ xmlns: "http://www.w3.org/2000/svg",
619
+ width: 40,
620
+ height: 40,
621
+ fill: "none",
622
+ viewBox: "0 0 40 40",
623
+ ...e,
624
+ children: [
625
+ /* @__PURE__ */ t("path", {
626
+ fill: "url(#paint0_radial_15759_16891)",
627
+ d: "M20 38a18 18 0 1 0 0-36 18 18 0 0 0 0 36"
628
+ }),
629
+ /* @__PURE__ */ t("path", {
630
+ fill: "url(#paint1_radial_15759_16891)",
631
+ d: "M20 38a18 18 0 1 0 0-36 18 18 0 0 0 0 36",
632
+ opacity: .5
633
+ }),
634
+ /* @__PURE__ */ t("path", {
635
+ fill: "url(#paint2_linear_15759_16891)",
636
+ 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"
637
+ }),
638
+ /* @__PURE__ */ t("path", {
639
+ fill: "url(#paint3_radial_15759_16891)",
640
+ 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"
641
+ }),
642
+ /* @__PURE__ */ t("path", {
643
+ fill: "url(#paint4_linear_15759_16891)",
644
+ 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"
645
+ }),
646
+ /* @__PURE__ */ t("path", {
647
+ fill: "url(#paint5_linear_15759_16891)",
648
+ 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"
649
+ }),
650
+ /* @__PURE__ */ t("path", {
651
+ fill: "#643800",
652
+ 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"
653
+ }),
654
+ /* @__PURE__ */ t("path", {
655
+ fill: "url(#paint6_radial_15759_16891)",
656
+ 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"
657
+ }),
658
+ /* @__PURE__ */ t("path", {
659
+ fill: "url(#paint7_linear_15759_16891)",
660
+ 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"
661
+ }),
662
+ /* @__PURE__ */ t("path", {
663
+ fill: "url(#paint8_linear_15759_16891)",
664
+ 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"
665
+ }),
666
+ /* @__PURE__ */ n("defs", { children: [
667
+ /* @__PURE__ */ n("linearGradient", {
668
+ id: "paint2_linear_15759_16891",
669
+ x1: 12.24,
670
+ x2: 12.24,
671
+ y1: 11.88,
672
+ y2: 9.98,
673
+ gradientUnits: "userSpaceOnUse",
674
+ children: [/* @__PURE__ */ t("stop", {
675
+ offset: 0,
676
+ stopColor: "#3c2200"
677
+ }), /* @__PURE__ */ t("stop", {
678
+ offset: 1,
679
+ stopColor: "#7a4400"
680
+ })]
681
+ }),
682
+ /* @__PURE__ */ n("linearGradient", {
683
+ id: "paint4_linear_15759_16891",
684
+ x1: 14.12,
685
+ x2: 14.12,
686
+ y1: 14.16,
687
+ y2: 16.61,
688
+ gradientUnits: "userSpaceOnUse",
689
+ children: [/* @__PURE__ */ t("stop", {
690
+ offset: 0,
691
+ stopColor: "#3c2200"
692
+ }), /* @__PURE__ */ t("stop", {
693
+ offset: 1,
694
+ stopColor: "#512d00"
695
+ })]
696
+ }),
697
+ /* @__PURE__ */ n("linearGradient", {
698
+ id: "paint5_linear_15759_16891",
699
+ x1: 27.75,
700
+ x2: 27.75,
701
+ y1: 11.88,
702
+ y2: 9.98,
703
+ gradientUnits: "userSpaceOnUse",
704
+ children: [/* @__PURE__ */ t("stop", {
705
+ offset: 0,
706
+ stopColor: "#3c2200"
707
+ }), /* @__PURE__ */ t("stop", {
708
+ offset: 1,
709
+ stopColor: "#7a4400"
710
+ })]
711
+ }),
712
+ /* @__PURE__ */ n("linearGradient", {
713
+ id: "paint7_linear_15759_16891",
714
+ x1: 25.87,
715
+ x2: 25.87,
716
+ y1: 14.16,
717
+ y2: 16.61,
718
+ gradientUnits: "userSpaceOnUse",
719
+ children: [/* @__PURE__ */ t("stop", {
720
+ offset: 0,
721
+ stopColor: "#3c2200"
722
+ }), /* @__PURE__ */ t("stop", {
723
+ offset: 1,
724
+ stopColor: "#512d00"
725
+ })]
726
+ }),
727
+ /* @__PURE__ */ n("linearGradient", {
728
+ id: "paint8_linear_15759_16891",
729
+ x1: 20,
730
+ x2: 20,
731
+ y1: 26.54,
732
+ y2: 29.22,
733
+ gradientUnits: "userSpaceOnUse",
734
+ children: [/* @__PURE__ */ t("stop", {
735
+ offset: 0,
736
+ stopColor: "#3c2200"
737
+ }), /* @__PURE__ */ t("stop", {
738
+ offset: 1,
739
+ stopColor: "#512d00"
740
+ })]
741
+ }),
742
+ /* @__PURE__ */ n("radialGradient", {
743
+ id: "paint0_radial_15759_16891",
744
+ cx: 0,
745
+ cy: 0,
746
+ r: 1,
747
+ gradientTransform: "translate(16.45 12.7)scale(21.71)",
748
+ gradientUnits: "userSpaceOnUse",
749
+ children: [/* @__PURE__ */ t("stop", { stopColor: "#ffe030" }), /* @__PURE__ */ t("stop", {
750
+ offset: 1,
751
+ stopColor: "#ffb92e"
752
+ })]
753
+ }),
754
+ /* @__PURE__ */ n("radialGradient", {
755
+ id: "paint1_radial_15759_16891",
756
+ cx: 0,
757
+ cy: 0,
758
+ r: 1,
759
+ gradientTransform: "translate(16.45 12.7)scale(17.08)",
760
+ gradientUnits: "userSpaceOnUse",
761
+ children: [/* @__PURE__ */ t("stop", { stopColor: "#ffea5f" }), /* @__PURE__ */ t("stop", {
762
+ offset: 1,
763
+ stopColor: "#ffbc47",
764
+ stopOpacity: 0
765
+ })]
766
+ }),
767
+ /* @__PURE__ */ n("radialGradient", {
768
+ id: "paint3_radial_15759_16891",
769
+ cx: 0,
770
+ cy: 0,
771
+ r: 1,
772
+ gradientTransform: "matrix(.7 2.44 -1.58 .46 13.6 16.87)",
773
+ gradientUnits: "userSpaceOnUse",
774
+ children: [/* @__PURE__ */ t("stop", {
775
+ offset: 0,
776
+ stopColor: "#7a4400"
777
+ }), /* @__PURE__ */ t("stop", {
778
+ offset: 1,
779
+ stopColor: "#643800"
780
+ })]
781
+ }),
782
+ /* @__PURE__ */ n("radialGradient", {
783
+ id: "paint6_radial_15759_16891",
784
+ cx: 0,
785
+ cy: 0,
786
+ r: 1,
787
+ gradientTransform: "rotate(74 1.45 25.3)scale(2.54 1.65)",
788
+ gradientUnits: "userSpaceOnUse",
789
+ children: [/* @__PURE__ */ t("stop", {
790
+ offset: 0,
791
+ stopColor: "#7a4400"
792
+ }), /* @__PURE__ */ t("stop", {
793
+ offset: 1,
794
+ stopColor: "#643800"
795
+ })]
796
+ })
797
+ ] })
798
+ ]
799
+ }), D = {
800
+ list: "_list_grany_1",
801
+ icon: "_icon_grany_7",
802
+ button: "_button_grany_12"
803
+ }, O = ({ classNames: e, minLabel: i, maxLabel: a, onChange: o }) => {
804
+ let c = [[
805
+ T,
806
+ 0,
807
+ i ?? "Dissatisfied"
808
+ ], [
809
+ E,
810
+ 1,
811
+ a ?? "Satisfied"
812
+ ]], l = r((e) => {
813
+ o(Number(e.currentTarget.value));
814
+ }, [o]);
815
+ return /* @__PURE__ */ n("div", {
816
+ className: s(D.base, e?.base),
817
+ children: [/* @__PURE__ */ t("div", {
818
+ className: s(D.list, e?.list),
819
+ children: c.map(([n, r, i]) => /* @__PURE__ */ t("button", {
820
+ "aria-label": i,
821
+ className: s(D.button, e?.button),
822
+ type: "button",
823
+ value: r,
824
+ onClick: l,
825
+ children: /* @__PURE__ */ t(n, {
826
+ "aria-hidden": "true",
827
+ className: s(D.icon, e?.icon),
828
+ width: 32,
829
+ height: 32
830
+ })
831
+ }, r))
832
+ }), !!i && !!a && /* @__PURE__ */ t(w, {
833
+ className: s(D.labels, e?.labels),
834
+ minLabel: i,
835
+ maxLabel: a,
836
+ placement: "center"
837
+ })]
838
+ });
839
+ }, k = (e) => /* @__PURE__ */ n("svg", {
840
+ xmlns: "http://www.w3.org/2000/svg",
841
+ width: 40,
842
+ height: 40,
843
+ fill: "none",
844
+ viewBox: "0 0 40 40",
845
+ ...e,
846
+ children: [
847
+ /* @__PURE__ */ t("path", {
848
+ fill: "url(#paint0_linear_15759_16997)",
849
+ 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"
850
+ }),
851
+ /* @__PURE__ */ t("path", {
852
+ fill: "url(#paint1_linear_15759_16997)",
853
+ 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"
854
+ }),
855
+ /* @__PURE__ */ t("path", {
856
+ fill: "url(#paint2_linear_15759_16997)",
857
+ 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"
858
+ }),
859
+ /* @__PURE__ */ t("path", {
860
+ fill: "url(#paint3_linear_15759_16997)",
861
+ 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"
862
+ }),
863
+ /* @__PURE__ */ t("path", {
864
+ fill: "url(#paint4_linear_15759_16997)",
865
+ 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"
866
+ }),
867
+ /* @__PURE__ */ t("path", {
868
+ fill: "url(#paint5_linear_15759_16997)",
869
+ 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"
870
+ }),
871
+ /* @__PURE__ */ t("path", {
872
+ fill: "url(#paint6_linear_15759_16997)",
873
+ 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"
874
+ }),
875
+ /* @__PURE__ */ t("path", {
876
+ fill: "url(#paint7_linear_15759_16997)",
877
+ 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"
878
+ }),
879
+ /* @__PURE__ */ t("path", {
880
+ fill: "url(#paint8_linear_15759_16997)",
881
+ 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"
882
+ }),
883
+ /* @__PURE__ */ t("path", {
884
+ fill: "url(#paint9_linear_15759_16997)",
885
+ 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"
886
+ }),
887
+ /* @__PURE__ */ t("path", {
888
+ fill: "url(#paint10_linear_15759_16997)",
889
+ 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"
890
+ }),
891
+ /* @__PURE__ */ t("path", {
892
+ fill: "url(#paint11_linear_15759_16997)",
893
+ 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"
894
+ }),
895
+ /* @__PURE__ */ t("path", {
896
+ fill: "url(#paint12_linear_15759_16997)",
897
+ 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"
898
+ }),
899
+ /* @__PURE__ */ t("path", {
900
+ fill: "url(#paint13_linear_15759_16997)",
901
+ 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"
902
+ }),
903
+ /* @__PURE__ */ t("path", {
904
+ fill: "url(#paint14_linear_15759_16997)",
905
+ 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"
906
+ }),
907
+ /* @__PURE__ */ t("path", {
908
+ fill: "url(#paint15_linear_15759_16997)",
909
+ 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"
910
+ }),
911
+ /* @__PURE__ */ t("path", {
912
+ fill: "url(#paint16_linear_15759_16997)",
913
+ 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"
914
+ }),
915
+ /* @__PURE__ */ t("path", {
916
+ fill: "url(#paint17_radial_15759_16997)",
917
+ 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"
918
+ }),
919
+ /* @__PURE__ */ t("path", {
920
+ fill: "url(#paint18_radial_15759_16997)",
921
+ 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"
922
+ }),
923
+ /* @__PURE__ */ t("path", {
924
+ fill: "url(#paint19_radial_15759_16997)",
925
+ 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"
926
+ }),
927
+ /* @__PURE__ */ t("path", {
928
+ fill: "url(#paint20_radial_15759_16997)",
929
+ 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"
930
+ }),
931
+ /* @__PURE__ */ t("path", {
932
+ fill: "url(#paint21_linear_15759_16997)",
933
+ 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"
934
+ }),
935
+ /* @__PURE__ */ t("path", {
936
+ fill: "url(#paint22_linear_15759_16997)",
937
+ 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"
938
+ }),
939
+ /* @__PURE__ */ t("path", {
940
+ fill: "url(#paint23_linear_15759_16997)",
941
+ 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"
942
+ }),
943
+ /* @__PURE__ */ t("path", {
944
+ fill: "url(#paint24_linear_15759_16997)",
945
+ 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"
946
+ }),
947
+ /* @__PURE__ */ t("path", {
948
+ fill: "url(#paint25_linear_15759_16997)",
949
+ 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"
950
+ }),
951
+ /* @__PURE__ */ t("path", {
952
+ fill: "url(#paint26_linear_15759_16997)",
953
+ 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"
954
+ }),
955
+ /* @__PURE__ */ t("path", {
956
+ fill: "url(#paint27_linear_15759_16997)",
957
+ 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"
958
+ }),
959
+ /* @__PURE__ */ t("path", {
960
+ fill: "url(#paint28_linear_15759_16997)",
961
+ 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"
962
+ }),
963
+ /* @__PURE__ */ t("path", {
964
+ fill: "url(#paint29_linear_15759_16997)",
965
+ 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"
966
+ }),
967
+ /* @__PURE__ */ t("path", {
968
+ fill: "url(#paint30_radial_15759_16997)",
969
+ 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"
970
+ }),
971
+ /* @__PURE__ */ t("path", {
972
+ fill: "url(#paint31_linear_15759_16997)",
973
+ 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"
974
+ }),
975
+ /* @__PURE__ */ t("path", {
976
+ fill: "url(#paint32_linear_15759_16997)",
977
+ 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"
978
+ }),
979
+ /* @__PURE__ */ t("path", {
980
+ fill: "url(#paint33_linear_15759_16997)",
981
+ 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"
982
+ }),
983
+ /* @__PURE__ */ t("path", {
984
+ fill: "url(#paint34_linear_15759_16997)",
985
+ 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"
986
+ }),
987
+ /* @__PURE__ */ t("path", {
988
+ fill: "url(#paint35_linear_15759_16997)",
989
+ 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"
990
+ }),
991
+ /* @__PURE__ */ t("path", {
992
+ fill: "url(#paint36_linear_15759_16997)",
993
+ 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"
994
+ }),
995
+ /* @__PURE__ */ t("path", {
996
+ fill: "url(#paint37_linear_15759_16997)",
997
+ 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"
998
+ }),
999
+ /* @__PURE__ */ t("path", {
1000
+ fill: "url(#paint38_radial_15759_16997)",
1001
+ 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"
1002
+ }),
1003
+ /* @__PURE__ */ t("path", {
1004
+ fill: "url(#paint39_linear_15759_16997)",
1005
+ 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"
1006
+ }),
1007
+ /* @__PURE__ */ t("path", {
1008
+ fill: "#804b24",
1009
+ 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"
1010
+ }),
1011
+ /* @__PURE__ */ t("path", {
1012
+ fill: "#804b24",
1013
+ 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"
1014
+ }),
1015
+ /* @__PURE__ */ t("path", {
1016
+ fill: "#804b24",
1017
+ 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"
1018
+ }),
1019
+ /* @__PURE__ */ n("defs", { children: [
1020
+ /* @__PURE__ */ n("linearGradient", {
1021
+ id: "paint0_linear_15759_16997",
1022
+ x1: 13.17,
1023
+ x2: 22.69,
1024
+ y1: 20.37,
1025
+ y2: 19.99,
1026
+ gradientUnits: "userSpaceOnUse",
1027
+ children: [/* @__PURE__ */ t("stop", {
1028
+ offset: 0,
1029
+ stopColor: "#ffcb4b"
1030
+ }), /* @__PURE__ */ t("stop", {
1031
+ offset: 1,
1032
+ stopColor: "#ffd748"
1033
+ })]
1034
+ }),
1035
+ /* @__PURE__ */ n("linearGradient", {
1036
+ id: "paint1_linear_15759_16997",
1037
+ x1: 22.77,
1038
+ x2: 23.43,
1039
+ y1: 15.41,
1040
+ y2: 8.26,
1041
+ gradientUnits: "userSpaceOnUse",
1042
+ children: [/* @__PURE__ */ t("stop", {
1043
+ offset: 0,
1044
+ stopColor: "#ffcb4b"
1045
+ }), /* @__PURE__ */ t("stop", {
1046
+ offset: 1,
1047
+ stopColor: "#ffd748"
1048
+ })]
1049
+ }),
1050
+ /* @__PURE__ */ n("linearGradient", {
1051
+ id: "paint2_linear_15759_16997",
1052
+ x1: 24.66,
1053
+ x2: 17.49,
1054
+ y1: 26.01,
1055
+ y2: 15.76,
1056
+ gradientUnits: "userSpaceOnUse",
1057
+ children: [/* @__PURE__ */ t("stop", {
1058
+ offset: 0,
1059
+ stopColor: "#ffcb4b"
1060
+ }), /* @__PURE__ */ t("stop", {
1061
+ offset: 1,
1062
+ stopColor: "#ffd748"
1063
+ })]
1064
+ }),
1065
+ /* @__PURE__ */ n("linearGradient", {
1066
+ id: "paint3_linear_15759_16997",
1067
+ x1: 29.85,
1068
+ x2: 11.48,
1069
+ y1: 30.1,
1070
+ y2: 28.72,
1071
+ gradientUnits: "userSpaceOnUse",
1072
+ children: [/* @__PURE__ */ t("stop", {
1073
+ offset: .31,
1074
+ stopColor: "#ffbc47",
1075
+ stopOpacity: 0
1076
+ }), /* @__PURE__ */ t("stop", {
1077
+ offset: 1,
1078
+ stopColor: "#ff8900"
1079
+ })]
1080
+ }),
1081
+ /* @__PURE__ */ n("linearGradient", {
1082
+ id: "paint4_linear_15759_16997",
1083
+ x1: 30.2,
1084
+ x2: 6.08,
1085
+ y1: 13.77,
1086
+ y2: 13.77,
1087
+ gradientUnits: "userSpaceOnUse",
1088
+ children: [/* @__PURE__ */ t("stop", {
1089
+ stopColor: "#ffbc47",
1090
+ stopOpacity: 0
1091
+ }), /* @__PURE__ */ t("stop", {
1092
+ offset: 1,
1093
+ stopColor: "#ffa754"
1094
+ })]
1095
+ }),
1096
+ /* @__PURE__ */ n("linearGradient", {
1097
+ id: "paint5_linear_15759_16997",
1098
+ x1: 34.09,
1099
+ x2: -13.56,
1100
+ y1: 13.73,
1101
+ y2: 12.21,
1102
+ gradientUnits: "userSpaceOnUse",
1103
+ children: [/* @__PURE__ */ t("stop", {
1104
+ stopColor: "#ffbc47",
1105
+ stopOpacity: 0
1106
+ }), /* @__PURE__ */ t("stop", {
1107
+ offset: 1,
1108
+ stopColor: "#c86f34"
1109
+ })]
1110
+ }),
1111
+ /* @__PURE__ */ n("linearGradient", {
1112
+ id: "paint6_linear_15759_16997",
1113
+ x1: 26.52,
1114
+ x2: 18.64,
1115
+ y1: 7.5,
1116
+ y2: 11.77,
1117
+ gradientUnits: "userSpaceOnUse",
1118
+ children: [/* @__PURE__ */ t("stop", {
1119
+ stopColor: "#ffbc47",
1120
+ stopOpacity: 0
1121
+ }), /* @__PURE__ */ t("stop", {
1122
+ offset: 1,
1123
+ stopColor: "#c86f34"
1124
+ })]
1125
+ }),
1126
+ /* @__PURE__ */ n("linearGradient", {
1127
+ id: "paint7_linear_15759_16997",
1128
+ x1: 17.49,
1129
+ x2: 10.92,
1130
+ y1: 13.57,
1131
+ y2: 14.43,
1132
+ gradientUnits: "userSpaceOnUse",
1133
+ children: [/* @__PURE__ */ t("stop", {
1134
+ stopColor: "#643800",
1135
+ stopOpacity: 0
1136
+ }), /* @__PURE__ */ t("stop", {
1137
+ offset: 1,
1138
+ stopColor: "#643800"
1139
+ })]
1140
+ }),
1141
+ /* @__PURE__ */ n("linearGradient", {
1142
+ id: "paint8_linear_15759_16997",
1143
+ x1: 29.16,
1144
+ x2: 27.73,
1145
+ y1: 28.08,
1146
+ y2: 4.47,
1147
+ gradientUnits: "userSpaceOnUse",
1148
+ children: [/* @__PURE__ */ t("stop", {
1149
+ stopColor: "#ffbc47",
1150
+ stopOpacity: 0
1151
+ }), /* @__PURE__ */ t("stop", {
1152
+ offset: 1,
1153
+ stopColor: "#ffa754"
1154
+ })]
1155
+ }),
1156
+ /* @__PURE__ */ n("linearGradient", {
1157
+ id: "paint9_linear_15759_16997",
1158
+ x1: 7.34,
1159
+ x2: 16.66,
1160
+ y1: 20.5,
1161
+ y2: 20.5,
1162
+ gradientUnits: "userSpaceOnUse",
1163
+ children: [/* @__PURE__ */ t("stop", {
1164
+ offset: 0,
1165
+ stopColor: "#ffbc47"
1166
+ }), /* @__PURE__ */ t("stop", {
1167
+ offset: 1,
1168
+ stopColor: "#ffd748"
1169
+ })]
1170
+ }),
1171
+ /* @__PURE__ */ n("linearGradient", {
1172
+ id: "paint10_linear_15759_16997",
1173
+ x1: 7.34,
1174
+ x2: 16.67,
1175
+ y1: 10.64,
1176
+ y2: 10.64,
1177
+ gradientUnits: "userSpaceOnUse",
1178
+ children: [/* @__PURE__ */ t("stop", {
1179
+ offset: 0,
1180
+ stopColor: "#ffbc47"
1181
+ }), /* @__PURE__ */ t("stop", {
1182
+ offset: 1,
1183
+ stopColor: "#ffd748"
1184
+ })]
1185
+ }),
1186
+ /* @__PURE__ */ n("linearGradient", {
1187
+ id: "paint11_linear_15759_16997",
1188
+ x1: 7.34,
1189
+ x2: 16.66,
1190
+ y1: 6.22,
1191
+ y2: 6.22,
1192
+ gradientUnits: "userSpaceOnUse",
1193
+ children: [/* @__PURE__ */ t("stop", {
1194
+ offset: 0,
1195
+ stopColor: "#ffbc47"
1196
+ }), /* @__PURE__ */ t("stop", {
1197
+ offset: 1,
1198
+ stopColor: "#ffd748"
1199
+ })]
1200
+ }),
1201
+ /* @__PURE__ */ n("linearGradient", {
1202
+ id: "paint12_linear_15759_16997",
1203
+ x1: 17.92,
1204
+ x2: 13.06,
1205
+ y1: 20.45,
1206
+ y2: 20.56,
1207
+ gradientUnits: "userSpaceOnUse",
1208
+ children: [/* @__PURE__ */ t("stop", {
1209
+ offset: 0,
1210
+ stopColor: "#ffcb4b"
1211
+ }), /* @__PURE__ */ t("stop", {
1212
+ offset: 1,
1213
+ stopColor: "#ffd748"
1214
+ })]
1215
+ }),
1216
+ /* @__PURE__ */ n("linearGradient", {
1217
+ id: "paint13_linear_15759_16997",
1218
+ x1: 9.42,
1219
+ x2: 14.38,
1220
+ y1: 10.57,
1221
+ y2: 10.57,
1222
+ gradientUnits: "userSpaceOnUse",
1223
+ children: [/* @__PURE__ */ t("stop", {
1224
+ offset: 0,
1225
+ stopColor: "#ffcb4b"
1226
+ }), /* @__PURE__ */ t("stop", {
1227
+ offset: 1,
1228
+ stopColor: "#ffd748"
1229
+ })]
1230
+ }),
1231
+ /* @__PURE__ */ n("linearGradient", {
1232
+ id: "paint14_linear_15759_16997",
1233
+ x1: 9.42,
1234
+ x2: 14.38,
1235
+ y1: 6.22,
1236
+ y2: 6.22,
1237
+ gradientUnits: "userSpaceOnUse",
1238
+ children: [/* @__PURE__ */ t("stop", {
1239
+ offset: 0,
1240
+ stopColor: "#ffcb4b"
1241
+ }), /* @__PURE__ */ t("stop", {
1242
+ offset: 1,
1243
+ stopColor: "#ffd748"
1244
+ })]
1245
+ }),
1246
+ /* @__PURE__ */ n("linearGradient", {
1247
+ id: "paint15_linear_15759_16997",
1248
+ x1: 15.47,
1249
+ x2: 18.11,
1250
+ y1: 20.56,
1251
+ y2: 20.56,
1252
+ gradientUnits: "userSpaceOnUse",
1253
+ children: [/* @__PURE__ */ t("stop", {
1254
+ offset: 0,
1255
+ stopColor: "#fba23b",
1256
+ stopOpacity: 0
1257
+ }), /* @__PURE__ */ t("stop", {
1258
+ offset: 1,
1259
+ stopColor: "#fba23b"
1260
+ })]
1261
+ }),
1262
+ /* @__PURE__ */ n("linearGradient", {
1263
+ id: "paint16_linear_15759_16997",
1264
+ x1: 15.94,
1265
+ x2: 18.98,
1266
+ y1: 20.49,
1267
+ y2: 20.49,
1268
+ gradientUnits: "userSpaceOnUse",
1269
+ children: [/* @__PURE__ */ t("stop", {
1270
+ offset: 0,
1271
+ stopColor: "#ffbc47"
1272
+ }), /* @__PURE__ */ t("stop", {
1273
+ offset: 1,
1274
+ stopColor: "#e89043"
1275
+ })]
1276
+ }),
1277
+ /* @__PURE__ */ n("linearGradient", {
1278
+ id: "paint21_linear_15759_16997",
1279
+ x1: 15.15,
1280
+ x2: 18.98,
1281
+ y1: 10.69,
1282
+ y2: 10.69,
1283
+ gradientUnits: "userSpaceOnUse",
1284
+ children: [/* @__PURE__ */ t("stop", {
1285
+ offset: 0,
1286
+ stopColor: "#fba23b",
1287
+ stopOpacity: 0
1288
+ }), /* @__PURE__ */ t("stop", {
1289
+ offset: 1,
1290
+ stopColor: "#fba23b"
1291
+ })]
1292
+ }),
1293
+ /* @__PURE__ */ n("linearGradient", {
1294
+ id: "paint22_linear_15759_16997",
1295
+ x1: 15.97,
1296
+ x2: 18.03,
1297
+ y1: 10.83,
1298
+ y2: 10.83,
1299
+ gradientUnits: "userSpaceOnUse",
1300
+ children: [/* @__PURE__ */ t("stop", {
1301
+ offset: 0,
1302
+ stopColor: "#ffbc47"
1303
+ }), /* @__PURE__ */ t("stop", {
1304
+ offset: 1,
1305
+ stopColor: "#fba23b"
1306
+ })]
1307
+ }),
1308
+ /* @__PURE__ */ n("linearGradient", {
1309
+ id: "paint23_linear_15759_16997",
1310
+ x1: 15.29,
1311
+ x2: 19.77,
1312
+ y1: 6.2,
1313
+ y2: 7.02,
1314
+ gradientUnits: "userSpaceOnUse",
1315
+ children: [/* @__PURE__ */ t("stop", {
1316
+ offset: 0,
1317
+ stopColor: "#fba23b",
1318
+ stopOpacity: 0
1319
+ }), /* @__PURE__ */ t("stop", {
1320
+ offset: 1,
1321
+ stopColor: "#fba23b"
1322
+ })]
1323
+ }),
1324
+ /* @__PURE__ */ n("linearGradient", {
1325
+ id: "paint24_linear_15759_16997",
1326
+ x1: 15.75,
1327
+ x2: 17.65,
1328
+ y1: 6.34,
1329
+ y2: 6.34,
1330
+ gradientUnits: "userSpaceOnUse",
1331
+ children: [/* @__PURE__ */ t("stop", {
1332
+ offset: 0,
1333
+ stopColor: "#ffbc47"
1334
+ }), /* @__PURE__ */ t("stop", {
1335
+ offset: 1,
1336
+ stopColor: "#fba23b"
1337
+ })]
1338
+ }),
1339
+ /* @__PURE__ */ n("linearGradient", {
1340
+ id: "paint25_linear_15759_16997",
1341
+ x1: 12.74,
1342
+ x2: 11.53,
1343
+ y1: 21.08,
1344
+ y2: 15.26,
1345
+ gradientUnits: "userSpaceOnUse",
1346
+ children: [/* @__PURE__ */ t("stop", {
1347
+ stopColor: "#ffbc47",
1348
+ stopOpacity: 0
1349
+ }), /* @__PURE__ */ t("stop", {
1350
+ offset: 1,
1351
+ stopColor: "#c86f34"
1352
+ })]
1353
+ }),
1354
+ /* @__PURE__ */ n("linearGradient", {
1355
+ id: "paint26_linear_15759_16997",
1356
+ x1: 11.82,
1357
+ x2: 13.13,
1358
+ y1: 9.57,
1359
+ y2: 14.31,
1360
+ gradientUnits: "userSpaceOnUse",
1361
+ children: [/* @__PURE__ */ t("stop", {
1362
+ stopColor: "#ffbc47",
1363
+ stopOpacity: 0
1364
+ }), /* @__PURE__ */ t("stop", {
1365
+ offset: 1,
1366
+ stopColor: "#c86f34"
1367
+ })]
1368
+ }),
1369
+ /* @__PURE__ */ n("linearGradient", {
1370
+ id: "paint27_linear_15759_16997",
1371
+ x1: 7.34,
1372
+ x2: 16.66,
1373
+ y1: 15.16,
1374
+ y2: 15.16,
1375
+ gradientUnits: "userSpaceOnUse",
1376
+ children: [/* @__PURE__ */ t("stop", {
1377
+ offset: 0,
1378
+ stopColor: "#ffbc47"
1379
+ }), /* @__PURE__ */ t("stop", {
1380
+ offset: 1,
1381
+ stopColor: "#ffd748"
1382
+ })]
1383
+ }),
1384
+ /* @__PURE__ */ n("linearGradient", {
1385
+ id: "paint28_linear_15759_16997",
1386
+ x1: 17.04,
1387
+ x2: 9.89,
1388
+ y1: 15.42,
1389
+ y2: 15.16,
1390
+ gradientUnits: "userSpaceOnUse",
1391
+ children: [
1392
+ /* @__PURE__ */ t("stop", {
1393
+ offset: 0,
1394
+ stopColor: "#ffcb4b"
1395
+ }),
1396
+ /* @__PURE__ */ t("stop", {
1397
+ offset: .74,
1398
+ stopColor: "#ffd748"
1399
+ }),
1400
+ /* @__PURE__ */ t("stop", {
1401
+ offset: 1,
1402
+ stopColor: "#ffcb4b"
1403
+ })
1404
+ ]
1405
+ }),
1406
+ /* @__PURE__ */ n("linearGradient", {
1407
+ id: "paint29_linear_15759_16997",
1408
+ x1: 14.25,
1409
+ x2: 19.59,
1410
+ y1: 15.26,
1411
+ y2: 15.26,
1412
+ gradientUnits: "userSpaceOnUse",
1413
+ children: [/* @__PURE__ */ t("stop", {
1414
+ offset: 0,
1415
+ stopColor: "#fba23b",
1416
+ stopOpacity: 0
1417
+ }), /* @__PURE__ */ t("stop", {
1418
+ offset: 1,
1419
+ stopColor: "#fba23b"
1420
+ })]
1421
+ }),
1422
+ /* @__PURE__ */ n("linearGradient", {
1423
+ id: "paint31_linear_15759_16997",
1424
+ x1: 16.73,
1425
+ x2: 18.42,
1426
+ y1: 15.27,
1427
+ y2: 15.27,
1428
+ gradientUnits: "userSpaceOnUse",
1429
+ children: [/* @__PURE__ */ t("stop", {
1430
+ offset: 0,
1431
+ stopColor: "#ffbc47"
1432
+ }), /* @__PURE__ */ t("stop", {
1433
+ offset: 1,
1434
+ stopColor: "#fba23b"
1435
+ })]
1436
+ }),
1437
+ /* @__PURE__ */ n("linearGradient", {
1438
+ id: "paint32_linear_15759_16997",
1439
+ x1: 12.29,
1440
+ x2: 11.28,
1441
+ y1: 15.78,
1442
+ y2: 9.34,
1443
+ gradientUnits: "userSpaceOnUse",
1444
+ children: [/* @__PURE__ */ t("stop", {
1445
+ stopColor: "#ffbc47",
1446
+ stopOpacity: 0
1447
+ }), /* @__PURE__ */ t("stop", {
1448
+ offset: 1,
1449
+ stopColor: "#c86f34"
1450
+ })]
1451
+ }),
1452
+ /* @__PURE__ */ n("linearGradient", {
1453
+ id: "paint33_linear_15759_16997",
1454
+ x1: 13,
1455
+ x2: 10.4,
1456
+ y1: 10.8,
1457
+ y2: 5.16,
1458
+ gradientUnits: "userSpaceOnUse",
1459
+ children: [/* @__PURE__ */ t("stop", {
1460
+ stopColor: "#ffbc47",
1461
+ stopOpacity: 0
1462
+ }), /* @__PURE__ */ t("stop", {
1463
+ offset: 1,
1464
+ stopColor: "#c86f34"
1465
+ })]
1466
+ }),
1467
+ /* @__PURE__ */ n("linearGradient", {
1468
+ id: "paint34_linear_15759_16997",
1469
+ x1: 13.51,
1470
+ x2: 13.13,
1471
+ y1: 5.85,
1472
+ y2: 2.29,
1473
+ gradientUnits: "userSpaceOnUse",
1474
+ children: [/* @__PURE__ */ t("stop", {
1475
+ stopColor: "#ffbc47",
1476
+ stopOpacity: 0
1477
+ }), /* @__PURE__ */ t("stop", {
1478
+ offset: 1,
1479
+ stopColor: "#c86f34"
1480
+ })]
1481
+ }),
1482
+ /* @__PURE__ */ n("linearGradient", {
1483
+ id: "paint35_linear_15759_16997",
1484
+ x1: 13.42,
1485
+ x2: 13.42,
1486
+ y1: 6.39,
1487
+ y2: 8.97,
1488
+ gradientUnits: "userSpaceOnUse",
1489
+ children: [/* @__PURE__ */ t("stop", {
1490
+ stopColor: "#ffbc47",
1491
+ stopOpacity: 0
1492
+ }), /* @__PURE__ */ t("stop", {
1493
+ offset: 1,
1494
+ stopColor: "#c86f34"
1495
+ })]
1496
+ }),
1497
+ /* @__PURE__ */ n("linearGradient", {
1498
+ id: "paint36_linear_15759_16997",
1499
+ x1: 31.12,
1500
+ x2: 34.45,
1501
+ y1: 15.85,
1502
+ y2: 25.99,
1503
+ gradientUnits: "userSpaceOnUse",
1504
+ children: [/* @__PURE__ */ t("stop", {
1505
+ stopColor: "#c86f34",
1506
+ stopOpacity: 0
1507
+ }), /* @__PURE__ */ t("stop", {
1508
+ offset: 1,
1509
+ stopColor: "#c86f34"
1510
+ })]
1511
+ }),
1512
+ /* @__PURE__ */ n("linearGradient", {
1513
+ id: "paint37_linear_15759_16997",
1514
+ x1: 30.55,
1515
+ x2: 30.74,
1516
+ y1: 9.69,
1517
+ y2: 2.43,
1518
+ gradientUnits: "userSpaceOnUse",
1519
+ children: [/* @__PURE__ */ t("stop", {
1520
+ stopColor: "#ffbc47",
1521
+ stopOpacity: 0
1522
+ }), /* @__PURE__ */ t("stop", {
1523
+ offset: 1,
1524
+ stopColor: "#c86f34"
1525
+ })]
1526
+ }),
1527
+ /* @__PURE__ */ n("linearGradient", {
1528
+ id: "paint39_linear_15759_16997",
1529
+ x1: 20.38,
1530
+ x2: 17.94,
1531
+ y1: 21.74,
1532
+ y2: 43.79,
1533
+ gradientUnits: "userSpaceOnUse",
1534
+ children: [/* @__PURE__ */ t("stop", {
1535
+ stopColor: "#ffbc47",
1536
+ stopOpacity: 0
1537
+ }), /* @__PURE__ */ t("stop", {
1538
+ offset: 1,
1539
+ stopColor: "#c86f34"
1540
+ })]
1541
+ }),
1542
+ /* @__PURE__ */ n("radialGradient", {
1543
+ id: "paint17_radial_15759_16997",
1544
+ cx: 0,
1545
+ cy: 0,
1546
+ r: 1,
1547
+ gradientTransform: "matrix(-3.57 -1 .46 -1.66 26 9.47)",
1548
+ gradientUnits: "userSpaceOnUse",
1549
+ children: [/* @__PURE__ */ t("stop", { stopColor: "#fbe07a" }), /* @__PURE__ */ t("stop", {
1550
+ offset: 1,
1551
+ stopColor: "#ffd748",
1552
+ stopOpacity: 0
1553
+ })]
1554
+ }),
1555
+ /* @__PURE__ */ n("radialGradient", {
1556
+ id: "paint18_radial_15759_16997",
1557
+ cx: 0,
1558
+ cy: 0,
1559
+ r: 1,
1560
+ gradientTransform: "rotate(182 6.22 10.13)scale(3.17 2.08)",
1561
+ gradientUnits: "userSpaceOnUse",
1562
+ children: [/* @__PURE__ */ t("stop", { stopColor: "#fbe07a" }), /* @__PURE__ */ t("stop", {
1563
+ offset: 1,
1564
+ stopColor: "#ffd748"
1565
+ })]
1566
+ }),
1567
+ /* @__PURE__ */ n("radialGradient", {
1568
+ id: "paint19_radial_15759_16997",
1569
+ cx: 0,
1570
+ cy: 0,
1571
+ r: 1,
1572
+ gradientTransform: "matrix(-3.4 0 0 -1.84 12.23 10.25)",
1573
+ gradientUnits: "userSpaceOnUse",
1574
+ children: [/* @__PURE__ */ t("stop", { stopColor: "#fbe07a" }), /* @__PURE__ */ t("stop", {
1575
+ offset: 1,
1576
+ stopColor: "#ffd748",
1577
+ stopOpacity: 0
1578
+ })]
1579
+ }),
1580
+ /* @__PURE__ */ n("radialGradient", {
1581
+ id: "paint20_radial_15759_16997",
1582
+ cx: 0,
1583
+ cy: 0,
1584
+ r: 1,
1585
+ gradientTransform: "matrix(-3.12 0 0 -1.95 13.41 6.12)",
1586
+ gradientUnits: "userSpaceOnUse",
1587
+ children: [/* @__PURE__ */ t("stop", { stopColor: "#fbe07a" }), /* @__PURE__ */ t("stop", {
1588
+ offset: 1,
1589
+ stopColor: "#ffd748",
1590
+ stopOpacity: 0
1591
+ })]
1592
+ }),
1593
+ /* @__PURE__ */ n("radialGradient", {
1594
+ id: "paint30_radial_15759_16997",
1595
+ cx: 0,
1596
+ cy: 0,
1597
+ r: 1,
1598
+ gradientTransform: "rotate(177 5.4 7.76)scale(3.49 2.3)",
1599
+ gradientUnits: "userSpaceOnUse",
1600
+ children: [/* @__PURE__ */ t("stop", { stopColor: "#fbe07a" }), /* @__PURE__ */ t("stop", {
1601
+ offset: 1,
1602
+ stopColor: "#ffd748",
1603
+ stopOpacity: 0
1604
+ })]
1605
+ }),
1606
+ /* @__PURE__ */ n("radialGradient", {
1607
+ id: "paint38_radial_15759_16997",
1608
+ cx: 0,
1609
+ cy: 0,
1610
+ r: 1,
1611
+ gradientTransform: "rotate(259 23.1 8.58)scale(3.35 1.96)",
1612
+ gradientUnits: "userSpaceOnUse",
1613
+ children: [/* @__PURE__ */ t("stop", { stopColor: "#fbe07a" }), /* @__PURE__ */ t("stop", {
1614
+ offset: 1,
1615
+ stopColor: "#ffd748",
1616
+ stopOpacity: 0
1617
+ })]
1618
+ })
1619
+ ] })
1620
+ ]
1621
+ }), A = (e) => /* @__PURE__ */ n("svg", {
1622
+ xmlns: "http://www.w3.org/2000/svg",
1623
+ width: 40,
1624
+ height: 40,
1625
+ fill: "none",
1626
+ viewBox: "0 0 40 40",
1627
+ ...e,
1628
+ children: [
1629
+ /* @__PURE__ */ t("path", {
1630
+ fill: "url(#paint0_linear_15759_16949)",
1631
+ 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"
1632
+ }),
1633
+ /* @__PURE__ */ t("path", {
1634
+ fill: "url(#paint1_linear_15759_16949)",
1635
+ 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"
1636
+ }),
1637
+ /* @__PURE__ */ t("path", {
1638
+ fill: "url(#paint2_linear_15759_16949)",
1639
+ 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"
1640
+ }),
1641
+ /* @__PURE__ */ t("path", {
1642
+ fill: "url(#paint3_linear_15759_16949)",
1643
+ 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"
1644
+ }),
1645
+ /* @__PURE__ */ t("path", {
1646
+ fill: "url(#paint4_linear_15759_16949)",
1647
+ 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"
1648
+ }),
1649
+ /* @__PURE__ */ t("path", {
1650
+ fill: "url(#paint5_linear_15759_16949)",
1651
+ 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"
1652
+ }),
1653
+ /* @__PURE__ */ t("path", {
1654
+ fill: "url(#paint6_linear_15759_16949)",
1655
+ 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"
1656
+ }),
1657
+ /* @__PURE__ */ t("path", {
1658
+ fill: "url(#paint7_linear_15759_16949)",
1659
+ 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"
1660
+ }),
1661
+ /* @__PURE__ */ t("path", {
1662
+ fill: "url(#paint8_linear_15759_16949)",
1663
+ 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"
1664
+ }),
1665
+ /* @__PURE__ */ t("path", {
1666
+ fill: "url(#paint9_linear_15759_16949)",
1667
+ 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"
1668
+ }),
1669
+ /* @__PURE__ */ t("path", {
1670
+ fill: "url(#paint10_linear_15759_16949)",
1671
+ 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"
1672
+ }),
1673
+ /* @__PURE__ */ t("path", {
1674
+ fill: "url(#paint11_linear_15759_16949)",
1675
+ 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"
1676
+ }),
1677
+ /* @__PURE__ */ t("path", {
1678
+ fill: "url(#paint12_linear_15759_16949)",
1679
+ 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"
1680
+ }),
1681
+ /* @__PURE__ */ t("path", {
1682
+ fill: "url(#paint13_linear_15759_16949)",
1683
+ 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"
1684
+ }),
1685
+ /* @__PURE__ */ t("path", {
1686
+ fill: "url(#paint14_linear_15759_16949)",
1687
+ 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"
1688
+ }),
1689
+ /* @__PURE__ */ t("path", {
1690
+ fill: "url(#paint15_linear_15759_16949)",
1691
+ 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"
1692
+ }),
1693
+ /* @__PURE__ */ t("path", {
1694
+ fill: "url(#paint16_linear_15759_16949)",
1695
+ 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"
1696
+ }),
1697
+ /* @__PURE__ */ t("path", {
1698
+ fill: "url(#paint17_radial_15759_16949)",
1699
+ 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"
1700
+ }),
1701
+ /* @__PURE__ */ t("path", {
1702
+ fill: "url(#paint18_radial_15759_16949)",
1703
+ 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"
1704
+ }),
1705
+ /* @__PURE__ */ t("path", {
1706
+ fill: "url(#paint19_radial_15759_16949)",
1707
+ 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"
1708
+ }),
1709
+ /* @__PURE__ */ t("path", {
1710
+ fill: "url(#paint20_radial_15759_16949)",
1711
+ 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"
1712
+ }),
1713
+ /* @__PURE__ */ t("path", {
1714
+ fill: "url(#paint21_linear_15759_16949)",
1715
+ 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"
1716
+ }),
1717
+ /* @__PURE__ */ t("path", {
1718
+ fill: "url(#paint22_linear_15759_16949)",
1719
+ 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"
1720
+ }),
1721
+ /* @__PURE__ */ t("path", {
1722
+ fill: "url(#paint23_linear_15759_16949)",
1723
+ 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"
1724
+ }),
1725
+ /* @__PURE__ */ t("path", {
1726
+ fill: "url(#paint24_linear_15759_16949)",
1727
+ 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"
1728
+ }),
1729
+ /* @__PURE__ */ t("path", {
1730
+ fill: "url(#paint25_linear_15759_16949)",
1731
+ 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"
1732
+ }),
1733
+ /* @__PURE__ */ t("path", {
1734
+ fill: "url(#paint26_linear_15759_16949)",
1735
+ 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"
1736
+ }),
1737
+ /* @__PURE__ */ t("path", {
1738
+ fill: "url(#paint27_linear_15759_16949)",
1739
+ 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"
1740
+ }),
1741
+ /* @__PURE__ */ t("path", {
1742
+ fill: "url(#paint28_linear_15759_16949)",
1743
+ 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"
1744
+ }),
1745
+ /* @__PURE__ */ t("path", {
1746
+ fill: "url(#paint29_linear_15759_16949)",
1747
+ 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"
1748
+ }),
1749
+ /* @__PURE__ */ t("path", {
1750
+ fill: "url(#paint30_radial_15759_16949)",
1751
+ 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"
1752
+ }),
1753
+ /* @__PURE__ */ t("path", {
1754
+ fill: "url(#paint31_linear_15759_16949)",
1755
+ 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"
1756
+ }),
1757
+ /* @__PURE__ */ t("path", {
1758
+ fill: "url(#paint32_linear_15759_16949)",
1759
+ 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"
1760
+ }),
1761
+ /* @__PURE__ */ t("path", {
1762
+ fill: "url(#paint33_linear_15759_16949)",
1763
+ 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"
1764
+ }),
1765
+ /* @__PURE__ */ t("path", {
1766
+ fill: "url(#paint34_linear_15759_16949)",
1767
+ 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"
1768
+ }),
1769
+ /* @__PURE__ */ t("path", {
1770
+ fill: "url(#paint35_linear_15759_16949)",
1771
+ 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"
1772
+ }),
1773
+ /* @__PURE__ */ t("path", {
1774
+ fill: "url(#paint36_linear_15759_16949)",
1775
+ 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"
1776
+ }),
1777
+ /* @__PURE__ */ t("path", {
1778
+ fill: "url(#paint37_linear_15759_16949)",
1779
+ 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"
1780
+ }),
1781
+ /* @__PURE__ */ t("path", {
1782
+ fill: "url(#paint38_linear_15759_16949)",
1783
+ 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"
1784
+ }),
1785
+ /* @__PURE__ */ t("path", {
1786
+ fill: "url(#paint39_radial_15759_16949)",
1787
+ 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"
1788
+ }),
1789
+ /* @__PURE__ */ t("path", {
1790
+ fill: "#804b24",
1791
+ 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"
1792
+ }),
1793
+ /* @__PURE__ */ t("path", {
1794
+ fill: "#804b24",
1795
+ 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"
1796
+ }),
1797
+ /* @__PURE__ */ n("defs", { children: [
1798
+ /* @__PURE__ */ n("linearGradient", {
1799
+ id: "paint0_linear_15759_16949",
1800
+ x1: 26.83,
1801
+ x2: 17.31,
1802
+ y1: 19.63,
1803
+ y2: 20.01,
1804
+ gradientUnits: "userSpaceOnUse",
1805
+ children: [/* @__PURE__ */ t("stop", {
1806
+ offset: 0,
1807
+ stopColor: "#ffcb4b"
1808
+ }), /* @__PURE__ */ t("stop", {
1809
+ offset: 1,
1810
+ stopColor: "#ffd748"
1811
+ })]
1812
+ }),
1813
+ /* @__PURE__ */ n("linearGradient", {
1814
+ id: "paint1_linear_15759_16949",
1815
+ x1: 16.56,
1816
+ x2: 16.37,
1817
+ y1: 32.83,
1818
+ y2: 27.83,
1819
+ gradientUnits: "userSpaceOnUse",
1820
+ children: [/* @__PURE__ */ t("stop", {
1821
+ offset: 0,
1822
+ stopColor: "#ffcb4b"
1823
+ }), /* @__PURE__ */ t("stop", {
1824
+ offset: 1,
1825
+ stopColor: "#ffd748"
1826
+ })]
1827
+ }),
1828
+ /* @__PURE__ */ n("linearGradient", {
1829
+ id: "paint2_linear_15759_16949",
1830
+ x1: 15.34,
1831
+ x2: 22.51,
1832
+ y1: 13.98,
1833
+ y2: 24.24,
1834
+ gradientUnits: "userSpaceOnUse",
1835
+ children: [/* @__PURE__ */ t("stop", {
1836
+ offset: 0,
1837
+ stopColor: "#ffcb4b"
1838
+ }), /* @__PURE__ */ t("stop", {
1839
+ offset: 1,
1840
+ stopColor: "#ffd748"
1841
+ })]
1842
+ }),
1843
+ /* @__PURE__ */ n("linearGradient", {
1844
+ id: "paint3_linear_15759_16949",
1845
+ x1: 10.15,
1846
+ x2: 28.52,
1847
+ y1: 9.9,
1848
+ y2: 11.27,
1849
+ gradientUnits: "userSpaceOnUse",
1850
+ children: [/* @__PURE__ */ t("stop", {
1851
+ offset: .31,
1852
+ stopColor: "#ffbc47",
1853
+ stopOpacity: 0
1854
+ }), /* @__PURE__ */ t("stop", {
1855
+ offset: 1,
1856
+ stopColor: "#ff8900"
1857
+ })]
1858
+ }),
1859
+ /* @__PURE__ */ n("linearGradient", {
1860
+ id: "paint4_linear_15759_16949",
1861
+ x1: 9.8,
1862
+ x2: 33.92,
1863
+ y1: 26.23,
1864
+ y2: 26.23,
1865
+ gradientUnits: "userSpaceOnUse",
1866
+ children: [/* @__PURE__ */ t("stop", {
1867
+ stopColor: "#ffbc47",
1868
+ stopOpacity: 0
1869
+ }), /* @__PURE__ */ t("stop", {
1870
+ offset: 1,
1871
+ stopColor: "#ffa754"
1872
+ })]
1873
+ }),
1874
+ /* @__PURE__ */ n("linearGradient", {
1875
+ id: "paint5_linear_15759_16949",
1876
+ x1: 5.91,
1877
+ x2: 53.56,
1878
+ y1: 26.27,
1879
+ y2: 27.79,
1880
+ gradientUnits: "userSpaceOnUse",
1881
+ children: [/* @__PURE__ */ t("stop", {
1882
+ stopColor: "#ffbc47",
1883
+ stopOpacity: 0
1884
+ }), /* @__PURE__ */ t("stop", {
1885
+ offset: 1,
1886
+ stopColor: "#c86f34"
1887
+ })]
1888
+ }),
1889
+ /* @__PURE__ */ n("linearGradient", {
1890
+ id: "paint6_linear_15759_16949",
1891
+ x1: 13.48,
1892
+ x2: 21.36,
1893
+ y1: 32.5,
1894
+ y2: 28.22,
1895
+ gradientUnits: "userSpaceOnUse",
1896
+ children: [/* @__PURE__ */ t("stop", {
1897
+ stopColor: "#ffbc47",
1898
+ stopOpacity: 0
1899
+ }), /* @__PURE__ */ t("stop", {
1900
+ offset: 1,
1901
+ stopColor: "#c86f34"
1902
+ })]
1903
+ }),
1904
+ /* @__PURE__ */ n("linearGradient", {
1905
+ id: "paint7_linear_15759_16949",
1906
+ x1: 22.51,
1907
+ x2: 29.08,
1908
+ y1: 26.43,
1909
+ y2: 25.57,
1910
+ gradientUnits: "userSpaceOnUse",
1911
+ children: [/* @__PURE__ */ t("stop", {
1912
+ stopColor: "#643800",
1913
+ stopOpacity: 0
1914
+ }), /* @__PURE__ */ t("stop", {
1915
+ offset: 1,
1916
+ stopColor: "#643800"
1917
+ })]
1918
+ }),
1919
+ /* @__PURE__ */ n("linearGradient", {
1920
+ id: "paint8_linear_15759_16949",
1921
+ x1: 10.84,
1922
+ x2: 12.27,
1923
+ y1: 11.92,
1924
+ y2: 35.53,
1925
+ gradientUnits: "userSpaceOnUse",
1926
+ children: [/* @__PURE__ */ t("stop", {
1927
+ stopColor: "#ffbc47",
1928
+ stopOpacity: 0
1929
+ }), /* @__PURE__ */ t("stop", {
1930
+ offset: 1,
1931
+ stopColor: "#ffa754"
1932
+ })]
1933
+ }),
1934
+ /* @__PURE__ */ n("linearGradient", {
1935
+ id: "paint9_linear_15759_16949",
1936
+ x1: 32.66,
1937
+ x2: 23.34,
1938
+ y1: 19.5,
1939
+ y2: 19.5,
1940
+ gradientUnits: "userSpaceOnUse",
1941
+ children: [/* @__PURE__ */ t("stop", {
1942
+ offset: 0,
1943
+ stopColor: "#ffbc47"
1944
+ }), /* @__PURE__ */ t("stop", {
1945
+ offset: 1,
1946
+ stopColor: "#ffd748"
1947
+ })]
1948
+ }),
1949
+ /* @__PURE__ */ n("linearGradient", {
1950
+ id: "paint10_linear_15759_16949",
1951
+ x1: 32.66,
1952
+ x2: 23.33,
1953
+ y1: 29.36,
1954
+ y2: 29.36,
1955
+ gradientUnits: "userSpaceOnUse",
1956
+ children: [/* @__PURE__ */ t("stop", {
1957
+ offset: 0,
1958
+ stopColor: "#ffbc47"
1959
+ }), /* @__PURE__ */ t("stop", {
1960
+ offset: 1,
1961
+ stopColor: "#ffd748"
1962
+ })]
1963
+ }),
1964
+ /* @__PURE__ */ n("linearGradient", {
1965
+ id: "paint11_linear_15759_16949",
1966
+ x1: 32.66,
1967
+ x2: 23.34,
1968
+ y1: 33.78,
1969
+ y2: 33.78,
1970
+ gradientUnits: "userSpaceOnUse",
1971
+ children: [/* @__PURE__ */ t("stop", {
1972
+ offset: 0,
1973
+ stopColor: "#ffbc47"
1974
+ }), /* @__PURE__ */ t("stop", {
1975
+ offset: 1,
1976
+ stopColor: "#ffd748"
1977
+ })]
1978
+ }),
1979
+ /* @__PURE__ */ n("linearGradient", {
1980
+ id: "paint12_linear_15759_16949",
1981
+ x1: 22.08,
1982
+ x2: 26.94,
1983
+ y1: 19.55,
1984
+ y2: 19.44,
1985
+ gradientUnits: "userSpaceOnUse",
1986
+ children: [/* @__PURE__ */ t("stop", {
1987
+ offset: 0,
1988
+ stopColor: "#ffcb4b"
1989
+ }), /* @__PURE__ */ t("stop", {
1990
+ offset: 1,
1991
+ stopColor: "#ffd748"
1992
+ })]
1993
+ }),
1994
+ /* @__PURE__ */ n("linearGradient", {
1995
+ id: "paint13_linear_15759_16949",
1996
+ x1: 30.58,
1997
+ x2: 25.62,
1998
+ y1: 29.42,
1999
+ y2: 29.42,
2000
+ gradientUnits: "userSpaceOnUse",
2001
+ children: [/* @__PURE__ */ t("stop", {
2002
+ offset: 0,
2003
+ stopColor: "#ffcb4b"
2004
+ }), /* @__PURE__ */ t("stop", {
2005
+ offset: 1,
2006
+ stopColor: "#ffd748"
2007
+ })]
2008
+ }),
2009
+ /* @__PURE__ */ n("linearGradient", {
2010
+ id: "paint14_linear_15759_16949",
2011
+ x1: 30.58,
2012
+ x2: 25.62,
2013
+ y1: 33.78,
2014
+ y2: 33.78,
2015
+ gradientUnits: "userSpaceOnUse",
2016
+ children: [/* @__PURE__ */ t("stop", {
2017
+ offset: 0,
2018
+ stopColor: "#ffcb4b"
2019
+ }), /* @__PURE__ */ t("stop", {
2020
+ offset: 1,
2021
+ stopColor: "#ffd748"
2022
+ })]
2023
+ }),
2024
+ /* @__PURE__ */ n("linearGradient", {
2025
+ id: "paint15_linear_15759_16949",
2026
+ x1: 24.53,
2027
+ x2: 21.89,
2028
+ y1: 19.44,
2029
+ y2: 19.44,
2030
+ gradientUnits: "userSpaceOnUse",
2031
+ children: [/* @__PURE__ */ t("stop", {
2032
+ offset: 0,
2033
+ stopColor: "#fba23b",
2034
+ stopOpacity: 0
2035
+ }), /* @__PURE__ */ t("stop", {
2036
+ offset: 1,
2037
+ stopColor: "#fba23b"
2038
+ })]
2039
+ }),
2040
+ /* @__PURE__ */ n("linearGradient", {
2041
+ id: "paint16_linear_15759_16949",
2042
+ x1: 24.06,
2043
+ x2: 21.02,
2044
+ y1: 19.51,
2045
+ y2: 19.51,
2046
+ gradientUnits: "userSpaceOnUse",
2047
+ children: [/* @__PURE__ */ t("stop", {
2048
+ offset: 0,
2049
+ stopColor: "#ffbc47"
2050
+ }), /* @__PURE__ */ t("stop", {
2051
+ offset: 1,
2052
+ stopColor: "#e89043"
2053
+ })]
2054
+ }),
2055
+ /* @__PURE__ */ n("linearGradient", {
2056
+ id: "paint21_linear_15759_16949",
2057
+ x1: 24.85,
2058
+ x2: 21.02,
2059
+ y1: 29.31,
2060
+ y2: 29.31,
2061
+ gradientUnits: "userSpaceOnUse",
2062
+ children: [/* @__PURE__ */ t("stop", {
2063
+ offset: 0,
2064
+ stopColor: "#fba23b",
2065
+ stopOpacity: 0
2066
+ }), /* @__PURE__ */ t("stop", {
2067
+ offset: 1,
2068
+ stopColor: "#fba23b"
2069
+ })]
2070
+ }),
2071
+ /* @__PURE__ */ n("linearGradient", {
2072
+ id: "paint22_linear_15759_16949",
2073
+ x1: 24.03,
2074
+ x2: 21.97,
2075
+ y1: 29.17,
2076
+ y2: 29.17,
2077
+ gradientUnits: "userSpaceOnUse",
2078
+ children: [/* @__PURE__ */ t("stop", {
2079
+ offset: 0,
2080
+ stopColor: "#ffbc47"
2081
+ }), /* @__PURE__ */ t("stop", {
2082
+ offset: 1,
2083
+ stopColor: "#fba23b"
2084
+ })]
2085
+ }),
2086
+ /* @__PURE__ */ n("linearGradient", {
2087
+ id: "paint23_linear_15759_16949",
2088
+ x1: 24.71,
2089
+ x2: 20.23,
2090
+ y1: 33.8,
2091
+ y2: 32.98,
2092
+ gradientUnits: "userSpaceOnUse",
2093
+ children: [/* @__PURE__ */ t("stop", {
2094
+ offset: 0,
2095
+ stopColor: "#fba23b",
2096
+ stopOpacity: 0
2097
+ }), /* @__PURE__ */ t("stop", {
2098
+ offset: 1,
2099
+ stopColor: "#fba23b"
2100
+ })]
2101
+ }),
2102
+ /* @__PURE__ */ n("linearGradient", {
2103
+ id: "paint24_linear_15759_16949",
2104
+ x1: 24.25,
2105
+ x2: 22.35,
2106
+ y1: 33.66,
2107
+ y2: 33.66,
2108
+ gradientUnits: "userSpaceOnUse",
2109
+ children: [/* @__PURE__ */ t("stop", {
2110
+ offset: 0,
2111
+ stopColor: "#ffbc47"
2112
+ }), /* @__PURE__ */ t("stop", {
2113
+ offset: 1,
2114
+ stopColor: "#fba23b"
2115
+ })]
2116
+ }),
2117
+ /* @__PURE__ */ n("linearGradient", {
2118
+ id: "paint25_linear_15759_16949",
2119
+ x1: 27.26,
2120
+ x2: 28.47,
2121
+ y1: 18.92,
2122
+ y2: 24.74,
2123
+ gradientUnits: "userSpaceOnUse",
2124
+ children: [/* @__PURE__ */ t("stop", {
2125
+ stopColor: "#ffbc47",
2126
+ stopOpacity: 0
2127
+ }), /* @__PURE__ */ t("stop", {
2128
+ offset: 1,
2129
+ stopColor: "#c86f34"
2130
+ })]
2131
+ }),
2132
+ /* @__PURE__ */ n("linearGradient", {
2133
+ id: "paint26_linear_15759_16949",
2134
+ x1: 28.18,
2135
+ x2: 26.87,
2136
+ y1: 30.43,
2137
+ y2: 25.69,
2138
+ gradientUnits: "userSpaceOnUse",
2139
+ children: [/* @__PURE__ */ t("stop", {
2140
+ stopColor: "#ffbc47",
2141
+ stopOpacity: 0
2142
+ }), /* @__PURE__ */ t("stop", {
2143
+ offset: 1,
2144
+ stopColor: "#c86f34"
2145
+ })]
2146
+ }),
2147
+ /* @__PURE__ */ n("linearGradient", {
2148
+ id: "paint27_linear_15759_16949",
2149
+ x1: 32.66,
2150
+ x2: 23.34,
2151
+ y1: 24.83,
2152
+ y2: 24.83,
2153
+ gradientUnits: "userSpaceOnUse",
2154
+ children: [/* @__PURE__ */ t("stop", {
2155
+ offset: 0,
2156
+ stopColor: "#ffbc47"
2157
+ }), /* @__PURE__ */ t("stop", {
2158
+ offset: 1,
2159
+ stopColor: "#ffd748"
2160
+ })]
2161
+ }),
2162
+ /* @__PURE__ */ n("linearGradient", {
2163
+ id: "paint28_linear_15759_16949",
2164
+ x1: 22.96,
2165
+ x2: 30.11,
2166
+ y1: 24.57,
2167
+ y2: 24.84,
2168
+ gradientUnits: "userSpaceOnUse",
2169
+ children: [
2170
+ /* @__PURE__ */ t("stop", {
2171
+ offset: 0,
2172
+ stopColor: "#ffcb4b"
2173
+ }),
2174
+ /* @__PURE__ */ t("stop", {
2175
+ offset: .74,
2176
+ stopColor: "#ffd748"
2177
+ }),
2178
+ /* @__PURE__ */ t("stop", {
2179
+ offset: 1,
2180
+ stopColor: "#ffcb4b"
2181
+ })
2182
+ ]
2183
+ }),
2184
+ /* @__PURE__ */ n("linearGradient", {
2185
+ id: "paint29_linear_15759_16949",
2186
+ x1: 25.75,
2187
+ x2: 20.41,
2188
+ y1: 24.74,
2189
+ y2: 24.74,
2190
+ gradientUnits: "userSpaceOnUse",
2191
+ children: [/* @__PURE__ */ t("stop", {
2192
+ offset: 0,
2193
+ stopColor: "#fba23b",
2194
+ stopOpacity: 0
2195
+ }), /* @__PURE__ */ t("stop", {
2196
+ offset: 1,
2197
+ stopColor: "#fba23b"
2198
+ })]
2199
+ }),
2200
+ /* @__PURE__ */ n("linearGradient", {
2201
+ id: "paint31_linear_15759_16949",
2202
+ x1: 23.27,
2203
+ x2: 21.58,
2204
+ y1: 24.73,
2205
+ y2: 24.73,
2206
+ gradientUnits: "userSpaceOnUse",
2207
+ children: [/* @__PURE__ */ t("stop", {
2208
+ offset: 0,
2209
+ stopColor: "#ffbc47"
2210
+ }), /* @__PURE__ */ t("stop", {
2211
+ offset: 1,
2212
+ stopColor: "#fba23b"
2213
+ })]
2214
+ }),
2215
+ /* @__PURE__ */ n("linearGradient", {
2216
+ id: "paint32_linear_15759_16949",
2217
+ x1: 27.71,
2218
+ x2: 28.72,
2219
+ y1: 24.22,
2220
+ y2: 30.66,
2221
+ gradientUnits: "userSpaceOnUse",
2222
+ children: [/* @__PURE__ */ t("stop", {
2223
+ stopColor: "#ffbc47",
2224
+ stopOpacity: 0
2225
+ }), /* @__PURE__ */ t("stop", {
2226
+ offset: 1,
2227
+ stopColor: "#c86f34"
2228
+ })]
2229
+ }),
2230
+ /* @__PURE__ */ n("linearGradient", {
2231
+ id: "paint33_linear_15759_16949",
2232
+ x1: 27,
2233
+ x2: 29.6,
2234
+ y1: 29.2,
2235
+ y2: 34.84,
2236
+ gradientUnits: "userSpaceOnUse",
2237
+ children: [/* @__PURE__ */ t("stop", {
2238
+ stopColor: "#ffbc47",
2239
+ stopOpacity: 0
2240
+ }), /* @__PURE__ */ t("stop", {
2241
+ offset: 1,
2242
+ stopColor: "#c86f34"
2243
+ })]
2244
+ }),
2245
+ /* @__PURE__ */ n("linearGradient", {
2246
+ id: "paint34_linear_15759_16949",
2247
+ x1: 26.49,
2248
+ x2: 26.87,
2249
+ y1: 34.15,
2250
+ y2: 37.71,
2251
+ gradientUnits: "userSpaceOnUse",
2252
+ children: [/* @__PURE__ */ t("stop", {
2253
+ stopColor: "#ffbc47",
2254
+ stopOpacity: 0
2255
+ }), /* @__PURE__ */ t("stop", {
2256
+ offset: 1,
2257
+ stopColor: "#c86f34"
2258
+ })]
2259
+ }),
2260
+ /* @__PURE__ */ n("linearGradient", {
2261
+ id: "paint35_linear_15759_16949",
2262
+ x1: 26.58,
2263
+ x2: 26.58,
2264
+ y1: 33.61,
2265
+ y2: 31.03,
2266
+ gradientUnits: "userSpaceOnUse",
2267
+ children: [/* @__PURE__ */ t("stop", {
2268
+ stopColor: "#ffbc47",
2269
+ stopOpacity: 0
2270
+ }), /* @__PURE__ */ t("stop", {
2271
+ offset: 1,
2272
+ stopColor: "#c86f34"
2273
+ })]
2274
+ }),
2275
+ /* @__PURE__ */ n("linearGradient", {
2276
+ id: "paint36_linear_15759_16949",
2277
+ x1: 9.18,
2278
+ x2: 1.11,
2279
+ y1: 26.49,
2280
+ y2: 38.69,
2281
+ gradientUnits: "userSpaceOnUse",
2282
+ children: [/* @__PURE__ */ t("stop", {
2283
+ stopColor: "#c86f34",
2284
+ stopOpacity: 0
2285
+ }), /* @__PURE__ */ t("stop", {
2286
+ offset: 1,
2287
+ stopColor: "#c86f34"
2288
+ })]
2289
+ }),
2290
+ /* @__PURE__ */ n("linearGradient", {
2291
+ id: "paint37_linear_15759_16949",
2292
+ x1: 8.65,
2293
+ x2: 9.98,
2294
+ y1: 29.19,
2295
+ y2: 35.13,
2296
+ gradientUnits: "userSpaceOnUse",
2297
+ children: [/* @__PURE__ */ t("stop", {
2298
+ stopColor: "#ffbc47",
2299
+ stopOpacity: 0
2300
+ }), /* @__PURE__ */ t("stop", {
2301
+ offset: 1,
2302
+ stopColor: "#c86f34"
2303
+ })]
2304
+ }),
2305
+ /* @__PURE__ */ n("linearGradient", {
2306
+ id: "paint38_linear_15759_16949",
2307
+ x1: 9.45,
2308
+ x2: 9.26,
2309
+ y1: 30.3,
2310
+ y2: 37.57,
2311
+ gradientUnits: "userSpaceOnUse",
2312
+ children: [/* @__PURE__ */ t("stop", {
2313
+ stopColor: "#ffbc47",
2314
+ stopOpacity: 0
2315
+ }), /* @__PURE__ */ t("stop", {
2316
+ offset: 1,
2317
+ stopColor: "#c86f34"
2318
+ })]
2319
+ }),
2320
+ /* @__PURE__ */ n("radialGradient", {
2321
+ id: "paint17_radial_15759_16949",
2322
+ cx: 0,
2323
+ cy: 0,
2324
+ r: 1,
2325
+ gradientTransform: "rotate(24 -65.8 55.54)scale(3.7 1.72)",
2326
+ gradientUnits: "userSpaceOnUse",
2327
+ children: [/* @__PURE__ */ t("stop", { stopColor: "#fbe07a" }), /* @__PURE__ */ t("stop", {
2328
+ offset: 1,
2329
+ stopColor: "#ffd748",
2330
+ stopOpacity: 0
2331
+ })]
2332
+ }),
2333
+ /* @__PURE__ */ n("radialGradient", {
2334
+ id: "paint18_radial_15759_16949",
2335
+ cx: 0,
2336
+ cy: 0,
2337
+ r: 1,
2338
+ gradientTransform: "matrix(3.17 .11 -.07 2.08 27.92 19.53)",
2339
+ gradientUnits: "userSpaceOnUse",
2340
+ children: [/* @__PURE__ */ t("stop", { stopColor: "#fbe07a" }), /* @__PURE__ */ t("stop", {
2341
+ offset: 1,
2342
+ stopColor: "#ffd748"
2343
+ })]
2344
+ }),
2345
+ /* @__PURE__ */ n("radialGradient", {
2346
+ id: "paint19_radial_15759_16949",
2347
+ cx: 0,
2348
+ cy: 0,
2349
+ r: 1,
2350
+ gradientTransform: "matrix(3.4 0 0 1.84 27.77 29.75)",
2351
+ gradientUnits: "userSpaceOnUse",
2352
+ children: [/* @__PURE__ */ t("stop", { stopColor: "#fbe07a" }), /* @__PURE__ */ t("stop", {
2353
+ offset: 1,
2354
+ stopColor: "#ffd748",
2355
+ stopOpacity: 0
2356
+ })]
2357
+ }),
2358
+ /* @__PURE__ */ n("radialGradient", {
2359
+ id: "paint20_radial_15759_16949",
2360
+ cx: 0,
2361
+ cy: 0,
2362
+ r: 1,
2363
+ gradientTransform: "matrix(3.12 0 0 1.95 26.6 33.88)",
2364
+ gradientUnits: "userSpaceOnUse",
2365
+ children: [/* @__PURE__ */ t("stop", { stopColor: "#fbe07a" }), /* @__PURE__ */ t("stop", {
2366
+ offset: 1,
2367
+ stopColor: "#ffd748",
2368
+ stopOpacity: 0
2369
+ })]
2370
+ }),
2371
+ /* @__PURE__ */ n("radialGradient", {
2372
+ id: "paint30_radial_15759_16949",
2373
+ cx: 0,
2374
+ cy: 0,
2375
+ r: 1,
2376
+ gradientTransform: "matrix(3.49 -.17 .1 2.29 28.85 24.75)",
2377
+ gradientUnits: "userSpaceOnUse",
2378
+ children: [/* @__PURE__ */ t("stop", { stopColor: "#fbe07a" }), /* @__PURE__ */ t("stop", {
2379
+ offset: 1,
2380
+ stopColor: "#ffd748",
2381
+ stopOpacity: 0
2382
+ })]
2383
+ }),
2384
+ /* @__PURE__ */ n("radialGradient", {
2385
+ id: "paint39_radial_15759_16949",
2386
+ cx: 0,
2387
+ cy: 0,
2388
+ r: 1,
2389
+ gradientTransform: "rotate(79 5.98 16.17)scale(3.35 1.96)",
2390
+ gradientUnits: "userSpaceOnUse",
2391
+ children: [/* @__PURE__ */ t("stop", { stopColor: "#fbe07a" }), /* @__PURE__ */ t("stop", {
2392
+ offset: 1,
2393
+ stopColor: "#ffd748",
2394
+ stopOpacity: 0
2395
+ })]
2396
+ })
2397
+ ] })
2398
+ ]
2399
+ }), j = {
2400
+ list: "_list_1yzyr_1",
2401
+ icon: "_icon_1yzyr_7",
2402
+ button: "_button_1yzyr_12"
2403
+ }, M = ({ classNames: e, minLabel: i, maxLabel: a, onChange: o }) => {
2404
+ let c = [[
2405
+ k,
2406
+ 0,
2407
+ i ?? "Thumbs down"
2408
+ ], [
2409
+ A,
2410
+ 1,
2411
+ a ?? "Thumbs up"
2412
+ ]], l = r((e) => {
2413
+ o(Number(e.currentTarget.value));
2414
+ }, [o]);
2415
+ return /* @__PURE__ */ n("div", {
2416
+ className: s(j.base, e?.base),
2417
+ children: [/* @__PURE__ */ t("div", {
2418
+ className: s(j.list, e?.list),
2419
+ children: c.map(([n, r, i]) => /* @__PURE__ */ t("button", {
2420
+ "aria-label": i,
2421
+ className: s(j.button, e?.button),
2422
+ type: "button",
2423
+ value: r,
2424
+ onClick: l,
2425
+ children: /* @__PURE__ */ t(n, {
2426
+ "aria-hidden": "true",
2427
+ className: s(j.icon, e?.icon),
2428
+ width: 32,
2429
+ height: 32
2430
+ })
2431
+ }, r))
2432
+ }), !!i && !!a && /* @__PURE__ */ t(w, {
2433
+ className: s(j.labels, e?.labels),
2434
+ minLabel: i,
2435
+ maxLabel: a,
2436
+ placement: "center"
2437
+ })]
2438
+ });
2439
+ }, N = {
2440
+ base: "_base_1nccq_1",
2441
+ rating: "_rating_1nccq_5",
2442
+ feedback: "_feedback_1nccq_6",
2443
+ contact: "_contact_1nccq_7",
2444
+ success: "_success_1nccq_8"
2445
+ }, P = ({ classNames: e, dir: r, scaleStyle: i, question: a, minLabel: o, maxLabel: c, textQuestion: l, textButtonSendLabel: u, textButtonSkipLabel: d, responseType: f, choiceOptions: p, thankYouMessage: m, collectContact: h, userId: g, contactQuestion: _, contactSubtext: v, contactButtonSendLabel: y, contactButtonSkipLabel: b, onScoreSubmit: C, onFeedbackSubmit: w, onContactSubmit: T }) => {
2446
+ let { screen: E, onScoreChange: D, onFeedbackChange: k, onContactChange: A } = S({
2447
+ responseType: f,
2448
+ collectContact: h,
2449
+ userId: g,
2450
+ onScoreSubmit: C,
2451
+ onFeedbackSubmit: w,
2452
+ onContactSubmit: T
2453
+ });
2454
+ return /* @__PURE__ */ n(x, {
2455
+ className: N.base,
2456
+ classNames: {
2457
+ ...e?.base,
2458
+ rating: s(N.rating, e?.base?.rating),
2459
+ feedback: s(N.feedback, e?.base?.feedback),
2460
+ contact: s(N.contact, e?.base?.contact),
2461
+ success: s(N.success, e?.base?.success)
2462
+ },
2463
+ dir: r,
2464
+ screen: E,
2465
+ question: a,
2466
+ textQuestion: l,
2467
+ textButtonSendLabel: u,
2468
+ textButtonSkipLabel: d,
2469
+ responseType: f,
2470
+ choiceOptions: p,
2471
+ thankYouMessage: m,
2472
+ contactQuestion: _,
2473
+ contactSubtext: v,
2474
+ contactButtonSendLabel: y,
2475
+ contactButtonSkipLabel: b,
2476
+ onFeedback: k,
2477
+ onContact: A,
2478
+ children: [i === "emoji" && /* @__PURE__ */ t(O, {
2479
+ classNames: e?.scale,
2480
+ minLabel: o,
2481
+ maxLabel: c,
2482
+ onChange: D
2483
+ }), i === "thumbs" && /* @__PURE__ */ t(M, {
2484
+ classNames: e?.scale,
2485
+ minLabel: o,
2486
+ maxLabel: c,
2487
+ onChange: D
2488
+ })]
2489
+ });
2490
+ }, F = (e) => /* @__PURE__ */ n("svg", {
2491
+ xmlns: "http://www.w3.org/2000/svg",
2492
+ width: 40,
2493
+ height: 40,
2494
+ fill: "none",
2495
+ viewBox: "0 0 40 40",
2496
+ ...e,
2497
+ children: [
2498
+ /* @__PURE__ */ t("path", {
2499
+ fill: "url(#paint0_radial_15759_16822)",
2500
+ d: "M20 38a18 18 0 1 0 0-36 18 18 0 0 0 0 36"
2501
+ }),
2502
+ /* @__PURE__ */ t("path", {
2503
+ fill: "url(#paint1_radial_15759_16822)",
2504
+ d: "M20 38a18 18 0 1 0 0-36 18 18 0 0 0 0 36",
2505
+ opacity: .5
2506
+ }),
2507
+ /* @__PURE__ */ t("path", {
2508
+ fill: "url(#paint2_radial_15759_16822)",
2509
+ 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"
2510
+ }),
2511
+ /* @__PURE__ */ t("path", {
2512
+ fill: "url(#paint3_radial_15759_16822)",
2513
+ 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"
2514
+ }),
2515
+ /* @__PURE__ */ t("path", {
2516
+ fill: "url(#paint4_linear_15759_16822)",
2517
+ 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"
2518
+ }),
2519
+ /* @__PURE__ */ t("path", {
2520
+ fill: "url(#paint5_linear_15759_16822)",
2521
+ 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"
2522
+ }),
2523
+ /* @__PURE__ */ t("path", {
2524
+ fill: "url(#paint6_linear_15759_16822)",
2525
+ 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"
2526
+ }),
2527
+ /* @__PURE__ */ t("path", {
2528
+ fill: "url(#paint7_radial_15759_16822)",
2529
+ 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"
2530
+ }),
2531
+ /* @__PURE__ */ t("path", {
2532
+ fill: "url(#paint8_linear_15759_16822)",
2533
+ 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"
2534
+ }),
2535
+ /* @__PURE__ */ t("path", {
2536
+ fill: "url(#paint9_linear_15759_16822)",
2537
+ 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"
2538
+ }),
2539
+ /* @__PURE__ */ n("defs", { children: [
2540
+ /* @__PURE__ */ n("radialGradient", {
2541
+ id: "paint0_radial_15759_16822",
2542
+ cx: 0,
2543
+ cy: 0,
2544
+ r: 1,
2545
+ gradientTransform: "translate(16.46 12.7)scale(21.71)",
2546
+ gradientUnits: "userSpaceOnUse",
2547
+ children: [/* @__PURE__ */ t("stop", { stopColor: "#ffdf30" }), /* @__PURE__ */ t("stop", {
2548
+ offset: 1,
2549
+ stopColor: "#ffb82e"
2550
+ })]
2551
+ }),
2552
+ /* @__PURE__ */ n("radialGradient", {
2553
+ id: "paint1_radial_15759_16822",
2554
+ cx: 0,
2555
+ cy: 0,
2556
+ r: 1,
2557
+ gradientTransform: "translate(16.46 12.7)scale(17.08)",
2558
+ gradientUnits: "userSpaceOnUse",
2559
+ children: [/* @__PURE__ */ t("stop", { stopColor: "#ffe95f" }), /* @__PURE__ */ t("stop", {
2560
+ offset: 1,
2561
+ stopColor: "#ffbb47",
2562
+ stopOpacity: 0
2563
+ })]
2564
+ }),
2565
+ /* @__PURE__ */ n("radialGradient", {
2566
+ id: "paint2_radial_15759_16822",
2567
+ cx: 0,
2568
+ cy: 0,
2569
+ r: 1,
2570
+ gradientTransform: "matrix(3.94 0 0 2.1 19.65 29.42)",
2571
+ gradientUnits: "userSpaceOnUse",
2572
+ children: [/* @__PURE__ */ t("stop", {
2573
+ offset: 0,
2574
+ stopColor: "#7a4400"
2575
+ }), /* @__PURE__ */ t("stop", {
2576
+ offset: 1,
2577
+ stopColor: "#643800"
2578
+ })]
2579
+ }),
2580
+ /* @__PURE__ */ n("radialGradient", {
2581
+ id: "paint3_radial_15759_16822",
2582
+ cx: 0,
2583
+ cy: 0,
2584
+ r: 1,
2585
+ gradientTransform: "matrix(.7 2.44 -1.58 .46 13.6 22)",
2586
+ gradientUnits: "userSpaceOnUse",
2587
+ children: [/* @__PURE__ */ t("stop", {
2588
+ offset: 0,
2589
+ stopColor: "#7a4400"
2590
+ }), /* @__PURE__ */ t("stop", {
2591
+ offset: 1,
2592
+ stopColor: "#643800"
2593
+ })]
2594
+ }),
2595
+ /* @__PURE__ */ n("radialGradient", {
2596
+ id: "paint7_radial_15759_16822",
2597
+ cx: 0,
2598
+ cy: 0,
2599
+ r: 1,
2600
+ gradientTransform: "rotate(106 4.96 20.92)scale(2.54 1.65)",
2601
+ gradientUnits: "userSpaceOnUse",
2602
+ children: [/* @__PURE__ */ t("stop", {
2603
+ offset: 0,
2604
+ stopColor: "#7a4400"
2605
+ }), /* @__PURE__ */ t("stop", {
2606
+ offset: 1,
2607
+ stopColor: "#643800"
2608
+ })]
2609
+ }),
2610
+ /* @__PURE__ */ n("linearGradient", {
2611
+ id: "paint4_linear_15759_16822",
2612
+ x1: 14.14,
2613
+ x2: 14.14,
2614
+ y1: 20.12,
2615
+ y2: 22.47,
2616
+ gradientUnits: "userSpaceOnUse",
2617
+ children: [/* @__PURE__ */ t("stop", {
2618
+ offset: 0,
2619
+ stopColor: "#3c2200"
2620
+ }), /* @__PURE__ */ t("stop", {
2621
+ offset: 1,
2622
+ stopColor: "#512d00"
2623
+ })]
2624
+ }),
2625
+ /* @__PURE__ */ n("linearGradient", {
2626
+ id: "paint5_linear_15759_16822",
2627
+ x1: 14.06,
2628
+ x2: 14.06,
2629
+ y1: 21.79,
2630
+ y2: 16.35,
2631
+ gradientUnits: "userSpaceOnUse",
2632
+ children: [/* @__PURE__ */ t("stop", {
2633
+ offset: 0,
2634
+ stopColor: "#3c2200"
2635
+ }), /* @__PURE__ */ t("stop", {
2636
+ offset: 1,
2637
+ stopColor: "#643800"
2638
+ })]
2639
+ }),
2640
+ /* @__PURE__ */ n("linearGradient", {
2641
+ id: "paint6_linear_15759_16822",
2642
+ x1: 19.65,
2643
+ x2: 19.65,
2644
+ y1: 26.03,
2645
+ y2: 28.87,
2646
+ gradientUnits: "userSpaceOnUse",
2647
+ children: [/* @__PURE__ */ t("stop", {
2648
+ offset: 0,
2649
+ stopColor: "#3c2200"
2650
+ }), /* @__PURE__ */ t("stop", {
2651
+ offset: 1,
2652
+ stopColor: "#512d00"
2653
+ })]
2654
+ }),
2655
+ /* @__PURE__ */ n("linearGradient", {
2656
+ id: "paint8_linear_15759_16822",
2657
+ x1: 25.86,
2658
+ x2: 25.86,
2659
+ y1: 20.12,
2660
+ y2: 22.47,
2661
+ gradientUnits: "userSpaceOnUse",
2662
+ children: [/* @__PURE__ */ t("stop", {
2663
+ offset: 0,
2664
+ stopColor: "#3c2200"
2665
+ }), /* @__PURE__ */ t("stop", {
2666
+ offset: 1,
2667
+ stopColor: "#512d00"
2668
+ })]
2669
+ }),
2670
+ /* @__PURE__ */ n("linearGradient", {
2671
+ id: "paint9_linear_15759_16822",
2672
+ x1: 25.94,
2673
+ x2: 25.94,
2674
+ y1: 21.79,
2675
+ y2: 16.35,
2676
+ gradientUnits: "userSpaceOnUse",
2677
+ children: [/* @__PURE__ */ t("stop", {
2678
+ offset: 0,
2679
+ stopColor: "#3c2200"
2680
+ }), /* @__PURE__ */ t("stop", {
2681
+ offset: 1,
2682
+ stopColor: "#643800"
2683
+ })]
2684
+ })
2685
+ ] })
2686
+ ]
2687
+ }), I = (e) => /* @__PURE__ */ n("svg", {
2688
+ xmlns: "http://www.w3.org/2000/svg",
2689
+ width: 40,
2690
+ height: 40,
2691
+ fill: "none",
2692
+ viewBox: "0 0 40 40",
2693
+ ...e,
2694
+ children: [
2695
+ /* @__PURE__ */ t("path", {
2696
+ fill: "url(#paint0_radial_15759_16856)",
2697
+ d: "M20 38a18 18 0 1 0 0-36 18 18 0 0 0 0 36"
2698
+ }),
2699
+ /* @__PURE__ */ t("path", {
2700
+ fill: "url(#paint1_radial_15759_16856)",
2701
+ d: "M20 38a18 18 0 1 0 0-36 18 18 0 0 0 0 36",
2702
+ opacity: .5
2703
+ }),
2704
+ /* @__PURE__ */ t("path", {
2705
+ fill: "url(#paint2_radial_15759_16856)",
2706
+ d: "M20 38a18 18 0 1 0 0-36 18 18 0 0 0 0 36"
2707
+ }),
2708
+ /* @__PURE__ */ t("path", {
2709
+ fill: "url(#paint3_radial_15759_16856)",
2710
+ d: "M20 38a18 18 0 1 0 0-36 18 18 0 0 0 0 36"
2711
+ }),
2712
+ /* @__PURE__ */ t("path", {
2713
+ fill: "url(#paint4_radial_15759_16856)",
2714
+ 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"
2715
+ }),
2716
+ /* @__PURE__ */ t("path", {
2717
+ fill: "url(#paint5_radial_15759_16856)",
2718
+ 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"
2719
+ }),
2720
+ /* @__PURE__ */ t("path", {
2721
+ fill: "url(#paint6_linear_15759_16856)",
2722
+ 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"
2723
+ }),
2724
+ /* @__PURE__ */ t("path", {
2725
+ fill: "url(#paint7_radial_15759_16856)",
2726
+ 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"
2727
+ }),
2728
+ /* @__PURE__ */ t("path", {
2729
+ fill: "url(#paint8_radial_15759_16856)",
2730
+ 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"
2731
+ }),
2732
+ /* @__PURE__ */ t("path", {
2733
+ fill: "url(#paint9_radial_15759_16856)",
2734
+ 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",
2735
+ opacity: .5
2736
+ }),
2737
+ /* @__PURE__ */ t("path", {
2738
+ fill: "url(#paint10_radial_15759_16856)",
2739
+ 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",
2740
+ opacity: .5
2741
+ }),
2742
+ /* @__PURE__ */ t("path", {
2743
+ fill: "url(#paint11_radial_15759_16856)",
2744
+ 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",
2745
+ opacity: .5
2746
+ }),
2747
+ /* @__PURE__ */ t("path", {
2748
+ fill: "url(#paint12_radial_15759_16856)",
2749
+ 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",
2750
+ opacity: .24
2751
+ }),
2752
+ /* @__PURE__ */ t("path", {
2753
+ fill: "url(#paint13_radial_15759_16856)",
2754
+ 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",
2755
+ opacity: .24
2756
+ }),
2757
+ /* @__PURE__ */ t("path", {
2758
+ fill: "url(#paint14_linear_15759_16856)",
2759
+ 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",
2760
+ opacity: .32
2761
+ }),
2762
+ /* @__PURE__ */ t("path", {
2763
+ fill: "url(#paint15_radial_15759_16856)",
2764
+ 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"
2765
+ }),
2766
+ /* @__PURE__ */ t("path", {
2767
+ fill: "url(#paint16_radial_15759_16856)",
2768
+ 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",
2769
+ opacity: .5
2770
+ }),
2771
+ /* @__PURE__ */ t("path", {
2772
+ fill: "url(#paint17_radial_15759_16856)",
2773
+ 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",
2774
+ opacity: .5
2775
+ }),
2776
+ /* @__PURE__ */ t("path", {
2777
+ fill: "url(#paint18_radial_15759_16856)",
2778
+ 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",
2779
+ opacity: .5
2780
+ }),
2781
+ /* @__PURE__ */ t("path", {
2782
+ fill: "url(#paint19_radial_15759_16856)",
2783
+ 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",
2784
+ opacity: .24
2785
+ }),
2786
+ /* @__PURE__ */ t("path", {
2787
+ fill: "url(#paint20_radial_15759_16856)",
2788
+ 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",
2789
+ opacity: .24
2790
+ }),
2791
+ /* @__PURE__ */ t("path", {
2792
+ fill: "url(#paint21_linear_15759_16856)",
2793
+ 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",
2794
+ opacity: .32
2795
+ }),
2796
+ /* @__PURE__ */ n("defs", { children: [
2797
+ /* @__PURE__ */ n("radialGradient", {
2798
+ id: "paint0_radial_15759_16856",
2799
+ cx: 0,
2800
+ cy: 0,
2801
+ r: 1,
2802
+ gradientTransform: "translate(16.46 12.7)scale(21.71)",
2803
+ gradientUnits: "userSpaceOnUse",
2804
+ children: [/* @__PURE__ */ t("stop", { stopColor: "#ffe030" }), /* @__PURE__ */ t("stop", {
2805
+ offset: 1,
2806
+ stopColor: "#ffb92e"
2807
+ })]
2808
+ }),
2809
+ /* @__PURE__ */ n("radialGradient", {
2810
+ id: "paint1_radial_15759_16856",
2811
+ cx: 0,
2812
+ cy: 0,
2813
+ r: 1,
2814
+ gradientTransform: "translate(16.46 12.7)scale(17.08)",
2815
+ gradientUnits: "userSpaceOnUse",
2816
+ children: [/* @__PURE__ */ t("stop", { stopColor: "#ffea5f" }), /* @__PURE__ */ t("stop", {
2817
+ offset: 1,
2818
+ stopColor: "#ffbc47",
2819
+ stopOpacity: 0
2820
+ })]
2821
+ }),
2822
+ /* @__PURE__ */ n("radialGradient", {
2823
+ id: "paint2_radial_15759_16856",
2824
+ cx: 0,
2825
+ cy: 0,
2826
+ r: 1,
2827
+ gradientTransform: "matrix(8.02 5.15 -3.76 5.85 10 20.16)",
2828
+ gradientUnits: "userSpaceOnUse",
2829
+ children: [
2830
+ /* @__PURE__ */ t("stop", {
2831
+ stopColor: "#eb672a",
2832
+ stopOpacity: .5
2833
+ }),
2834
+ /* @__PURE__ */ t("stop", {
2835
+ offset: .43,
2836
+ stopColor: "#dc641b",
2837
+ stopOpacity: .28
2838
+ }),
2839
+ /* @__PURE__ */ t("stop", {
2840
+ offset: .99,
2841
+ stopColor: "#c25e00",
2842
+ stopOpacity: 0
2843
+ })
2844
+ ]
2845
+ }),
2846
+ /* @__PURE__ */ n("radialGradient", {
2847
+ id: "paint3_radial_15759_16856",
2848
+ cx: 0,
2849
+ cy: 0,
2850
+ r: 1,
2851
+ gradientTransform: "rotate(147 12.04 14.48)scale(9.53 6.96)",
2852
+ gradientUnits: "userSpaceOnUse",
2853
+ children: [
2854
+ /* @__PURE__ */ t("stop", {
2855
+ stopColor: "#eb672a",
2856
+ stopOpacity: .5
2857
+ }),
2858
+ /* @__PURE__ */ t("stop", {
2859
+ offset: .43,
2860
+ stopColor: "#dc641b",
2861
+ stopOpacity: .28
2862
+ }),
2863
+ /* @__PURE__ */ t("stop", {
2864
+ offset: .99,
2865
+ stopColor: "#c25e00",
2866
+ stopOpacity: 0
2867
+ })
2868
+ ]
2869
+ }),
2870
+ /* @__PURE__ */ n("radialGradient", {
2871
+ id: "paint4_radial_15759_16856",
2872
+ cx: 0,
2873
+ cy: 0,
2874
+ r: 1,
2875
+ gradientTransform: "translate(20 30.2)scale(9.56)",
2876
+ gradientUnits: "userSpaceOnUse",
2877
+ children: [/* @__PURE__ */ t("stop", {
2878
+ offset: 0,
2879
+ stopColor: "#7a4400"
2880
+ }), /* @__PURE__ */ t("stop", {
2881
+ offset: 1,
2882
+ stopColor: "#643800"
2883
+ })]
2884
+ }),
2885
+ /* @__PURE__ */ n("radialGradient", {
2886
+ id: "paint5_radial_15759_16856",
2887
+ cx: 0,
2888
+ cy: 0,
2889
+ r: 1,
2890
+ gradientTransform: "matrix(7.61 0 0 2.3 20.14 33.39)",
2891
+ gradientUnits: "userSpaceOnUse",
2892
+ children: [/* @__PURE__ */ t("stop", {
2893
+ offset: .25,
2894
+ stopColor: "red"
2895
+ }), /* @__PURE__ */ t("stop", {
2896
+ offset: 1,
2897
+ stopColor: "#c20000"
2898
+ })]
2899
+ }),
2900
+ /* @__PURE__ */ n("radialGradient", {
2901
+ id: "paint7_radial_15759_16856",
2902
+ cx: 0,
2903
+ cy: 0,
2904
+ r: 1,
2905
+ gradientTransform: "translate(20 27.51)scale(20.98)",
2906
+ gradientUnits: "userSpaceOnUse",
2907
+ children: [/* @__PURE__ */ t("stop", {
2908
+ offset: 0,
2909
+ stopColor: "#fff"
2910
+ }), /* @__PURE__ */ t("stop", {
2911
+ offset: 1,
2912
+ stopColor: "#a9bcbe"
2913
+ })]
2914
+ }),
2915
+ /* @__PURE__ */ n("radialGradient", {
2916
+ id: "paint8_radial_15759_16856",
2917
+ cx: 0,
2918
+ cy: 0,
2919
+ r: 1,
2920
+ gradientTransform: "matrix(6.6 -8.99 7.13 5.23 9.46 15.03)",
2921
+ gradientUnits: "userSpaceOnUse",
2922
+ children: [/* @__PURE__ */ t("stop", {
2923
+ offset: .25,
2924
+ stopColor: "red"
2925
+ }), /* @__PURE__ */ t("stop", {
2926
+ offset: .86,
2927
+ stopColor: "#c20000"
2928
+ })]
2929
+ }),
2930
+ /* @__PURE__ */ n("radialGradient", {
2931
+ id: "paint9_radial_15759_16856",
2932
+ cx: 0,
2933
+ cy: 0,
2934
+ r: 1,
2935
+ gradientTransform: "matrix(5.68 -7.74 6.14 4.5 9.43 14.3)",
2936
+ gradientUnits: "userSpaceOnUse",
2937
+ children: [/* @__PURE__ */ t("stop", {
2938
+ offset: .25,
2939
+ stopColor: "red"
2940
+ }), /* @__PURE__ */ t("stop", {
2941
+ offset: 1,
2942
+ stopColor: "#c20000"
2943
+ })]
2944
+ }),
2945
+ /* @__PURE__ */ n("radialGradient", {
2946
+ id: "paint10_radial_15759_16856",
2947
+ cx: 0,
2948
+ cy: 0,
2949
+ r: 1,
2950
+ gradientTransform: "matrix(6.6 -8.99 7.13 5.23 9.46 15.03)",
2951
+ gradientUnits: "userSpaceOnUse",
2952
+ children: [/* @__PURE__ */ t("stop", {
2953
+ stopColor: "#fff",
2954
+ stopOpacity: .25
2955
+ }), /* @__PURE__ */ t("stop", {
2956
+ offset: 1,
2957
+ stopColor: "#fff",
2958
+ stopOpacity: 0
2959
+ })]
2960
+ }),
2961
+ /* @__PURE__ */ n("radialGradient", {
2962
+ id: "paint11_radial_15759_16856",
2963
+ cx: 0,
2964
+ cy: 0,
2965
+ r: 1,
2966
+ gradientTransform: "rotate(-51 25.15 -7.08)scale(8.14 4.02)",
2967
+ gradientUnits: "userSpaceOnUse",
2968
+ children: [/* @__PURE__ */ t("stop", {
2969
+ stopColor: "#bd2719",
2970
+ stopOpacity: .25
2971
+ }), /* @__PURE__ */ t("stop", {
2972
+ offset: 1,
2973
+ stopColor: "#bd2719",
2974
+ stopOpacity: 0
2975
+ })]
2976
+ }),
2977
+ /* @__PURE__ */ n("radialGradient", {
2978
+ id: "paint12_radial_15759_16856",
2979
+ cx: 0,
2980
+ cy: 0,
2981
+ r: 1,
2982
+ gradientTransform: "matrix(2 -2.08 1.3 1.25 7.64 14.9)",
2983
+ gradientUnits: "userSpaceOnUse",
2984
+ children: [/* @__PURE__ */ t("stop", { stopColor: "#fff" }), /* @__PURE__ */ t("stop", {
2985
+ offset: 1,
2986
+ stopColor: "#fff",
2987
+ stopOpacity: 0
2988
+ })]
2989
+ }),
2990
+ /* @__PURE__ */ n("radialGradient", {
2991
+ id: "paint13_radial_15759_16856",
2992
+ cx: 0,
2993
+ cy: 0,
2994
+ r: 1,
2995
+ gradientTransform: "rotate(-65 16 -3.77)scale(2.4 1.49)",
2996
+ gradientUnits: "userSpaceOnUse",
2997
+ children: [/* @__PURE__ */ t("stop", { stopColor: "#fff" }), /* @__PURE__ */ t("stop", {
2998
+ offset: 1,
2999
+ stopColor: "#fff",
3000
+ stopOpacity: 0
3001
+ })]
3002
+ }),
3003
+ /* @__PURE__ */ n("radialGradient", {
3004
+ id: "paint15_radial_15759_16856",
3005
+ cx: 0,
3006
+ cy: 0,
3007
+ r: 1,
3008
+ gradientTransform: "matrix(11.1 -1.02 .81 8.8 27.1 13.36)",
3009
+ gradientUnits: "userSpaceOnUse",
3010
+ children: [/* @__PURE__ */ t("stop", {
3011
+ offset: .25,
3012
+ stopColor: "red"
3013
+ }), /* @__PURE__ */ t("stop", {
3014
+ offset: .86,
3015
+ stopColor: "#c20000"
3016
+ })]
3017
+ }),
3018
+ /* @__PURE__ */ n("radialGradient", {
3019
+ id: "paint16_radial_15759_16856",
3020
+ cx: 0,
3021
+ cy: 0,
3022
+ r: 1,
3023
+ gradientTransform: "matrix(9.56 -.88 .7 7.58 27.64 12.85)",
3024
+ gradientUnits: "userSpaceOnUse",
3025
+ children: [/* @__PURE__ */ t("stop", {
3026
+ offset: .25,
3027
+ stopColor: "red"
3028
+ }), /* @__PURE__ */ t("stop", {
3029
+ offset: 1,
3030
+ stopColor: "#c20000"
3031
+ })]
3032
+ }),
3033
+ /* @__PURE__ */ n("radialGradient", {
3034
+ id: "paint17_radial_15759_16856",
3035
+ cx: 0,
3036
+ cy: 0,
3037
+ r: 1,
3038
+ gradientTransform: "matrix(11.1 -1.02 .81 8.8 27.1 13.36)",
3039
+ gradientUnits: "userSpaceOnUse",
3040
+ children: [/* @__PURE__ */ t("stop", {
3041
+ stopColor: "#fff",
3042
+ stopOpacity: .25
3043
+ }), /* @__PURE__ */ t("stop", {
3044
+ offset: 1,
3045
+ stopColor: "#fff",
3046
+ stopOpacity: 0
3047
+ })]
3048
+ }),
3049
+ /* @__PURE__ */ n("radialGradient", {
3050
+ id: "paint18_radial_15759_16856",
3051
+ cx: 0,
3052
+ cy: 0,
3053
+ r: 1,
3054
+ gradientTransform: "matrix(8.13 -.3 .15 4.02 29.22 18.45)",
3055
+ gradientUnits: "userSpaceOnUse",
3056
+ children: [/* @__PURE__ */ t("stop", {
3057
+ stopColor: "#bd2719",
3058
+ stopOpacity: .25
3059
+ }), /* @__PURE__ */ t("stop", {
3060
+ offset: 1,
3061
+ stopColor: "#bd2719",
3062
+ stopOpacity: 0
3063
+ })]
3064
+ }),
3065
+ /* @__PURE__ */ n("radialGradient", {
3066
+ id: "paint19_radial_15759_16856",
3067
+ cx: 0,
3068
+ cy: 0,
3069
+ r: 1,
3070
+ gradientTransform: "matrix(2.89 .12 -.08 1.8 26.04 11.91)",
3071
+ gradientUnits: "userSpaceOnUse",
3072
+ children: [/* @__PURE__ */ t("stop", { stopColor: "#fff" }), /* @__PURE__ */ t("stop", {
3073
+ offset: 1,
3074
+ stopColor: "#fff",
3075
+ stopOpacity: 0
3076
+ })]
3077
+ }),
3078
+ /* @__PURE__ */ n("radialGradient", {
3079
+ id: "paint20_radial_15759_16856",
3080
+ cx: 0,
3081
+ cy: 0,
3082
+ r: 1,
3083
+ gradientTransform: "matrix(2.3 -.69 .43 1.43 31.33 13.96)",
3084
+ gradientUnits: "userSpaceOnUse",
3085
+ children: [/* @__PURE__ */ t("stop", { stopColor: "#fff" }), /* @__PURE__ */ t("stop", {
3086
+ offset: 1,
3087
+ stopColor: "#fff",
3088
+ stopOpacity: 0
3089
+ })]
3090
+ }),
3091
+ /* @__PURE__ */ n("linearGradient", {
3092
+ id: "paint6_linear_15759_16856",
3093
+ x1: 32.3,
3094
+ x2: 7.85,
3095
+ y1: 28.23,
3096
+ y2: 28.23,
3097
+ gradientUnits: "userSpaceOnUse",
3098
+ children: [
3099
+ /* @__PURE__ */ t("stop", {
3100
+ offset: 0,
3101
+ stopColor: "#3c2200"
3102
+ }),
3103
+ /* @__PURE__ */ t("stop", {
3104
+ offset: .5,
3105
+ stopColor: "#512d00"
3106
+ }),
3107
+ /* @__PURE__ */ t("stop", {
3108
+ offset: 1,
3109
+ stopColor: "#3c2200"
3110
+ })
3111
+ ]
3112
+ }),
3113
+ /* @__PURE__ */ n("linearGradient", {
3114
+ id: "paint14_linear_15759_16856",
3115
+ x1: 18.6,
3116
+ x2: 12.19,
3117
+ y1: 26.74,
3118
+ y2: 9.21,
3119
+ gradientUnits: "userSpaceOnUse",
3120
+ children: [/* @__PURE__ */ t("stop", { stopColor: "#860805" }), /* @__PURE__ */ t("stop", {
3121
+ offset: 1,
3122
+ stopColor: "#bd2719",
3123
+ stopOpacity: 0
3124
+ })]
3125
+ }),
3126
+ /* @__PURE__ */ n("linearGradient", {
3127
+ id: "paint21_linear_15759_16856",
3128
+ x1: 24.43,
3129
+ x2: 33.3,
3130
+ y1: 27.96,
3131
+ y2: 11.54,
3132
+ gradientUnits: "userSpaceOnUse",
3133
+ children: [/* @__PURE__ */ t("stop", { stopColor: "#860805" }), /* @__PURE__ */ t("stop", {
3134
+ offset: 1,
3135
+ stopColor: "#bd2719",
3136
+ stopOpacity: 0
3137
+ })]
3138
+ })
3139
+ ] })
3140
+ ]
3141
+ }), L = (e) => /* @__PURE__ */ n("svg", {
3142
+ xmlns: "http://www.w3.org/2000/svg",
3143
+ width: 40,
3144
+ height: 40,
3145
+ fill: "none",
3146
+ viewBox: "0 0 40 40",
3147
+ ...e,
3148
+ children: [
3149
+ /* @__PURE__ */ t("path", {
3150
+ fill: "url(#paint0_radial_15759_16937)",
3151
+ d: "M20 38a18 18 0 1 0 0-36 18 18 0 0 0 0 36"
3152
+ }),
3153
+ /* @__PURE__ */ t("path", {
3154
+ fill: "url(#paint1_radial_15759_16937)",
3155
+ d: "M20 38a18 18 0 1 0 0-36 18 18 0 0 0 0 36",
3156
+ opacity: .5
3157
+ }),
3158
+ /* @__PURE__ */ t("path", {
3159
+ fill: "url(#paint2_linear_15759_16937)",
3160
+ 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"
3161
+ }),
3162
+ /* @__PURE__ */ t("path", {
3163
+ fill: "url(#paint3_radial_15759_16937)",
3164
+ 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"
3165
+ }),
3166
+ /* @__PURE__ */ t("path", {
3167
+ fill: "url(#paint4_linear_15759_16937)",
3168
+ 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"
3169
+ }),
3170
+ /* @__PURE__ */ t("path", {
3171
+ fill: "url(#paint5_radial_15759_16937)",
3172
+ 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"
3173
+ }),
3174
+ /* @__PURE__ */ t("path", {
3175
+ fill: "url(#paint6_linear_15759_16937)",
3176
+ 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"
3177
+ }),
3178
+ /* @__PURE__ */ t("path", {
3179
+ fill: "url(#paint7_linear_15759_16937)",
3180
+ 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"
3181
+ }),
3182
+ /* @__PURE__ */ t("path", {
3183
+ fill: "url(#paint8_radial_15759_16937)",
3184
+ 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"
3185
+ }),
3186
+ /* @__PURE__ */ t("path", {
3187
+ fill: "url(#paint9_linear_15759_16937)",
3188
+ 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"
3189
+ }),
3190
+ /* @__PURE__ */ n("defs", { children: [
3191
+ /* @__PURE__ */ n("radialGradient", {
3192
+ id: "paint0_radial_15759_16937",
3193
+ cx: 0,
3194
+ cy: 0,
3195
+ r: 1,
3196
+ gradientTransform: "translate(16.46 12.7)scale(21.71)",
3197
+ gradientUnits: "userSpaceOnUse",
3198
+ children: [/* @__PURE__ */ t("stop", { stopColor: "#ffe030" }), /* @__PURE__ */ t("stop", {
3199
+ offset: 1,
3200
+ stopColor: "#ffb92e"
3201
+ })]
3202
+ }),
3203
+ /* @__PURE__ */ n("radialGradient", {
3204
+ id: "paint1_radial_15759_16937",
3205
+ cx: 0,
3206
+ cy: 0,
3207
+ r: 1,
3208
+ gradientTransform: "translate(16.46 12.7)scale(17.08)",
3209
+ gradientUnits: "userSpaceOnUse",
3210
+ children: [/* @__PURE__ */ t("stop", { stopColor: "#ffea5f" }), /* @__PURE__ */ t("stop", {
3211
+ offset: 1,
3212
+ stopColor: "#ffbc47",
3213
+ stopOpacity: 0
3214
+ })]
3215
+ }),
3216
+ /* @__PURE__ */ n("radialGradient", {
3217
+ id: "paint3_radial_15759_16937",
3218
+ cx: 0,
3219
+ cy: 0,
3220
+ r: 1,
3221
+ gradientTransform: "matrix(.7 2.44 -1.58 .46 13.6 18.21)",
3222
+ gradientUnits: "userSpaceOnUse",
3223
+ children: [/* @__PURE__ */ t("stop", {
3224
+ offset: 0,
3225
+ stopColor: "#7a4400"
3226
+ }), /* @__PURE__ */ t("stop", {
3227
+ offset: 1,
3228
+ stopColor: "#643800"
3229
+ })]
3230
+ }),
3231
+ /* @__PURE__ */ n("radialGradient", {
3232
+ id: "paint5_radial_15759_16937",
3233
+ cx: 0,
3234
+ cy: 0,
3235
+ r: 1,
3236
+ gradientTransform: "rotate(74 .56 25.97)scale(2.54 1.65)",
3237
+ gradientUnits: "userSpaceOnUse",
3238
+ children: [/* @__PURE__ */ t("stop", {
3239
+ offset: 0,
3240
+ stopColor: "#7a4400"
3241
+ }), /* @__PURE__ */ t("stop", {
3242
+ offset: 1,
3243
+ stopColor: "#643800"
3244
+ })]
3245
+ }),
3246
+ /* @__PURE__ */ n("radialGradient", {
3247
+ id: "paint8_radial_15759_16937",
3248
+ cx: 0,
3249
+ cy: 0,
3250
+ r: 1,
3251
+ gradientTransform: "matrix(5.99 0 0 1.08 20 27)",
3252
+ gradientUnits: "userSpaceOnUse",
3253
+ children: [/* @__PURE__ */ t("stop", {
3254
+ offset: 0,
3255
+ stopColor: "#7a4400"
3256
+ }), /* @__PURE__ */ t("stop", {
3257
+ offset: 1,
3258
+ stopColor: "#643800"
3259
+ })]
3260
+ }),
3261
+ /* @__PURE__ */ n("linearGradient", {
3262
+ id: "paint2_linear_15759_16937",
3263
+ x1: 12.8,
3264
+ x2: 13.09,
3265
+ y1: 13.08,
3266
+ y2: 10.82,
3267
+ gradientUnits: "userSpaceOnUse",
3268
+ children: [/* @__PURE__ */ t("stop", {
3269
+ offset: 0,
3270
+ stopColor: "#3c2200"
3271
+ }), /* @__PURE__ */ t("stop", {
3272
+ offset: 1,
3273
+ stopColor: "#7a4400"
3274
+ })]
3275
+ }),
3276
+ /* @__PURE__ */ n("linearGradient", {
3277
+ id: "paint4_linear_15759_16937",
3278
+ x1: 14.12,
3279
+ x2: 14.12,
3280
+ y1: 15.51,
3281
+ y2: 17.95,
3282
+ gradientUnits: "userSpaceOnUse",
3283
+ children: [/* @__PURE__ */ t("stop", {
3284
+ offset: 0,
3285
+ stopColor: "#3c2200"
3286
+ }), /* @__PURE__ */ t("stop", {
3287
+ offset: 1,
3288
+ stopColor: "#512d00"
3289
+ })]
3290
+ }),
3291
+ /* @__PURE__ */ n("linearGradient", {
3292
+ id: "paint6_linear_15759_16937",
3293
+ x1: 25.88,
3294
+ x2: 25.88,
3295
+ y1: 15.58,
3296
+ y2: 18.02,
3297
+ gradientUnits: "userSpaceOnUse",
3298
+ children: [/* @__PURE__ */ t("stop", {
3299
+ offset: 0,
3300
+ stopColor: "#3c2200"
3301
+ }), /* @__PURE__ */ t("stop", {
3302
+ offset: 1,
3303
+ stopColor: "#512d00"
3304
+ })]
3305
+ }),
3306
+ /* @__PURE__ */ n("linearGradient", {
3307
+ id: "paint7_linear_15759_16937",
3308
+ x1: 27.2,
3309
+ x2: 26.91,
3310
+ y1: 13.08,
3311
+ y2: 10.82,
3312
+ gradientUnits: "userSpaceOnUse",
3313
+ children: [/* @__PURE__ */ t("stop", {
3314
+ offset: 0,
3315
+ stopColor: "#3c2200"
3316
+ }), /* @__PURE__ */ t("stop", {
3317
+ offset: 1,
3318
+ stopColor: "#7a4400"
3319
+ })]
3320
+ }),
3321
+ /* @__PURE__ */ n("linearGradient", {
3322
+ id: "paint9_linear_15759_16937",
3323
+ x1: 11.57,
3324
+ x2: 28.43,
3325
+ y1: 26.61,
3326
+ y2: 26.61,
3327
+ gradientUnits: "userSpaceOnUse",
3328
+ children: [/* @__PURE__ */ t("stop", {
3329
+ offset: 0,
3330
+ stopColor: "#3c2200"
3331
+ }), /* @__PURE__ */ t("stop", {
3332
+ offset: 1,
3333
+ stopColor: "#512d00"
3334
+ })]
3335
+ })
3336
+ ] })
3337
+ ]
3338
+ }), R = {
3339
+ list: "_list_1vfe4_1",
3340
+ icon: "_icon_1vfe4_6",
3341
+ button: "_button_1vfe4_11"
3342
+ }, z = [
3343
+ [F, 1],
3344
+ [T, 2],
3345
+ [L, 3],
3346
+ [E, 4],
3347
+ [I, 5]
3348
+ ], B = ({ minLabel: e, maxLabel: i, onChange: a, classNames: o }) => {
3349
+ let c = r((e) => {
3350
+ a(Number(e.currentTarget.value));
3351
+ }, [a]);
3352
+ return /* @__PURE__ */ n("div", {
3353
+ className: s(R.base, o?.base),
3354
+ children: [/* @__PURE__ */ t("div", {
3355
+ className: s(R.list, o?.list),
3356
+ children: z.map(([e, n]) => /* @__PURE__ */ t("button", {
3357
+ "aria-label": `Score ${n}`,
3358
+ className: s(R.button, o?.button),
3359
+ type: "button",
3360
+ value: n,
3361
+ onClick: c,
3362
+ children: /* @__PURE__ */ t(e, {
3363
+ "aria-hidden": "true",
3364
+ className: s(R.icon, o?.icon),
3365
+ width: 32,
3366
+ height: 32
3367
+ })
3368
+ }, n))
3369
+ }), !!e && !!i && /* @__PURE__ */ t(w, {
3370
+ className: o?.labels,
3371
+ minLabel: e,
3372
+ maxLabel: i
3373
+ })]
3374
+ });
3375
+ }, V = {
3376
+ list: "_list_16sag_1",
3377
+ button: "_button_16sag_6"
3378
+ }, H = [
3379
+ 1,
3380
+ 2,
3381
+ 3,
3382
+ 4,
3383
+ 5
3384
+ ], U = ({ classNames: e, minLabel: i, maxLabel: a, onChange: o }) => {
3385
+ let c = r((e) => {
3386
+ o(Number(e.currentTarget.value));
3387
+ }, [o]);
3388
+ return /* @__PURE__ */ n("div", {
3389
+ className: s(V.base, e?.base),
3390
+ children: [/* @__PURE__ */ t("div", {
3391
+ className: s(V.list, e?.list),
3392
+ children: H.map((n) => /* @__PURE__ */ t("button", {
3393
+ "aria-label": `Score ${n}`,
3394
+ className: s(V.button, e?.button),
3395
+ type: "button",
3396
+ value: n,
3397
+ onClick: c,
3398
+ children: /* @__PURE__ */ t("span", {
3399
+ className: s(V.score, e?.score),
3400
+ children: n
3401
+ })
3402
+ }, n))
3403
+ }), !!i && !!a && /* @__PURE__ */ t(w, {
3404
+ className: e?.labels,
3405
+ minLabel: i,
3406
+ maxLabel: a
3407
+ })]
3408
+ });
3409
+ }, W = (e) => /* @__PURE__ */ t("svg", {
3410
+ xmlns: "http://www.w3.org/2000/svg",
3411
+ fill: "none",
3412
+ viewBox: "0 0 40 40",
3413
+ ...e,
3414
+ children: /* @__PURE__ */ t("path", {
3415
+ fill: "#d0d5dd",
3416
+ stroke: "#d0d5dd",
3417
+ strokeLinecap: "round",
3418
+ strokeLinejoin: "round",
3419
+ 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"
3420
+ })
3421
+ }), G = (e) => /* @__PURE__ */ t("svg", {
3422
+ xmlns: "http://www.w3.org/2000/svg",
3423
+ fill: "none",
3424
+ viewBox: "0 0 40 40",
3425
+ ...e,
3426
+ children: /* @__PURE__ */ t("path", {
3427
+ fill: "#fec84b",
3428
+ stroke: "#fec84b",
3429
+ strokeLinecap: "round",
3430
+ strokeLinejoin: "round",
3431
+ strokeWidth: 2,
3432
+ 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"
3433
+ })
3434
+ }), K = {
3435
+ list: "_list_1kpxu_1",
3436
+ icon: "_icon_1kpxu_6",
3437
+ button: "_button_1kpxu_11"
3438
+ }, ee = [
3439
+ 1,
3440
+ 2,
3441
+ 3,
3442
+ 4,
3443
+ 5
3444
+ ], te = ({ minLabel: e, maxLabel: i, onChange: a, classNames: c }) => {
3445
+ let [l, u] = o(null), d = r((e) => {
3446
+ u(Number(e.currentTarget.value));
3447
+ }, []), f = r((e) => {
3448
+ u(Number(e.currentTarget.value));
3449
+ }, []), p = r(() => {
3450
+ u(null);
3451
+ }, []), m = r((e) => {
3452
+ a(Number(e.currentTarget.value));
3453
+ }, [a]);
3454
+ return /* @__PURE__ */ n("div", {
3455
+ className: s(K.base, c?.base),
3456
+ children: [/* @__PURE__ */ t("div", {
3457
+ className: s(K.list, c?.list),
3458
+ onBlur: p,
3459
+ onMouseLeave: p,
3460
+ children: ee.map((e) => /* @__PURE__ */ t("button", {
3461
+ "aria-label": `${e} ${e > 1 ? "stars" : "star"}`,
3462
+ className: s(K.button, c?.button),
3463
+ type: "button",
3464
+ value: e,
3465
+ onClick: m,
3466
+ onFocus: d,
3467
+ onMouseOver: f,
3468
+ children: t(l !== null && e <= l ? G : W, {
3469
+ "aria-hidden": "true",
3470
+ className: s(K.icon, c?.icon),
3471
+ width: 40,
3472
+ height: 40
3473
+ })
3474
+ }, e))
3475
+ }), !!e && !!i && /* @__PURE__ */ t(w, {
3476
+ className: c?.labels,
3477
+ minLabel: e,
3478
+ maxLabel: i
3479
+ })]
3480
+ });
3481
+ }, q = {
3482
+ base: "_base_sfbnw_1",
3483
+ rating: "_rating_sfbnw_5",
3484
+ feedback: "_feedback_sfbnw_6",
3485
+ contact: "_contact_sfbnw_7",
3486
+ success: "_success_sfbnw_8"
3487
+ }, ne = ({ classNames: e, dir: r, scaleStyle: i, question: a, minLabel: o, maxLabel: c, textQuestion: l, textButtonSendLabel: u, textButtonSkipLabel: d, responseType: f, choiceOptions: p, thankYouMessage: m, collectContact: h, userId: g, contactQuestion: _, contactSubtext: v, contactButtonSendLabel: y, contactButtonSkipLabel: b, onScoreSubmit: C, onFeedbackSubmit: w, onContactSubmit: T }) => {
3488
+ let { screen: E, onScoreChange: D, onFeedbackChange: O, onContactChange: k } = S({
3489
+ responseType: f,
3490
+ collectContact: h,
3491
+ userId: g,
3492
+ onScoreSubmit: C,
3493
+ onFeedbackSubmit: w,
3494
+ onContactSubmit: T
3495
+ });
3496
+ return /* @__PURE__ */ n(x, {
3497
+ className: q.base,
3498
+ classNames: {
3499
+ ...e?.base,
3500
+ rating: s(q.rating, e?.base?.rating),
3501
+ feedback: s(q.feedback, e?.base?.feedback),
3502
+ contact: s(q.contact, e?.base?.contact),
3503
+ success: s(q.success, e?.base?.success)
3504
+ },
3505
+ dir: r,
3506
+ screen: E,
3507
+ question: a,
3508
+ textQuestion: l,
3509
+ textButtonSendLabel: u,
3510
+ textButtonSkipLabel: d,
3511
+ responseType: f,
3512
+ choiceOptions: p,
3513
+ thankYouMessage: m,
3514
+ contactQuestion: _,
3515
+ contactSubtext: v,
3516
+ contactButtonSendLabel: y,
3517
+ contactButtonSkipLabel: b,
3518
+ onFeedback: O,
3519
+ onContact: k,
3520
+ children: [
3521
+ i === "emoji" && /* @__PURE__ */ t(B, {
3522
+ classNames: e?.scale,
3523
+ minLabel: o,
3524
+ maxLabel: c,
3525
+ onChange: D
3526
+ }),
3527
+ i === "numbers" && /* @__PURE__ */ t(U, {
3528
+ classNames: e?.scale,
3529
+ minLabel: o,
3530
+ maxLabel: c,
3531
+ onChange: D
3532
+ }),
3533
+ i === "stars" && /* @__PURE__ */ t(te, {
3534
+ classNames: e?.scale,
3535
+ minLabel: o,
3536
+ maxLabel: c,
3537
+ onChange: D
3538
+ })
3539
+ ]
3540
+ });
3541
+ }, J = {
3542
+ list: "_list_whbas_1",
3543
+ button: "_button_whbas_13",
3544
+ score: "_score_whbas_52",
3545
+ label: "_label_whbas_55",
3546
+ labels: "_labels_whbas_75"
3547
+ }, Y = [
3548
+ 1,
3549
+ 2,
3550
+ 3,
3551
+ 4,
3552
+ 5,
3553
+ 6,
3554
+ 7
3555
+ ], re = ({ classNames: e, minLabel: i, maxLabel: a, onChange: o }) => {
3556
+ let c = r((e) => {
3557
+ o(Number(e.currentTarget.value));
3558
+ }, [o]);
3559
+ return /* @__PURE__ */ n("div", {
3560
+ className: s(J.base, e?.base),
3561
+ children: [/* @__PURE__ */ t("div", {
3562
+ className: s(J.list, e?.list),
3563
+ children: Y.map((r) => /* @__PURE__ */ n("button", {
3564
+ "aria-label": `Score ${r}`,
3565
+ className: s(J.button, e?.button),
3566
+ type: "button",
3567
+ value: r,
3568
+ onClick: c,
3569
+ children: [
3570
+ /* @__PURE__ */ t("span", {
3571
+ className: s(J.score, e?.score),
3572
+ children: r
3573
+ }),
3574
+ r === Y[0] && !!i && /* @__PURE__ */ t("span", {
3575
+ className: J.label,
3576
+ children: ` - ${i}`
3577
+ }, "left"),
3578
+ r === Y[Y.length - 1] && !!a && /* @__PURE__ */ t("span", {
3579
+ className: J.label,
3580
+ children: ` - ${a}`
3581
+ }, "right")
3582
+ ]
3583
+ }, r))
3584
+ }), !!i && !!a && /* @__PURE__ */ t(w, {
3585
+ className: s(J.labels, e?.labels),
3586
+ minLabel: i,
3587
+ maxLabel: a
3588
+ })]
3589
+ });
3590
+ }, X = {
3591
+ base: "_base_tj93m_1",
3592
+ rating: "_rating_tj93m_5",
3593
+ feedback: "_feedback_tj93m_19",
3594
+ contact: "_contact_tj93m_20",
3595
+ success: "_success_tj93m_21"
3596
+ }, ie = ({ classNames: e, dir: n, scaleStyle: r, question: i, minLabel: a, maxLabel: o, textQuestion: c, textButtonSendLabel: l, textButtonSkipLabel: u, responseType: d, choiceOptions: f, thankYouMessage: p, collectContact: m, userId: h, contactQuestion: g, contactSubtext: _, contactButtonSendLabel: v, contactButtonSkipLabel: y, onScoreSubmit: b, onFeedbackSubmit: C, onContactSubmit: w }) => {
3597
+ let { screen: T, onScoreChange: E, onFeedbackChange: D, onContactChange: O } = S({
3598
+ responseType: d,
3599
+ collectContact: m,
3600
+ userId: h,
3601
+ onScoreSubmit: b,
3602
+ onFeedbackSubmit: C,
3603
+ onContactSubmit: w
3604
+ });
3605
+ return /* @__PURE__ */ t(x, {
3606
+ className: X.base,
3607
+ classNames: {
3608
+ ...e?.base,
3609
+ rating: s(X.rating, e?.base?.rating),
3610
+ feedback: s(X.feedback, e?.base?.feedback),
3611
+ contact: s(X.contact, e?.base?.contact),
3612
+ success: s(X.success, e?.base?.success)
3613
+ },
3614
+ dir: n,
3615
+ screen: T,
3616
+ question: i,
3617
+ textQuestion: c,
3618
+ textButtonSendLabel: l,
3619
+ textButtonSkipLabel: u,
3620
+ responseType: d,
3621
+ choiceOptions: f,
3622
+ thankYouMessage: p,
3623
+ contactQuestion: g,
3624
+ contactSubtext: _,
3625
+ contactButtonSendLabel: v,
3626
+ contactButtonSkipLabel: y,
3627
+ onFeedback: D,
3628
+ onContact: O,
3629
+ children: r === "numbers" && /* @__PURE__ */ t(re, {
3630
+ classNames: e?.scale,
3631
+ minLabel: a,
3632
+ maxLabel: o,
3633
+ onChange: E
3634
+ })
3635
+ });
3636
+ }, Z = {
3637
+ list: "_list_divjm_1",
3638
+ button: "_button_divjm_13",
3639
+ score: "_score_divjm_52",
3640
+ label: "_label_divjm_55",
3641
+ labels: "_labels_divjm_75"
3642
+ }, Q = [
3643
+ 0,
3644
+ 1,
3645
+ 2,
3646
+ 3,
3647
+ 4,
3648
+ 5,
3649
+ 6,
3650
+ 7,
3651
+ 8,
3652
+ 9,
3653
+ 10
3654
+ ], ae = ({ classNames: e, minLabel: i, maxLabel: a, onChange: o }) => {
3655
+ let c = r((e) => {
3656
+ o(Number(e.currentTarget.value));
3657
+ }, [o]);
3658
+ return /* @__PURE__ */ n("div", {
3659
+ className: s(Z.base, e?.base),
3660
+ children: [/* @__PURE__ */ t("div", {
3661
+ className: s(Z.list, e?.list),
3662
+ children: Q.map((r) => /* @__PURE__ */ n("button", {
3663
+ "aria-label": `Score ${r}`,
3664
+ className: s(Z.button, e?.button),
3665
+ type: "button",
3666
+ value: r,
3667
+ onClick: c,
3668
+ children: [
3669
+ /* @__PURE__ */ t("span", {
3670
+ className: s(Z.score, e?.score),
3671
+ children: r
3672
+ }),
3673
+ r === Q[0] && !!i && /* @__PURE__ */ t("span", {
3674
+ className: Z.label,
3675
+ children: ` - ${i}`
3676
+ }, "left"),
3677
+ r === Q[Q.length - 1] && !!a && /* @__PURE__ */ t("span", {
3678
+ className: Z.label,
3679
+ children: ` - ${a}`
3680
+ }, "right")
3681
+ ]
3682
+ }, r))
3683
+ }), !!i && !!a && /* @__PURE__ */ t(w, {
3684
+ className: s(Z.labels, e?.labels),
3685
+ minLabel: i,
3686
+ maxLabel: a
3687
+ })]
3688
+ });
3689
+ }, $ = {
3690
+ base: "_base_kj5ew_1",
3691
+ rating: "_rating_kj5ew_5",
3692
+ feedback: "_feedback_kj5ew_19",
3693
+ contact: "_contact_kj5ew_20",
3694
+ success: "_success_kj5ew_21"
3695
+ }, oe = ({ classNames: e, dir: n, scaleStyle: r, question: i, minLabel: a, maxLabel: o, textQuestion: c, textButtonSendLabel: l, textButtonSkipLabel: u, responseType: d, choiceOptions: f, thankYouMessage: p, collectContact: m, userId: h, contactQuestion: g, contactSubtext: _, contactButtonSendLabel: v, contactButtonSkipLabel: y, onScoreSubmit: b, onFeedbackSubmit: C, onContactSubmit: w }) => {
3696
+ let { screen: T, onScoreChange: E, onFeedbackChange: D, onContactChange: O } = S({
3697
+ responseType: d,
3698
+ collectContact: m,
3699
+ userId: h,
3700
+ onScoreSubmit: b,
3701
+ onFeedbackSubmit: C,
3702
+ onContactSubmit: w
3703
+ });
3704
+ return /* @__PURE__ */ t(x, {
3705
+ className: $.base,
3706
+ classNames: {
3707
+ ...e?.base,
3708
+ rating: s($.rating, e?.base?.rating),
3709
+ feedback: s($.feedback, e?.base?.feedback),
3710
+ contact: s($.contact, e?.base?.contact),
3711
+ success: s($.success, e?.base?.success)
3712
+ },
3713
+ dir: n,
3714
+ screen: T,
3715
+ question: i,
3716
+ textQuestion: c,
3717
+ textButtonSendLabel: l,
3718
+ textButtonSkipLabel: u,
3719
+ responseType: d,
3720
+ choiceOptions: f,
3721
+ thankYouMessage: p,
3722
+ contactQuestion: g,
3723
+ contactSubtext: _,
3724
+ contactButtonSendLabel: v,
3725
+ contactButtonSkipLabel: y,
3726
+ onFeedback: D,
3727
+ onContact: O,
3728
+ children: r === "numbers" && /* @__PURE__ */ t(ae, {
3729
+ classNames: e?.scale,
3730
+ minLabel: a,
3731
+ maxLabel: o,
3732
+ onChange: E
3733
+ })
3734
+ });
1002
3735
  };
3736
+ //#endregion
3737
+ export { ie as CES7Survey, P as CSAT2Survey, ne as CSAT5Survey, oe as NPS10Survey, d as Popup, l as Surface };