@bonprix-ds/react-icon 1.0.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 ADDED
@@ -0,0 +1,1442 @@
1
+ "use client";
2
+ import { createContext as e, useContext as t } from "react";
3
+ import { jsx as n } from "react/jsx-runtime";
4
+ //#region ../../utils/src/contexts/SVGSpriteContext.tsx
5
+ var r = e({}), i = {}, a = () => i, o = {
6
+ iconSprite: "/assets/sprites/icon-sprite.svg",
7
+ logoSprite: "/assets/sprites/logo-sprite.svg",
8
+ figurineSprite: "/assets/sprites/figurine-sprite.svg",
9
+ illustrationSprite: "/assets/sprites/illustration-sprite.svg"
10
+ }, s = (e, t, n) => t?.[e] ?? n?.[e] ?? o[e], c = () => {
11
+ let e = t(r), n = a();
12
+ return {
13
+ iconSprite: s("iconSprite", e, n),
14
+ logoSprite: s("logoSprite", e, n),
15
+ figurineSprite: s("figurineSprite", e, n),
16
+ illustrationSprite: s("illustrationSprite", e, n)
17
+ };
18
+ }, l = "-", u = (e) => {
19
+ let t = m(e), { conflictingClassGroups: n, conflictingClassGroupModifiers: r } = e;
20
+ return {
21
+ getClassGroupId: (e) => {
22
+ let n = e.split(l);
23
+ return n[0] === "" && n.length !== 1 && n.shift(), d(n, t) || p(e);
24
+ },
25
+ getConflictingClassGroupIds: (e, t) => {
26
+ let i = n[e] || [];
27
+ return t && r[e] ? [...i, ...r[e]] : i;
28
+ }
29
+ };
30
+ }, d = (e, t) => {
31
+ if (e.length === 0) return t.classGroupId;
32
+ let n = e[0], r = t.nextPart.get(n), i = r ? d(e.slice(1), r) : void 0;
33
+ if (i) return i;
34
+ if (t.validators.length === 0) return;
35
+ let a = e.join(l);
36
+ return t.validators.find(({ validator: e }) => e(a))?.classGroupId;
37
+ }, f = /^\[(.+)\]$/, p = (e) => {
38
+ if (f.test(e)) {
39
+ let t = f.exec(e)[1], n = t?.substring(0, t.indexOf(":"));
40
+ if (n) return "arbitrary.." + n;
41
+ }
42
+ }, m = (e) => {
43
+ let { theme: t, prefix: n } = e, r = {
44
+ nextPart: /* @__PURE__ */ new Map(),
45
+ validators: []
46
+ };
47
+ return v(Object.entries(e.classGroups), n).forEach(([e, n]) => {
48
+ h(n, r, e, t);
49
+ }), r;
50
+ }, h = (e, t, n, r) => {
51
+ e.forEach((e) => {
52
+ if (typeof e == "string") {
53
+ let r = e === "" ? t : g(t, e);
54
+ r.classGroupId = n;
55
+ return;
56
+ }
57
+ if (typeof e == "function") {
58
+ if (_(e)) {
59
+ h(e(r), t, n, r);
60
+ return;
61
+ }
62
+ t.validators.push({
63
+ validator: e,
64
+ classGroupId: n
65
+ });
66
+ return;
67
+ }
68
+ Object.entries(e).forEach(([e, i]) => {
69
+ h(i, g(t, e), n, r);
70
+ });
71
+ });
72
+ }, g = (e, t) => {
73
+ let n = e;
74
+ return t.split(l).forEach((e) => {
75
+ n.nextPart.has(e) || n.nextPart.set(e, {
76
+ nextPart: /* @__PURE__ */ new Map(),
77
+ validators: []
78
+ }), n = n.nextPart.get(e);
79
+ }), n;
80
+ }, _ = (e) => e.isThemeGetter, v = (e, t) => t ? e.map(([e, n]) => [e, n.map((e) => typeof e == "string" ? t + e : typeof e == "object" ? Object.fromEntries(Object.entries(e).map(([e, n]) => [t + e, n])) : e)]) : e, y = (e) => {
81
+ if (e < 1) return {
82
+ get: () => void 0,
83
+ set: () => {}
84
+ };
85
+ let t = 0, n = /* @__PURE__ */ new Map(), r = /* @__PURE__ */ new Map(), i = (i, a) => {
86
+ n.set(i, a), t++, t > e && (t = 0, r = n, n = /* @__PURE__ */ new Map());
87
+ };
88
+ return {
89
+ get(e) {
90
+ let t = n.get(e);
91
+ if (t !== void 0) return t;
92
+ if ((t = r.get(e)) !== void 0) return i(e, t), t;
93
+ },
94
+ set(e, t) {
95
+ n.has(e) ? n.set(e, t) : i(e, t);
96
+ }
97
+ };
98
+ }, b = "!", x = (e) => {
99
+ let { separator: t, experimentalParseClassName: n } = e, r = t.length === 1, i = t[0], a = t.length, o = (e) => {
100
+ let n = [], o = 0, s = 0, c;
101
+ for (let l = 0; l < e.length; l++) {
102
+ let u = e[l];
103
+ if (o === 0) {
104
+ if (u === i && (r || e.slice(l, l + a) === t)) {
105
+ n.push(e.slice(s, l)), s = l + a;
106
+ continue;
107
+ }
108
+ if (u === "/") {
109
+ c = l;
110
+ continue;
111
+ }
112
+ }
113
+ u === "[" ? o++ : u === "]" && o--;
114
+ }
115
+ let l = n.length === 0 ? e : e.substring(s), u = l.startsWith(b);
116
+ return {
117
+ modifiers: n,
118
+ hasImportantModifier: u,
119
+ baseClassName: u ? l.substring(1) : l,
120
+ maybePostfixModifierPosition: c && c > s ? c - s : void 0
121
+ };
122
+ };
123
+ return n ? (e) => n({
124
+ className: e,
125
+ parseClassName: o
126
+ }) : o;
127
+ }, S = (e) => {
128
+ if (e.length <= 1) return e;
129
+ let t = [], n = [];
130
+ return e.forEach((e) => {
131
+ e[0] === "[" ? (t.push(...n.sort(), e), n = []) : n.push(e);
132
+ }), t.push(...n.sort()), t;
133
+ }, C = (e) => ({
134
+ cache: y(e.cacheSize),
135
+ parseClassName: x(e),
136
+ ...u(e)
137
+ }), w = /\s+/, T = (e, t) => {
138
+ let { parseClassName: n, getClassGroupId: r, getConflictingClassGroupIds: i } = t, a = [], o = e.trim().split(w), s = "";
139
+ for (let e = o.length - 1; e >= 0; --e) {
140
+ let t = o[e], { modifiers: c, hasImportantModifier: l, baseClassName: u, maybePostfixModifierPosition: d } = n(t), f = !!d, p = r(f ? u.substring(0, d) : u);
141
+ if (!p) {
142
+ if (!f) {
143
+ s = t + (s.length > 0 ? " " + s : s);
144
+ continue;
145
+ }
146
+ if (p = r(u), !p) {
147
+ s = t + (s.length > 0 ? " " + s : s);
148
+ continue;
149
+ }
150
+ f = !1;
151
+ }
152
+ let m = S(c).join(":"), h = l ? m + b : m, g = h + p;
153
+ if (a.includes(g)) continue;
154
+ a.push(g);
155
+ let _ = i(p, f);
156
+ for (let e = 0; e < _.length; ++e) {
157
+ let t = _[e];
158
+ a.push(h + t);
159
+ }
160
+ s = t + (s.length > 0 ? " " + s : s);
161
+ }
162
+ return s;
163
+ };
164
+ function E() {
165
+ let e = 0, t, n, r = "";
166
+ for (; e < arguments.length;) (t = arguments[e++]) && (n = D(t)) && (r && (r += " "), r += n);
167
+ return r;
168
+ }
169
+ var D = (e) => {
170
+ if (typeof e == "string") return e;
171
+ let t, n = "";
172
+ for (let r = 0; r < e.length; r++) e[r] && (t = D(e[r])) && (n && (n += " "), n += t);
173
+ return n;
174
+ };
175
+ function O(e, ...t) {
176
+ let n, r, i, a = o;
177
+ function o(o) {
178
+ return n = C(t.reduce((e, t) => t(e), e())), r = n.cache.get, i = n.cache.set, a = s, s(o);
179
+ }
180
+ function s(e) {
181
+ let t = r(e);
182
+ if (t) return t;
183
+ let a = T(e, n);
184
+ return i(e, a), a;
185
+ }
186
+ return function() {
187
+ return a(E.apply(null, arguments));
188
+ };
189
+ }
190
+ var k = (e) => {
191
+ let t = (t) => t[e] || [];
192
+ return t.isThemeGetter = !0, t;
193
+ }, A = /^\[(?:([a-z-]+):)?(.+)\]$/i, j = /^\d+\/\d+$/, M = /*#__PURE__*/ new Set([
194
+ "px",
195
+ "full",
196
+ "screen"
197
+ ]), N = /^(\d+(\.\d+)?)?(xs|sm|md|lg|xl)$/, P = /\d+(%|px|r?em|[sdl]?v([hwib]|min|max)|pt|pc|in|cm|mm|cap|ch|ex|r?lh|cq(w|h|i|b|min|max))|\b(calc|min|max|clamp)\(.+\)|^0$/, F = /^(rgba?|hsla?|hwb|(ok)?(lab|lch)|color-mix)\(.+\)$/, I = /^(inset_)?-?((\d+)?\.?(\d+)[a-z]+|0)_-?((\d+)?\.?(\d+)[a-z]+|0)/, L = /^(url|image|image-set|cross-fade|element|(repeating-)?(linear|radial|conic)-gradient)\(.+\)$/, R = (e) => B(e) || M.has(e) || j.test(e), z = (e) => Z(e, "length", ne), B = (e) => !!e && !Number.isNaN(Number(e)), V = (e) => Z(e, "number", B), H = (e) => !!e && Number.isInteger(Number(e)), U = (e) => e.endsWith("%") && B(e.slice(0, -1)), W = (e) => A.test(e), G = (e) => N.test(e), K = /*#__PURE__*/ new Set([
198
+ "length",
199
+ "size",
200
+ "percentage"
201
+ ]), q = (e) => Z(e, K, Q), J = (e) => Z(e, "position", Q), Y = /*#__PURE__*/ new Set(["image", "url"]), ee = (e) => Z(e, Y, ie), te = (e) => Z(e, "", re), X = () => !0, Z = (e, t, n) => {
202
+ let r = A.exec(e);
203
+ return r ? r[1] ? typeof t == "string" ? r[1] === t : t.has(r[1]) : n(r[2]) : !1;
204
+ }, ne = (e) => P.test(e) && !F.test(e), Q = () => !1, re = (e) => I.test(e), ie = (e) => L.test(e), ae = /*#__PURE__*/ O(() => {
205
+ let e = k("colors"), t = k("spacing"), n = k("blur"), r = k("brightness"), i = k("borderColor"), a = k("borderRadius"), o = k("borderSpacing"), s = k("borderWidth"), c = k("contrast"), l = k("grayscale"), u = k("hueRotate"), d = k("invert"), f = k("gap"), p = k("gradientColorStops"), m = k("gradientColorStopPositions"), h = k("inset"), g = k("margin"), _ = k("opacity"), v = k("padding"), y = k("saturate"), b = k("scale"), x = k("sepia"), S = k("skew"), C = k("space"), w = k("translate"), T = () => [
206
+ "auto",
207
+ "contain",
208
+ "none"
209
+ ], E = () => [
210
+ "auto",
211
+ "hidden",
212
+ "clip",
213
+ "visible",
214
+ "scroll"
215
+ ], D = () => [
216
+ "auto",
217
+ W,
218
+ t
219
+ ], O = () => [W, t], A = () => [
220
+ "",
221
+ R,
222
+ z
223
+ ], j = () => [
224
+ "auto",
225
+ B,
226
+ W
227
+ ], M = () => [
228
+ "bottom",
229
+ "center",
230
+ "left",
231
+ "left-bottom",
232
+ "left-top",
233
+ "right",
234
+ "right-bottom",
235
+ "right-top",
236
+ "top"
237
+ ], N = () => [
238
+ "solid",
239
+ "dashed",
240
+ "dotted",
241
+ "double",
242
+ "none"
243
+ ], P = () => [
244
+ "normal",
245
+ "multiply",
246
+ "screen",
247
+ "overlay",
248
+ "darken",
249
+ "lighten",
250
+ "color-dodge",
251
+ "color-burn",
252
+ "hard-light",
253
+ "soft-light",
254
+ "difference",
255
+ "exclusion",
256
+ "hue",
257
+ "saturation",
258
+ "color",
259
+ "luminosity"
260
+ ], F = () => [
261
+ "start",
262
+ "end",
263
+ "center",
264
+ "between",
265
+ "around",
266
+ "evenly",
267
+ "stretch"
268
+ ], I = () => [
269
+ "",
270
+ "0",
271
+ W
272
+ ], L = () => [
273
+ "auto",
274
+ "avoid",
275
+ "all",
276
+ "avoid-page",
277
+ "page",
278
+ "left",
279
+ "right",
280
+ "column"
281
+ ], K = () => [B, W];
282
+ return {
283
+ cacheSize: 500,
284
+ separator: ":",
285
+ theme: {
286
+ colors: [X],
287
+ spacing: [R, z],
288
+ blur: [
289
+ "none",
290
+ "",
291
+ G,
292
+ W
293
+ ],
294
+ brightness: K(),
295
+ borderColor: [e],
296
+ borderRadius: [
297
+ "none",
298
+ "",
299
+ "full",
300
+ G,
301
+ W
302
+ ],
303
+ borderSpacing: O(),
304
+ borderWidth: A(),
305
+ contrast: K(),
306
+ grayscale: I(),
307
+ hueRotate: K(),
308
+ invert: I(),
309
+ gap: O(),
310
+ gradientColorStops: [e],
311
+ gradientColorStopPositions: [U, z],
312
+ inset: D(),
313
+ margin: D(),
314
+ opacity: K(),
315
+ padding: O(),
316
+ saturate: K(),
317
+ scale: K(),
318
+ sepia: I(),
319
+ skew: K(),
320
+ space: O(),
321
+ translate: O()
322
+ },
323
+ classGroups: {
324
+ aspect: [{ aspect: [
325
+ "auto",
326
+ "square",
327
+ "video",
328
+ W
329
+ ] }],
330
+ container: ["container"],
331
+ columns: [{ columns: [G] }],
332
+ "break-after": [{ "break-after": L() }],
333
+ "break-before": [{ "break-before": L() }],
334
+ "break-inside": [{ "break-inside": [
335
+ "auto",
336
+ "avoid",
337
+ "avoid-page",
338
+ "avoid-column"
339
+ ] }],
340
+ "box-decoration": [{ "box-decoration": ["slice", "clone"] }],
341
+ box: [{ box: ["border", "content"] }],
342
+ display: [
343
+ "block",
344
+ "inline-block",
345
+ "inline",
346
+ "flex",
347
+ "inline-flex",
348
+ "table",
349
+ "inline-table",
350
+ "table-caption",
351
+ "table-cell",
352
+ "table-column",
353
+ "table-column-group",
354
+ "table-footer-group",
355
+ "table-header-group",
356
+ "table-row-group",
357
+ "table-row",
358
+ "flow-root",
359
+ "grid",
360
+ "inline-grid",
361
+ "contents",
362
+ "list-item",
363
+ "hidden"
364
+ ],
365
+ float: [{ float: [
366
+ "right",
367
+ "left",
368
+ "none",
369
+ "start",
370
+ "end"
371
+ ] }],
372
+ clear: [{ clear: [
373
+ "left",
374
+ "right",
375
+ "both",
376
+ "none",
377
+ "start",
378
+ "end"
379
+ ] }],
380
+ isolation: ["isolate", "isolation-auto"],
381
+ "object-fit": [{ object: [
382
+ "contain",
383
+ "cover",
384
+ "fill",
385
+ "none",
386
+ "scale-down"
387
+ ] }],
388
+ "object-position": [{ object: [...M(), W] }],
389
+ overflow: [{ overflow: E() }],
390
+ "overflow-x": [{ "overflow-x": E() }],
391
+ "overflow-y": [{ "overflow-y": E() }],
392
+ overscroll: [{ overscroll: T() }],
393
+ "overscroll-x": [{ "overscroll-x": T() }],
394
+ "overscroll-y": [{ "overscroll-y": T() }],
395
+ position: [
396
+ "static",
397
+ "fixed",
398
+ "absolute",
399
+ "relative",
400
+ "sticky"
401
+ ],
402
+ inset: [{ inset: [h] }],
403
+ "inset-x": [{ "inset-x": [h] }],
404
+ "inset-y": [{ "inset-y": [h] }],
405
+ start: [{ start: [h] }],
406
+ end: [{ end: [h] }],
407
+ top: [{ top: [h] }],
408
+ right: [{ right: [h] }],
409
+ bottom: [{ bottom: [h] }],
410
+ left: [{ left: [h] }],
411
+ visibility: [
412
+ "visible",
413
+ "invisible",
414
+ "collapse"
415
+ ],
416
+ z: [{ z: [
417
+ "auto",
418
+ H,
419
+ W
420
+ ] }],
421
+ basis: [{ basis: D() }],
422
+ "flex-direction": [{ flex: [
423
+ "row",
424
+ "row-reverse",
425
+ "col",
426
+ "col-reverse"
427
+ ] }],
428
+ "flex-wrap": [{ flex: [
429
+ "wrap",
430
+ "wrap-reverse",
431
+ "nowrap"
432
+ ] }],
433
+ flex: [{ flex: [
434
+ "1",
435
+ "auto",
436
+ "initial",
437
+ "none",
438
+ W
439
+ ] }],
440
+ grow: [{ grow: I() }],
441
+ shrink: [{ shrink: I() }],
442
+ order: [{ order: [
443
+ "first",
444
+ "last",
445
+ "none",
446
+ H,
447
+ W
448
+ ] }],
449
+ "grid-cols": [{ "grid-cols": [X] }],
450
+ "col-start-end": [{ col: [
451
+ "auto",
452
+ { span: [
453
+ "full",
454
+ H,
455
+ W
456
+ ] },
457
+ W
458
+ ] }],
459
+ "col-start": [{ "col-start": j() }],
460
+ "col-end": [{ "col-end": j() }],
461
+ "grid-rows": [{ "grid-rows": [X] }],
462
+ "row-start-end": [{ row: [
463
+ "auto",
464
+ { span: [H, W] },
465
+ W
466
+ ] }],
467
+ "row-start": [{ "row-start": j() }],
468
+ "row-end": [{ "row-end": j() }],
469
+ "grid-flow": [{ "grid-flow": [
470
+ "row",
471
+ "col",
472
+ "dense",
473
+ "row-dense",
474
+ "col-dense"
475
+ ] }],
476
+ "auto-cols": [{ "auto-cols": [
477
+ "auto",
478
+ "min",
479
+ "max",
480
+ "fr",
481
+ W
482
+ ] }],
483
+ "auto-rows": [{ "auto-rows": [
484
+ "auto",
485
+ "min",
486
+ "max",
487
+ "fr",
488
+ W
489
+ ] }],
490
+ gap: [{ gap: [f] }],
491
+ "gap-x": [{ "gap-x": [f] }],
492
+ "gap-y": [{ "gap-y": [f] }],
493
+ "justify-content": [{ justify: ["normal", ...F()] }],
494
+ "justify-items": [{ "justify-items": [
495
+ "start",
496
+ "end",
497
+ "center",
498
+ "stretch"
499
+ ] }],
500
+ "justify-self": [{ "justify-self": [
501
+ "auto",
502
+ "start",
503
+ "end",
504
+ "center",
505
+ "stretch"
506
+ ] }],
507
+ "align-content": [{ content: [
508
+ "normal",
509
+ ...F(),
510
+ "baseline"
511
+ ] }],
512
+ "align-items": [{ items: [
513
+ "start",
514
+ "end",
515
+ "center",
516
+ "baseline",
517
+ "stretch"
518
+ ] }],
519
+ "align-self": [{ self: [
520
+ "auto",
521
+ "start",
522
+ "end",
523
+ "center",
524
+ "stretch",
525
+ "baseline"
526
+ ] }],
527
+ "place-content": [{ "place-content": [...F(), "baseline"] }],
528
+ "place-items": [{ "place-items": [
529
+ "start",
530
+ "end",
531
+ "center",
532
+ "baseline",
533
+ "stretch"
534
+ ] }],
535
+ "place-self": [{ "place-self": [
536
+ "auto",
537
+ "start",
538
+ "end",
539
+ "center",
540
+ "stretch"
541
+ ] }],
542
+ p: [{ p: [v] }],
543
+ px: [{ px: [v] }],
544
+ py: [{ py: [v] }],
545
+ ps: [{ ps: [v] }],
546
+ pe: [{ pe: [v] }],
547
+ pt: [{ pt: [v] }],
548
+ pr: [{ pr: [v] }],
549
+ pb: [{ pb: [v] }],
550
+ pl: [{ pl: [v] }],
551
+ m: [{ m: [g] }],
552
+ mx: [{ mx: [g] }],
553
+ my: [{ my: [g] }],
554
+ ms: [{ ms: [g] }],
555
+ me: [{ me: [g] }],
556
+ mt: [{ mt: [g] }],
557
+ mr: [{ mr: [g] }],
558
+ mb: [{ mb: [g] }],
559
+ ml: [{ ml: [g] }],
560
+ "space-x": [{ "space-x": [C] }],
561
+ "space-x-reverse": ["space-x-reverse"],
562
+ "space-y": [{ "space-y": [C] }],
563
+ "space-y-reverse": ["space-y-reverse"],
564
+ w: [{ w: [
565
+ "auto",
566
+ "min",
567
+ "max",
568
+ "fit",
569
+ "svw",
570
+ "lvw",
571
+ "dvw",
572
+ W,
573
+ t
574
+ ] }],
575
+ "min-w": [{ "min-w": [
576
+ W,
577
+ t,
578
+ "min",
579
+ "max",
580
+ "fit"
581
+ ] }],
582
+ "max-w": [{ "max-w": [
583
+ W,
584
+ t,
585
+ "none",
586
+ "full",
587
+ "min",
588
+ "max",
589
+ "fit",
590
+ "prose",
591
+ { screen: [G] },
592
+ G
593
+ ] }],
594
+ h: [{ h: [
595
+ W,
596
+ t,
597
+ "auto",
598
+ "min",
599
+ "max",
600
+ "fit",
601
+ "svh",
602
+ "lvh",
603
+ "dvh"
604
+ ] }],
605
+ "min-h": [{ "min-h": [
606
+ W,
607
+ t,
608
+ "min",
609
+ "max",
610
+ "fit",
611
+ "svh",
612
+ "lvh",
613
+ "dvh"
614
+ ] }],
615
+ "max-h": [{ "max-h": [
616
+ W,
617
+ t,
618
+ "min",
619
+ "max",
620
+ "fit",
621
+ "svh",
622
+ "lvh",
623
+ "dvh"
624
+ ] }],
625
+ size: [{ size: [
626
+ W,
627
+ t,
628
+ "auto",
629
+ "min",
630
+ "max",
631
+ "fit"
632
+ ] }],
633
+ "font-size": [{ text: [
634
+ "base",
635
+ G,
636
+ z
637
+ ] }],
638
+ "font-smoothing": ["antialiased", "subpixel-antialiased"],
639
+ "font-style": ["italic", "not-italic"],
640
+ "font-weight": [{ font: [
641
+ "thin",
642
+ "extralight",
643
+ "light",
644
+ "normal",
645
+ "medium",
646
+ "semibold",
647
+ "bold",
648
+ "extrabold",
649
+ "black",
650
+ V
651
+ ] }],
652
+ "font-family": [{ font: [X] }],
653
+ "fvn-normal": ["normal-nums"],
654
+ "fvn-ordinal": ["ordinal"],
655
+ "fvn-slashed-zero": ["slashed-zero"],
656
+ "fvn-figure": ["lining-nums", "oldstyle-nums"],
657
+ "fvn-spacing": ["proportional-nums", "tabular-nums"],
658
+ "fvn-fraction": ["diagonal-fractions", "stacked-fractions"],
659
+ tracking: [{ tracking: [
660
+ "tighter",
661
+ "tight",
662
+ "normal",
663
+ "wide",
664
+ "wider",
665
+ "widest",
666
+ W
667
+ ] }],
668
+ "line-clamp": [{ "line-clamp": [
669
+ "none",
670
+ B,
671
+ V
672
+ ] }],
673
+ leading: [{ leading: [
674
+ "none",
675
+ "tight",
676
+ "snug",
677
+ "normal",
678
+ "relaxed",
679
+ "loose",
680
+ R,
681
+ W
682
+ ] }],
683
+ "list-image": [{ "list-image": ["none", W] }],
684
+ "list-style-type": [{ list: [
685
+ "none",
686
+ "disc",
687
+ "decimal",
688
+ W
689
+ ] }],
690
+ "list-style-position": [{ list: ["inside", "outside"] }],
691
+ "placeholder-color": [{ placeholder: [e] }],
692
+ "placeholder-opacity": [{ "placeholder-opacity": [_] }],
693
+ "text-alignment": [{ text: [
694
+ "left",
695
+ "center",
696
+ "right",
697
+ "justify",
698
+ "start",
699
+ "end"
700
+ ] }],
701
+ "text-color": [{ text: [e] }],
702
+ "text-opacity": [{ "text-opacity": [_] }],
703
+ "text-decoration": [
704
+ "underline",
705
+ "overline",
706
+ "line-through",
707
+ "no-underline"
708
+ ],
709
+ "text-decoration-style": [{ decoration: [...N(), "wavy"] }],
710
+ "text-decoration-thickness": [{ decoration: [
711
+ "auto",
712
+ "from-font",
713
+ R,
714
+ z
715
+ ] }],
716
+ "underline-offset": [{ "underline-offset": [
717
+ "auto",
718
+ R,
719
+ W
720
+ ] }],
721
+ "text-decoration-color": [{ decoration: [e] }],
722
+ "text-transform": [
723
+ "uppercase",
724
+ "lowercase",
725
+ "capitalize",
726
+ "normal-case"
727
+ ],
728
+ "text-overflow": [
729
+ "truncate",
730
+ "text-ellipsis",
731
+ "text-clip"
732
+ ],
733
+ "text-wrap": [{ text: [
734
+ "wrap",
735
+ "nowrap",
736
+ "balance",
737
+ "pretty"
738
+ ] }],
739
+ indent: [{ indent: O() }],
740
+ "vertical-align": [{ align: [
741
+ "baseline",
742
+ "top",
743
+ "middle",
744
+ "bottom",
745
+ "text-top",
746
+ "text-bottom",
747
+ "sub",
748
+ "super",
749
+ W
750
+ ] }],
751
+ whitespace: [{ whitespace: [
752
+ "normal",
753
+ "nowrap",
754
+ "pre",
755
+ "pre-line",
756
+ "pre-wrap",
757
+ "break-spaces"
758
+ ] }],
759
+ break: [{ break: [
760
+ "normal",
761
+ "words",
762
+ "all",
763
+ "keep"
764
+ ] }],
765
+ hyphens: [{ hyphens: [
766
+ "none",
767
+ "manual",
768
+ "auto"
769
+ ] }],
770
+ content: [{ content: ["none", W] }],
771
+ "bg-attachment": [{ bg: [
772
+ "fixed",
773
+ "local",
774
+ "scroll"
775
+ ] }],
776
+ "bg-clip": [{ "bg-clip": [
777
+ "border",
778
+ "padding",
779
+ "content",
780
+ "text"
781
+ ] }],
782
+ "bg-opacity": [{ "bg-opacity": [_] }],
783
+ "bg-origin": [{ "bg-origin": [
784
+ "border",
785
+ "padding",
786
+ "content"
787
+ ] }],
788
+ "bg-position": [{ bg: [...M(), J] }],
789
+ "bg-repeat": [{ bg: ["no-repeat", { repeat: [
790
+ "",
791
+ "x",
792
+ "y",
793
+ "round",
794
+ "space"
795
+ ] }] }],
796
+ "bg-size": [{ bg: [
797
+ "auto",
798
+ "cover",
799
+ "contain",
800
+ q
801
+ ] }],
802
+ "bg-image": [{ bg: [
803
+ "none",
804
+ { "gradient-to": [
805
+ "t",
806
+ "tr",
807
+ "r",
808
+ "br",
809
+ "b",
810
+ "bl",
811
+ "l",
812
+ "tl"
813
+ ] },
814
+ ee
815
+ ] }],
816
+ "bg-color": [{ bg: [e] }],
817
+ "gradient-from-pos": [{ from: [m] }],
818
+ "gradient-via-pos": [{ via: [m] }],
819
+ "gradient-to-pos": [{ to: [m] }],
820
+ "gradient-from": [{ from: [p] }],
821
+ "gradient-via": [{ via: [p] }],
822
+ "gradient-to": [{ to: [p] }],
823
+ rounded: [{ rounded: [a] }],
824
+ "rounded-s": [{ "rounded-s": [a] }],
825
+ "rounded-e": [{ "rounded-e": [a] }],
826
+ "rounded-t": [{ "rounded-t": [a] }],
827
+ "rounded-r": [{ "rounded-r": [a] }],
828
+ "rounded-b": [{ "rounded-b": [a] }],
829
+ "rounded-l": [{ "rounded-l": [a] }],
830
+ "rounded-ss": [{ "rounded-ss": [a] }],
831
+ "rounded-se": [{ "rounded-se": [a] }],
832
+ "rounded-ee": [{ "rounded-ee": [a] }],
833
+ "rounded-es": [{ "rounded-es": [a] }],
834
+ "rounded-tl": [{ "rounded-tl": [a] }],
835
+ "rounded-tr": [{ "rounded-tr": [a] }],
836
+ "rounded-br": [{ "rounded-br": [a] }],
837
+ "rounded-bl": [{ "rounded-bl": [a] }],
838
+ "border-w": [{ border: [s] }],
839
+ "border-w-x": [{ "border-x": [s] }],
840
+ "border-w-y": [{ "border-y": [s] }],
841
+ "border-w-s": [{ "border-s": [s] }],
842
+ "border-w-e": [{ "border-e": [s] }],
843
+ "border-w-t": [{ "border-t": [s] }],
844
+ "border-w-r": [{ "border-r": [s] }],
845
+ "border-w-b": [{ "border-b": [s] }],
846
+ "border-w-l": [{ "border-l": [s] }],
847
+ "border-opacity": [{ "border-opacity": [_] }],
848
+ "border-style": [{ border: [...N(), "hidden"] }],
849
+ "divide-x": [{ "divide-x": [s] }],
850
+ "divide-x-reverse": ["divide-x-reverse"],
851
+ "divide-y": [{ "divide-y": [s] }],
852
+ "divide-y-reverse": ["divide-y-reverse"],
853
+ "divide-opacity": [{ "divide-opacity": [_] }],
854
+ "divide-style": [{ divide: N() }],
855
+ "border-color": [{ border: [i] }],
856
+ "border-color-x": [{ "border-x": [i] }],
857
+ "border-color-y": [{ "border-y": [i] }],
858
+ "border-color-s": [{ "border-s": [i] }],
859
+ "border-color-e": [{ "border-e": [i] }],
860
+ "border-color-t": [{ "border-t": [i] }],
861
+ "border-color-r": [{ "border-r": [i] }],
862
+ "border-color-b": [{ "border-b": [i] }],
863
+ "border-color-l": [{ "border-l": [i] }],
864
+ "divide-color": [{ divide: [i] }],
865
+ "outline-style": [{ outline: ["", ...N()] }],
866
+ "outline-offset": [{ "outline-offset": [R, W] }],
867
+ "outline-w": [{ outline: [R, z] }],
868
+ "outline-color": [{ outline: [e] }],
869
+ "ring-w": [{ ring: A() }],
870
+ "ring-w-inset": ["ring-inset"],
871
+ "ring-color": [{ ring: [e] }],
872
+ "ring-opacity": [{ "ring-opacity": [_] }],
873
+ "ring-offset-w": [{ "ring-offset": [R, z] }],
874
+ "ring-offset-color": [{ "ring-offset": [e] }],
875
+ shadow: [{ shadow: [
876
+ "",
877
+ "inner",
878
+ "none",
879
+ G,
880
+ te
881
+ ] }],
882
+ "shadow-color": [{ shadow: [X] }],
883
+ opacity: [{ opacity: [_] }],
884
+ "mix-blend": [{ "mix-blend": [
885
+ ...P(),
886
+ "plus-lighter",
887
+ "plus-darker"
888
+ ] }],
889
+ "bg-blend": [{ "bg-blend": P() }],
890
+ filter: [{ filter: ["", "none"] }],
891
+ blur: [{ blur: [n] }],
892
+ brightness: [{ brightness: [r] }],
893
+ contrast: [{ contrast: [c] }],
894
+ "drop-shadow": [{ "drop-shadow": [
895
+ "",
896
+ "none",
897
+ G,
898
+ W
899
+ ] }],
900
+ grayscale: [{ grayscale: [l] }],
901
+ "hue-rotate": [{ "hue-rotate": [u] }],
902
+ invert: [{ invert: [d] }],
903
+ saturate: [{ saturate: [y] }],
904
+ sepia: [{ sepia: [x] }],
905
+ "backdrop-filter": [{ "backdrop-filter": ["", "none"] }],
906
+ "backdrop-blur": [{ "backdrop-blur": [n] }],
907
+ "backdrop-brightness": [{ "backdrop-brightness": [r] }],
908
+ "backdrop-contrast": [{ "backdrop-contrast": [c] }],
909
+ "backdrop-grayscale": [{ "backdrop-grayscale": [l] }],
910
+ "backdrop-hue-rotate": [{ "backdrop-hue-rotate": [u] }],
911
+ "backdrop-invert": [{ "backdrop-invert": [d] }],
912
+ "backdrop-opacity": [{ "backdrop-opacity": [_] }],
913
+ "backdrop-saturate": [{ "backdrop-saturate": [y] }],
914
+ "backdrop-sepia": [{ "backdrop-sepia": [x] }],
915
+ "border-collapse": [{ border: ["collapse", "separate"] }],
916
+ "border-spacing": [{ "border-spacing": [o] }],
917
+ "border-spacing-x": [{ "border-spacing-x": [o] }],
918
+ "border-spacing-y": [{ "border-spacing-y": [o] }],
919
+ "table-layout": [{ table: ["auto", "fixed"] }],
920
+ caption: [{ caption: ["top", "bottom"] }],
921
+ transition: [{ transition: [
922
+ "none",
923
+ "all",
924
+ "",
925
+ "colors",
926
+ "opacity",
927
+ "shadow",
928
+ "transform",
929
+ W
930
+ ] }],
931
+ duration: [{ duration: K() }],
932
+ ease: [{ ease: [
933
+ "linear",
934
+ "in",
935
+ "out",
936
+ "in-out",
937
+ W
938
+ ] }],
939
+ delay: [{ delay: K() }],
940
+ animate: [{ animate: [
941
+ "none",
942
+ "spin",
943
+ "ping",
944
+ "pulse",
945
+ "bounce",
946
+ W
947
+ ] }],
948
+ transform: [{ transform: [
949
+ "",
950
+ "gpu",
951
+ "none"
952
+ ] }],
953
+ scale: [{ scale: [b] }],
954
+ "scale-x": [{ "scale-x": [b] }],
955
+ "scale-y": [{ "scale-y": [b] }],
956
+ rotate: [{ rotate: [H, W] }],
957
+ "translate-x": [{ "translate-x": [w] }],
958
+ "translate-y": [{ "translate-y": [w] }],
959
+ "skew-x": [{ "skew-x": [S] }],
960
+ "skew-y": [{ "skew-y": [S] }],
961
+ "transform-origin": [{ origin: [
962
+ "center",
963
+ "top",
964
+ "top-right",
965
+ "right",
966
+ "bottom-right",
967
+ "bottom",
968
+ "bottom-left",
969
+ "left",
970
+ "top-left",
971
+ W
972
+ ] }],
973
+ accent: [{ accent: ["auto", e] }],
974
+ appearance: [{ appearance: ["none", "auto"] }],
975
+ cursor: [{ cursor: [
976
+ "auto",
977
+ "default",
978
+ "pointer",
979
+ "wait",
980
+ "text",
981
+ "move",
982
+ "help",
983
+ "not-allowed",
984
+ "none",
985
+ "context-menu",
986
+ "progress",
987
+ "cell",
988
+ "crosshair",
989
+ "vertical-text",
990
+ "alias",
991
+ "copy",
992
+ "no-drop",
993
+ "grab",
994
+ "grabbing",
995
+ "all-scroll",
996
+ "col-resize",
997
+ "row-resize",
998
+ "n-resize",
999
+ "e-resize",
1000
+ "s-resize",
1001
+ "w-resize",
1002
+ "ne-resize",
1003
+ "nw-resize",
1004
+ "se-resize",
1005
+ "sw-resize",
1006
+ "ew-resize",
1007
+ "ns-resize",
1008
+ "nesw-resize",
1009
+ "nwse-resize",
1010
+ "zoom-in",
1011
+ "zoom-out",
1012
+ W
1013
+ ] }],
1014
+ "caret-color": [{ caret: [e] }],
1015
+ "pointer-events": [{ "pointer-events": ["none", "auto"] }],
1016
+ resize: [{ resize: [
1017
+ "none",
1018
+ "y",
1019
+ "x",
1020
+ ""
1021
+ ] }],
1022
+ "scroll-behavior": [{ scroll: ["auto", "smooth"] }],
1023
+ "scroll-m": [{ "scroll-m": O() }],
1024
+ "scroll-mx": [{ "scroll-mx": O() }],
1025
+ "scroll-my": [{ "scroll-my": O() }],
1026
+ "scroll-ms": [{ "scroll-ms": O() }],
1027
+ "scroll-me": [{ "scroll-me": O() }],
1028
+ "scroll-mt": [{ "scroll-mt": O() }],
1029
+ "scroll-mr": [{ "scroll-mr": O() }],
1030
+ "scroll-mb": [{ "scroll-mb": O() }],
1031
+ "scroll-ml": [{ "scroll-ml": O() }],
1032
+ "scroll-p": [{ "scroll-p": O() }],
1033
+ "scroll-px": [{ "scroll-px": O() }],
1034
+ "scroll-py": [{ "scroll-py": O() }],
1035
+ "scroll-ps": [{ "scroll-ps": O() }],
1036
+ "scroll-pe": [{ "scroll-pe": O() }],
1037
+ "scroll-pt": [{ "scroll-pt": O() }],
1038
+ "scroll-pr": [{ "scroll-pr": O() }],
1039
+ "scroll-pb": [{ "scroll-pb": O() }],
1040
+ "scroll-pl": [{ "scroll-pl": O() }],
1041
+ "snap-align": [{ snap: [
1042
+ "start",
1043
+ "end",
1044
+ "center",
1045
+ "align-none"
1046
+ ] }],
1047
+ "snap-stop": [{ snap: ["normal", "always"] }],
1048
+ "snap-type": [{ snap: [
1049
+ "none",
1050
+ "x",
1051
+ "y",
1052
+ "both"
1053
+ ] }],
1054
+ "snap-strictness": [{ snap: ["mandatory", "proximity"] }],
1055
+ touch: [{ touch: [
1056
+ "auto",
1057
+ "none",
1058
+ "manipulation"
1059
+ ] }],
1060
+ "touch-x": [{ "touch-pan": [
1061
+ "x",
1062
+ "left",
1063
+ "right"
1064
+ ] }],
1065
+ "touch-y": [{ "touch-pan": [
1066
+ "y",
1067
+ "up",
1068
+ "down"
1069
+ ] }],
1070
+ "touch-pz": ["touch-pinch-zoom"],
1071
+ select: [{ select: [
1072
+ "none",
1073
+ "text",
1074
+ "all",
1075
+ "auto"
1076
+ ] }],
1077
+ "will-change": [{ "will-change": [
1078
+ "auto",
1079
+ "scroll",
1080
+ "contents",
1081
+ "transform",
1082
+ W
1083
+ ] }],
1084
+ fill: [{ fill: [e, "none"] }],
1085
+ "stroke-w": [{ stroke: [
1086
+ R,
1087
+ z,
1088
+ V
1089
+ ] }],
1090
+ stroke: [{ stroke: [e, "none"] }],
1091
+ sr: ["sr-only", "not-sr-only"],
1092
+ "forced-color-adjust": [{ "forced-color-adjust": ["auto", "none"] }]
1093
+ },
1094
+ conflictingClassGroups: {
1095
+ overflow: ["overflow-x", "overflow-y"],
1096
+ overscroll: ["overscroll-x", "overscroll-y"],
1097
+ inset: [
1098
+ "inset-x",
1099
+ "inset-y",
1100
+ "start",
1101
+ "end",
1102
+ "top",
1103
+ "right",
1104
+ "bottom",
1105
+ "left"
1106
+ ],
1107
+ "inset-x": ["right", "left"],
1108
+ "inset-y": ["top", "bottom"],
1109
+ flex: [
1110
+ "basis",
1111
+ "grow",
1112
+ "shrink"
1113
+ ],
1114
+ gap: ["gap-x", "gap-y"],
1115
+ p: [
1116
+ "px",
1117
+ "py",
1118
+ "ps",
1119
+ "pe",
1120
+ "pt",
1121
+ "pr",
1122
+ "pb",
1123
+ "pl"
1124
+ ],
1125
+ px: ["pr", "pl"],
1126
+ py: ["pt", "pb"],
1127
+ m: [
1128
+ "mx",
1129
+ "my",
1130
+ "ms",
1131
+ "me",
1132
+ "mt",
1133
+ "mr",
1134
+ "mb",
1135
+ "ml"
1136
+ ],
1137
+ mx: ["mr", "ml"],
1138
+ my: ["mt", "mb"],
1139
+ size: ["w", "h"],
1140
+ "font-size": ["leading"],
1141
+ "fvn-normal": [
1142
+ "fvn-ordinal",
1143
+ "fvn-slashed-zero",
1144
+ "fvn-figure",
1145
+ "fvn-spacing",
1146
+ "fvn-fraction"
1147
+ ],
1148
+ "fvn-ordinal": ["fvn-normal"],
1149
+ "fvn-slashed-zero": ["fvn-normal"],
1150
+ "fvn-figure": ["fvn-normal"],
1151
+ "fvn-spacing": ["fvn-normal"],
1152
+ "fvn-fraction": ["fvn-normal"],
1153
+ "line-clamp": ["display", "overflow"],
1154
+ rounded: [
1155
+ "rounded-s",
1156
+ "rounded-e",
1157
+ "rounded-t",
1158
+ "rounded-r",
1159
+ "rounded-b",
1160
+ "rounded-l",
1161
+ "rounded-ss",
1162
+ "rounded-se",
1163
+ "rounded-ee",
1164
+ "rounded-es",
1165
+ "rounded-tl",
1166
+ "rounded-tr",
1167
+ "rounded-br",
1168
+ "rounded-bl"
1169
+ ],
1170
+ "rounded-s": ["rounded-ss", "rounded-es"],
1171
+ "rounded-e": ["rounded-se", "rounded-ee"],
1172
+ "rounded-t": ["rounded-tl", "rounded-tr"],
1173
+ "rounded-r": ["rounded-tr", "rounded-br"],
1174
+ "rounded-b": ["rounded-br", "rounded-bl"],
1175
+ "rounded-l": ["rounded-tl", "rounded-bl"],
1176
+ "border-spacing": ["border-spacing-x", "border-spacing-y"],
1177
+ "border-w": [
1178
+ "border-w-s",
1179
+ "border-w-e",
1180
+ "border-w-t",
1181
+ "border-w-r",
1182
+ "border-w-b",
1183
+ "border-w-l"
1184
+ ],
1185
+ "border-w-x": ["border-w-r", "border-w-l"],
1186
+ "border-w-y": ["border-w-t", "border-w-b"],
1187
+ "border-color": [
1188
+ "border-color-s",
1189
+ "border-color-e",
1190
+ "border-color-t",
1191
+ "border-color-r",
1192
+ "border-color-b",
1193
+ "border-color-l"
1194
+ ],
1195
+ "border-color-x": ["border-color-r", "border-color-l"],
1196
+ "border-color-y": ["border-color-t", "border-color-b"],
1197
+ "scroll-m": [
1198
+ "scroll-mx",
1199
+ "scroll-my",
1200
+ "scroll-ms",
1201
+ "scroll-me",
1202
+ "scroll-mt",
1203
+ "scroll-mr",
1204
+ "scroll-mb",
1205
+ "scroll-ml"
1206
+ ],
1207
+ "scroll-mx": ["scroll-mr", "scroll-ml"],
1208
+ "scroll-my": ["scroll-mt", "scroll-mb"],
1209
+ "scroll-p": [
1210
+ "scroll-px",
1211
+ "scroll-py",
1212
+ "scroll-ps",
1213
+ "scroll-pe",
1214
+ "scroll-pt",
1215
+ "scroll-pr",
1216
+ "scroll-pb",
1217
+ "scroll-pl"
1218
+ ],
1219
+ "scroll-px": ["scroll-pr", "scroll-pl"],
1220
+ "scroll-py": ["scroll-pt", "scroll-pb"],
1221
+ touch: [
1222
+ "touch-x",
1223
+ "touch-y",
1224
+ "touch-pz"
1225
+ ],
1226
+ "touch-x": ["touch"],
1227
+ "touch-y": ["touch"],
1228
+ "touch-pz": ["touch"]
1229
+ },
1230
+ conflictingClassGroupModifiers: { "font-size": ["leading"] }
1231
+ };
1232
+ }), oe = /* @__PURE__ */ "account-balanced.address-book.ai.alarm-clock.alert.app.apple.armchair.arrow-down.arrow-left.arrow-right.arrow-up.back.bell.bra.briefcase.cake-piece-full.cake-piece.calendar.cart.catalog.chat.check-bold.check.child.closer.clothing-basic.clothing-blazer.clothing-blouse.clothing-dress.clothing-homewear.clothing.clothing-jacket.clothing-jeans.clothing-jumpsuit.clothing-knitwear.clothing-maternity-wear.clothing-party-wear.clothing-set.clothing-shirt.clothing-shorts.clothing-size.clothing-skirt.clothing-sport.clothing-sweater.clothing-sweatshirt.clothing-trousers.communication.connection.control-panel.cookie.copy.credit-card.crown.culture.curtain-almost-dark.curtain-dark.curtain-opaque.curtain-semi-transparent.curtain-transparent.customer.delivery.denied.desktop.diamond.discount.dots.download.edit.education.email.error.exchange.family.faq.fast-delivery.feedback-negative.feedback-positive.first-aid.fitness.fossil-fuel.free-delivery.friendship.giftbox.global-warming.globe.glossary.handshake.hanger.hashtag.health.heart-eyes-emoji.heart-full.heart.help.hint.home.home2.image-placeholder.info.invoice.light-bulb-heart.light-bulb.lightning.location.locations.lock.lock-open.logged-in.logout.mail.menu.minus.newsletter.not-yet-available.order.order2.out-of-stock.pause.personal-data.phone.pin.pinch-zoom.plane.play.plus.prepaid.print.process.production-site.puzzle.qr-code.quality.question.radio.recently-viewed.recycling.religion.return.review-full.review.rocket.roots.saved-money.scale.search-categories.search-form-arrow.search.sepa.service.share.shopping-bag.signpost.signpost-single.similar-products.size.social.sold-out.sort.spark.store.success.suitcase.sustainable-animal-welfare.sustainable-energy-efficient.sustainable-natural-cosmetics.sustainable-organic-materials.sustainable-production.sustainable-recyclable-design.sustainable-recycling.sustainable-resource.sustainable-social-initiatives.swords.tablet.teacup.thumb-down-full.thumb-down.thumb-up-full.thumb-up.trash-bin.tv.user.visibility.visibility-off.voucher.wallet.water-pollution.water-usage.whatsapp-bell.whatsapp-phone.zoom-in.zoom-out".split("."), $ = {
1233
+ "account-balanced": ["24", "24"],
1234
+ "address-book": ["24", "24"],
1235
+ ai: ["24", "24"],
1236
+ "alarm-clock": ["24", "24"],
1237
+ alert: ["24", "24"],
1238
+ app: ["24", "24"],
1239
+ apple: ["24", "24"],
1240
+ armchair: ["24", "24"],
1241
+ "arrow-down": ["24", "24"],
1242
+ "arrow-left": ["24", "24"],
1243
+ "arrow-right": ["24", "24"],
1244
+ "arrow-up": ["24", "24"],
1245
+ back: ["24", "24"],
1246
+ bell: ["24", "24"],
1247
+ bra: ["24", "24"],
1248
+ briefcase: ["24", "24"],
1249
+ "cake-piece-full": ["24", "24"],
1250
+ "cake-piece": ["24", "24"],
1251
+ calendar: ["24", "24"],
1252
+ cart: ["24", "24"],
1253
+ catalog: ["24", "24"],
1254
+ chat: ["24", "24"],
1255
+ "check-bold": ["24", "24"],
1256
+ check: ["24", "24"],
1257
+ child: ["24", "24"],
1258
+ closer: ["24", "24"],
1259
+ "clothing-basic": ["24", "24"],
1260
+ "clothing-blazer": ["24", "24"],
1261
+ "clothing-blouse": ["24", "24"],
1262
+ "clothing-dress": ["24", "24"],
1263
+ "clothing-homewear": ["24", "24"],
1264
+ clothing: ["24", "24"],
1265
+ "clothing-jacket": ["24", "24"],
1266
+ "clothing-jeans": ["24", "24"],
1267
+ "clothing-jumpsuit": ["24", "24"],
1268
+ "clothing-knitwear": ["24", "24"],
1269
+ "clothing-maternity-wear": ["24", "24"],
1270
+ "clothing-party-wear": ["24", "24"],
1271
+ "clothing-set": ["24", "24"],
1272
+ "clothing-shirt": ["24", "24"],
1273
+ "clothing-shorts": ["24", "24"],
1274
+ "clothing-size": ["24", "24"],
1275
+ "clothing-skirt": ["24", "24"],
1276
+ "clothing-sport": ["24", "24"],
1277
+ "clothing-sweater": ["24", "24"],
1278
+ "clothing-sweatshirt": ["24", "24"],
1279
+ "clothing-trousers": ["24", "24"],
1280
+ communication: ["24", "24"],
1281
+ connection: ["24", "24"],
1282
+ "control-panel": ["24", "24"],
1283
+ cookie: ["24", "24"],
1284
+ copy: ["24", "24"],
1285
+ "credit-card": ["24", "24"],
1286
+ crown: ["24", "24"],
1287
+ culture: ["24", "24"],
1288
+ "curtain-almost-dark": ["24", "24"],
1289
+ "curtain-dark": ["24", "24"],
1290
+ "curtain-opaque": ["24", "24"],
1291
+ "curtain-semi-transparent": ["24", "24"],
1292
+ "curtain-transparent": ["24", "24"],
1293
+ customer: ["24", "24"],
1294
+ delivery: ["24", "24"],
1295
+ denied: ["24", "24"],
1296
+ desktop: ["24", "24"],
1297
+ diamond: ["24", "24"],
1298
+ discount: ["24", "24"],
1299
+ dots: ["24", "24"],
1300
+ download: ["24", "24"],
1301
+ edit: ["24", "24"],
1302
+ education: ["24", "24"],
1303
+ email: ["24", "24"],
1304
+ error: ["24", "24"],
1305
+ exchange: ["24", "24"],
1306
+ family: ["24", "24"],
1307
+ faq: ["24", "24"],
1308
+ "fast-delivery": ["24", "24"],
1309
+ "feedback-negative": ["24", "24"],
1310
+ "feedback-positive": ["24", "24"],
1311
+ "first-aid": ["24", "24"],
1312
+ fitness: ["24", "24"],
1313
+ "fossil-fuel": ["24", "24"],
1314
+ "free-delivery": ["24", "24"],
1315
+ friendship: ["24", "24"],
1316
+ giftbox: ["24", "24"],
1317
+ "global-warming": ["24", "24"],
1318
+ globe: ["24", "24"],
1319
+ glossary: ["24", "24"],
1320
+ handshake: ["24", "24"],
1321
+ hanger: ["24", "24"],
1322
+ hashtag: ["24", "24"],
1323
+ health: ["24", "24"],
1324
+ "heart-eyes-emoji": ["24", "24"],
1325
+ "heart-full": ["24", "24"],
1326
+ heart: ["24", "24"],
1327
+ help: ["24", "24"],
1328
+ hint: ["24", "24"],
1329
+ home: ["24", "24"],
1330
+ home2: ["24", "24"],
1331
+ "image-placeholder": ["24", "24"],
1332
+ info: ["24", "24"],
1333
+ invoice: ["24", "24"],
1334
+ "light-bulb-heart": ["24", "24"],
1335
+ "light-bulb": ["24", "24"],
1336
+ lightning: ["24", "24"],
1337
+ location: ["24", "24"],
1338
+ locations: ["24", "24"],
1339
+ lock: ["24", "24"],
1340
+ "lock-open": ["24", "24"],
1341
+ "logged-in": ["24", "24"],
1342
+ logout: ["24", "24"],
1343
+ mail: ["24", "24"],
1344
+ menu: ["24", "24"],
1345
+ minus: ["24", "24"],
1346
+ newsletter: ["24", "24"],
1347
+ "not-yet-available": ["24", "24"],
1348
+ order: ["24", "24"],
1349
+ order2: ["24", "24"],
1350
+ "out-of-stock": ["24", "24"],
1351
+ pause: ["24", "24"],
1352
+ "personal-data": ["24", "24"],
1353
+ phone: ["24", "24"],
1354
+ pin: ["24", "24"],
1355
+ "pinch-zoom": ["24", "24"],
1356
+ plane: ["24", "24"],
1357
+ play: ["24", "24"],
1358
+ plus: ["24", "24"],
1359
+ prepaid: ["24", "24"],
1360
+ print: ["24", "24"],
1361
+ process: ["24", "24"],
1362
+ "production-site": ["24", "24"],
1363
+ puzzle: ["24", "24"],
1364
+ "qr-code": ["24", "24"],
1365
+ quality: ["24", "24"],
1366
+ question: ["24", "24"],
1367
+ radio: ["24", "24"],
1368
+ "recently-viewed": ["24", "24"],
1369
+ recycling: ["24", "24"],
1370
+ religion: ["24", "24"],
1371
+ return: ["24", "24"],
1372
+ "review-full": ["24", "24"],
1373
+ review: ["24", "24"],
1374
+ rocket: ["24", "24"],
1375
+ roots: ["24", "24"],
1376
+ "saved-money": ["24", "24"],
1377
+ scale: ["24", "24"],
1378
+ "search-categories": ["24", "24"],
1379
+ "search-form-arrow": ["24", "24"],
1380
+ search: ["24", "24"],
1381
+ sepa: ["24", "24"],
1382
+ service: ["24", "24"],
1383
+ share: ["24", "24"],
1384
+ "shopping-bag": ["24", "24"],
1385
+ signpost: ["24", "24"],
1386
+ "signpost-single": ["24", "24"],
1387
+ "similar-products": ["24", "24"],
1388
+ size: ["24", "24"],
1389
+ social: ["24", "24"],
1390
+ "sold-out": ["24", "24"],
1391
+ sort: ["24", "24"],
1392
+ spark: ["24", "24"],
1393
+ store: ["24", "24"],
1394
+ success: ["24", "24"],
1395
+ suitcase: ["24", "24"],
1396
+ "sustainable-animal-welfare": ["24", "24"],
1397
+ "sustainable-energy-efficient": ["24", "24"],
1398
+ "sustainable-natural-cosmetics": ["24", "24"],
1399
+ "sustainable-organic-materials": ["24", "24"],
1400
+ "sustainable-production": ["24", "24"],
1401
+ "sustainable-recyclable-design": ["24", "24"],
1402
+ "sustainable-recycling": ["24", "24"],
1403
+ "sustainable-resource": ["24", "24"],
1404
+ "sustainable-social-initiatives": ["24", "24"],
1405
+ swords: ["24", "24"],
1406
+ tablet: ["24", "24"],
1407
+ teacup: ["24", "24"],
1408
+ "thumb-down-full": ["24", "24"],
1409
+ "thumb-down": ["24", "24"],
1410
+ "thumb-up-full": ["24", "24"],
1411
+ "thumb-up": ["24", "24"],
1412
+ "trash-bin": ["24", "24"],
1413
+ tv: ["24", "24"],
1414
+ user: ["24", "24"],
1415
+ visibility: ["24", "24"],
1416
+ "visibility-off": ["24", "24"],
1417
+ voucher: ["24", "24"],
1418
+ wallet: ["24", "24"],
1419
+ "water-pollution": ["24", "24"],
1420
+ "water-usage": ["24", "24"],
1421
+ "whatsapp-bell": ["24", "24"],
1422
+ "whatsapp-phone": ["24", "24"],
1423
+ "zoom-in": ["24", "24"],
1424
+ "zoom-out": ["24", "24"]
1425
+ }, se = ({ variant: e, className: t }) => {
1426
+ let { iconSprite: r } = c(), i = "fill-clr-primary";
1427
+ e.startsWith("sustainable-") && (i = "fill-clr-sustainable");
1428
+ let a = ae("shrink-0 w-6 h-6", i, t), [o, s] = $[e];
1429
+ return /* @__PURE__ */ n("svg", {
1430
+ className: a,
1431
+ "aria-hidden": "true",
1432
+ focusable: "false",
1433
+ "data-bpds": "icon",
1434
+ "data-bpds-variant": e,
1435
+ style: { aspectRatio: `${o} / ${s}` },
1436
+ children: /* @__PURE__ */ n("use", { href: `${r}#${e}-icon` })
1437
+ });
1438
+ };
1439
+ //#endregion
1440
+ export { se as default, $ as iconAspectRatios, oe as iconNames };
1441
+
1442
+ //# sourceMappingURL=index.js.map