@octavius2929-personal/design-system 0.23.1 → 0.24.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.cjs +935 -883
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +11 -2
- package/dist/index.css.map +1 -1
- package/dist/index.d.cts +25 -6
- package/dist/index.d.ts +25 -6
- package/dist/index.js +794 -743
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -97,10 +97,10 @@ var ContainerForwarded = forwardRef(ContainerImpl);
|
|
|
97
97
|
ContainerForwarded.displayName = "Container";
|
|
98
98
|
var Container = ContainerForwarded;
|
|
99
99
|
|
|
100
|
-
// src/components/
|
|
100
|
+
// src/components/surface/index.tsx
|
|
101
101
|
import { forwardRef as forwardRef2 } from "react";
|
|
102
102
|
|
|
103
|
-
// src/components/
|
|
103
|
+
// src/components/surface/use-styles.ts
|
|
104
104
|
import { useMemo as useMemo5 } from "react";
|
|
105
105
|
|
|
106
106
|
// ../core/dist/index.js
|
|
@@ -115,7 +115,13 @@ var tokens = {
|
|
|
115
115
|
// Roles tipográficos: tamaño/interlineado/peso/tracking listos para typography.css.ts.
|
|
116
116
|
text: {
|
|
117
117
|
eyebrow: { size: "0.694rem", lineHeight: "1.2", weight: "500", letterSpacing: "0.14em" },
|
|
118
|
-
|
|
118
|
+
// Escala fluida: ~43px en 375px (entra en móvil), cotea en 5.6rem (≈90px) desde ~1200px.
|
|
119
|
+
display: {
|
|
120
|
+
size: "clamp(2.75rem, 1.4rem + 5.6vw, 5.6rem)",
|
|
121
|
+
lineHeight: "1.05",
|
|
122
|
+
weight: "600",
|
|
123
|
+
letterSpacing: "-0.01em"
|
|
124
|
+
},
|
|
119
125
|
h1: { size: "2.9rem", lineHeight: "1.05", weight: "600", letterSpacing: "-0.01em" },
|
|
120
126
|
h2: { size: "2.1rem", lineHeight: "1.2", weight: "600", letterSpacing: "0" },
|
|
121
127
|
h3: { size: "1.563rem", lineHeight: "1.2", weight: "500", letterSpacing: "0" },
|
|
@@ -359,7 +365,7 @@ function useThemeStore(options, storage, system) {
|
|
|
359
365
|
}
|
|
360
366
|
|
|
361
367
|
// src/theme/context/theme-context.tsx
|
|
362
|
-
import { createContext as createContext2, useContext as useContext2, useMemo as useMemo4 } from "react";
|
|
368
|
+
import { createContext as createContext2, useContext as useContext2, useEffect as useEffect3, useMemo as useMemo4 } from "react";
|
|
363
369
|
|
|
364
370
|
// src/theme/adapters.ts
|
|
365
371
|
function createWebStorageAdapter(storageKey, persist) {
|
|
@@ -426,7 +432,8 @@ function ThemeProvider({
|
|
|
426
432
|
defaultSchema = "tinta",
|
|
427
433
|
defaultMode = "light",
|
|
428
434
|
storageKey = "ds-theme",
|
|
429
|
-
persist = true
|
|
435
|
+
persist = true,
|
|
436
|
+
paintRoot = false
|
|
430
437
|
}) {
|
|
431
438
|
const storage = useMemo4(
|
|
432
439
|
() => createWebStorageAdapter(storageKey, persist),
|
|
@@ -434,6 +441,15 @@ function ThemeProvider({
|
|
|
434
441
|
);
|
|
435
442
|
const system = useMemo4(() => createWebSystemModeAdapter(), []);
|
|
436
443
|
const store = useThemeStore({ defaultSchema, defaultMode }, storage, system);
|
|
444
|
+
useEffect3(() => {
|
|
445
|
+
if (!paintRoot) return;
|
|
446
|
+
const { style } = document.body;
|
|
447
|
+
const prev = style.backgroundColor;
|
|
448
|
+
style.backgroundColor = store.colorTokens.bg1;
|
|
449
|
+
return () => {
|
|
450
|
+
style.backgroundColor = prev;
|
|
451
|
+
};
|
|
452
|
+
}, [paintRoot, store.colorTokens.bg1]);
|
|
437
453
|
const value = useMemo4(
|
|
438
454
|
() => ({
|
|
439
455
|
schema: store.schema,
|
|
@@ -447,12 +463,46 @@ function ThemeProvider({
|
|
|
447
463
|
}),
|
|
448
464
|
[store]
|
|
449
465
|
);
|
|
450
|
-
return /* @__PURE__ */ jsx3(ThemeContext.Provider, { value, children });
|
|
466
|
+
return /* @__PURE__ */ jsx3(ThemeContext.Provider, { value, children: paintRoot ? /* @__PURE__ */ jsx3(Surface, { fill: true, children }) : children });
|
|
451
467
|
}
|
|
452
468
|
function useTheme() {
|
|
453
469
|
return useContext2(ThemeContext) ?? DEFAULT_VALUE;
|
|
454
470
|
}
|
|
455
471
|
|
|
472
|
+
// src/components/surface/use-styles.css.ts
|
|
473
|
+
var fill = "use-styles_fill__6vwa9y1";
|
|
474
|
+
var surface = "use-styles_surface__6vwa9y0";
|
|
475
|
+
|
|
476
|
+
// src/components/surface/use-styles.ts
|
|
477
|
+
function useStyles2({ fill: fill2 }) {
|
|
478
|
+
const { themeClass } = useTheme();
|
|
479
|
+
const className = useMemo5(
|
|
480
|
+
() => [themeClass, surface, fill2 && fill].filter(Boolean).join(" "),
|
|
481
|
+
[themeClass, fill2]
|
|
482
|
+
);
|
|
483
|
+
return { surface: className };
|
|
484
|
+
}
|
|
485
|
+
|
|
486
|
+
// src/components/surface/index.tsx
|
|
487
|
+
import { jsx as jsx4 } from "react/jsx-runtime";
|
|
488
|
+
function SurfaceInner({ as, fill: fill2, testId, ...rest }, ref) {
|
|
489
|
+
const Component = as ?? "div";
|
|
490
|
+
const { surface: surface3 } = useStyles2({ fill: fill2 });
|
|
491
|
+
const { testId: dataTestId } = useTestId("surface", testId);
|
|
492
|
+
return /* @__PURE__ */ jsx4(Component, { ref, "data-testid": dataTestId, ...rest, className: surface3 });
|
|
493
|
+
}
|
|
494
|
+
var SurfaceForwarded = forwardRef2(
|
|
495
|
+
SurfaceInner
|
|
496
|
+
);
|
|
497
|
+
SurfaceForwarded.displayName = "Surface";
|
|
498
|
+
var Surface = SurfaceForwarded;
|
|
499
|
+
|
|
500
|
+
// src/components/typography/index.tsx
|
|
501
|
+
import { forwardRef as forwardRef3 } from "react";
|
|
502
|
+
|
|
503
|
+
// src/components/typography/use-styles.ts
|
|
504
|
+
import { useMemo as useMemo6 } from "react";
|
|
505
|
+
|
|
456
506
|
// src/theme/typography.css.ts
|
|
457
507
|
var text = { eyebrow: "typography_text_eyebrow__1wmlzy0", display: "typography_text_display__1wmlzy1", h1: "typography_text_h1__1wmlzy2", h2: "typography_text_h2__1wmlzy3", h3: "typography_text_h3__1wmlzy4", h4: "typography_text_h4__1wmlzy5", body: "typography_text_body__1wmlzy6", lead: "typography_text_lead__1wmlzy7", small: "typography_text_small__1wmlzy8", caption: "typography_text_caption__1wmlzy9", code: "typography_text_code__1wmlzya", blackletter: "typography_text_blackletter__1wmlzyb" };
|
|
458
508
|
|
|
@@ -462,13 +512,13 @@ var base = "use-styles_base__d74jf60";
|
|
|
462
512
|
var color = { fg1: "use-styles_color_fg1__d74jf61", fg2: "use-styles_color_fg2__d74jf62", fg3: "use-styles_color_fg3__d74jf63", accent: "use-styles_color_accent__d74jf64", danger: "use-styles_color_danger__d74jf65", ok: "use-styles_color_ok__d74jf66", warn: "use-styles_color_warn__d74jf67", info: "use-styles_color_info__d74jf68" };
|
|
463
513
|
|
|
464
514
|
// src/components/typography/use-styles.ts
|
|
465
|
-
function
|
|
515
|
+
function useStyles3({
|
|
466
516
|
variant: variant2,
|
|
467
517
|
color: color2,
|
|
468
518
|
align: align2
|
|
469
519
|
}) {
|
|
470
520
|
const { themeClass } = useTheme();
|
|
471
|
-
const className =
|
|
521
|
+
const className = useMemo6(
|
|
472
522
|
() => [
|
|
473
523
|
themeClass,
|
|
474
524
|
base,
|
|
@@ -482,7 +532,7 @@ function useStyles2({
|
|
|
482
532
|
}
|
|
483
533
|
|
|
484
534
|
// src/components/typography/index.tsx
|
|
485
|
-
import { jsx as
|
|
535
|
+
import { jsx as jsx5 } from "react/jsx-runtime";
|
|
486
536
|
var defaultElement = {
|
|
487
537
|
display: "h1",
|
|
488
538
|
h1: "h1",
|
|
@@ -499,18 +549,18 @@ var defaultElement = {
|
|
|
499
549
|
};
|
|
500
550
|
function TypographyInner({ variant: variant2, as, color: color2, align: align2, testId, ...rest }, ref) {
|
|
501
551
|
const Component = as ?? defaultElement[variant2];
|
|
502
|
-
const { text: text2 } =
|
|
552
|
+
const { text: text2 } = useStyles3({ variant: variant2, color: color2, align: align2 });
|
|
503
553
|
const { testId: dataTestId } = useTestId("text", testId);
|
|
504
|
-
return /* @__PURE__ */
|
|
554
|
+
return /* @__PURE__ */ jsx5(Component, { ref, "data-testid": dataTestId, ...rest, className: text2 });
|
|
505
555
|
}
|
|
506
|
-
var TypographyForwarded =
|
|
556
|
+
var TypographyForwarded = forwardRef3(
|
|
507
557
|
TypographyInner
|
|
508
558
|
);
|
|
509
559
|
TypographyForwarded.displayName = "Typography";
|
|
510
560
|
var Typography = TypographyForwarded;
|
|
511
561
|
|
|
512
562
|
// src/components/button/index.tsx
|
|
513
|
-
import { forwardRef as
|
|
563
|
+
import { forwardRef as forwardRef4 } from "react";
|
|
514
564
|
|
|
515
565
|
// src/testing/states.ts
|
|
516
566
|
function states(map) {
|
|
@@ -519,7 +569,7 @@ function states(map) {
|
|
|
519
569
|
}
|
|
520
570
|
|
|
521
571
|
// src/components/button/use-styles.ts
|
|
522
|
-
import { useMemo as
|
|
572
|
+
import { useMemo as useMemo7 } from "react";
|
|
523
573
|
|
|
524
574
|
// src/components/button/use-styles.css.ts
|
|
525
575
|
var full = "use-styles_full__1pbtill4";
|
|
@@ -532,7 +582,7 @@ function toneKey(variant2, tone4) {
|
|
|
532
582
|
const Tone = `${tone4.charAt(0).toUpperCase()}${tone4.slice(1)}`;
|
|
533
583
|
return `${variant2}${Tone}`;
|
|
534
584
|
}
|
|
535
|
-
function
|
|
585
|
+
function useStyles4({
|
|
536
586
|
variant: variant2 = "filled",
|
|
537
587
|
tone: tone4 = "ink",
|
|
538
588
|
size: size3 = "md",
|
|
@@ -540,7 +590,7 @@ function useStyles3({
|
|
|
540
590
|
className
|
|
541
591
|
}) {
|
|
542
592
|
const { themeClass } = useTheme();
|
|
543
|
-
const container =
|
|
593
|
+
const container = useMemo7(
|
|
544
594
|
() => [
|
|
545
595
|
themeClass,
|
|
546
596
|
root,
|
|
@@ -555,9 +605,9 @@ function useStyles3({
|
|
|
555
605
|
}
|
|
556
606
|
|
|
557
607
|
// src/components/button/index.tsx
|
|
558
|
-
import { jsx as
|
|
608
|
+
import { jsx as jsx6, jsxs } from "react/jsx-runtime";
|
|
559
609
|
var ICON_SIZE = { sm: 14, md: 16, lg: 18 };
|
|
560
|
-
var Button =
|
|
610
|
+
var Button = forwardRef4(function Button2({
|
|
561
611
|
variant: variant2,
|
|
562
612
|
tone: tone4,
|
|
563
613
|
size: size3 = "md",
|
|
@@ -570,7 +620,7 @@ var Button = forwardRef3(function Button2({
|
|
|
570
620
|
children,
|
|
571
621
|
...rest
|
|
572
622
|
}, ref) {
|
|
573
|
-
const { container } =
|
|
623
|
+
const { container } = useStyles4({ variant: variant2, tone: tone4, size: size3, full: full2, className });
|
|
574
624
|
const { testId: dataTestId } = useTestId("button", testId);
|
|
575
625
|
const iconSize = ICON_SIZE[size3];
|
|
576
626
|
return /* @__PURE__ */ jsxs(
|
|
@@ -583,19 +633,19 @@ var Button = forwardRef3(function Button2({
|
|
|
583
633
|
"data-state": states({ disabled: rest.disabled }),
|
|
584
634
|
...rest,
|
|
585
635
|
children: [
|
|
586
|
-
StartIcon && /* @__PURE__ */
|
|
636
|
+
StartIcon && /* @__PURE__ */ jsx6(StartIcon, { size: iconSize }),
|
|
587
637
|
children,
|
|
588
|
-
EndIcon && /* @__PURE__ */
|
|
638
|
+
EndIcon && /* @__PURE__ */ jsx6(EndIcon, { size: iconSize })
|
|
589
639
|
]
|
|
590
640
|
}
|
|
591
641
|
);
|
|
592
642
|
});
|
|
593
643
|
|
|
594
644
|
// src/components/divider/index.tsx
|
|
595
|
-
import { forwardRef as
|
|
645
|
+
import { forwardRef as forwardRef5 } from "react";
|
|
596
646
|
|
|
597
647
|
// src/components/divider/use-styles.ts
|
|
598
|
-
import { useMemo as
|
|
648
|
+
import { useMemo as useMemo8 } from "react";
|
|
599
649
|
|
|
600
650
|
// src/components/divider/use-styles.css.ts
|
|
601
651
|
var horizontal = "use-styles_horizontal__1n7v7yj1";
|
|
@@ -606,9 +656,9 @@ var root2 = "use-styles_root__1n7v7yj0";
|
|
|
606
656
|
var vertical = "use-styles_vertical__1n7v7yj2";
|
|
607
657
|
|
|
608
658
|
// src/components/divider/use-styles.ts
|
|
609
|
-
function
|
|
659
|
+
function useStyles5({ vertical: vertical2, hasLabel }) {
|
|
610
660
|
const { themeClass } = useTheme();
|
|
611
|
-
const root24 =
|
|
661
|
+
const root24 = useMemo8(
|
|
612
662
|
() => [
|
|
613
663
|
themeClass,
|
|
614
664
|
root2,
|
|
@@ -620,26 +670,26 @@ function useStyles4({ vertical: vertical2, hasLabel }) {
|
|
|
620
670
|
}
|
|
621
671
|
|
|
622
672
|
// src/components/divider/index.tsx
|
|
623
|
-
import { jsx as
|
|
624
|
-
var Divider =
|
|
673
|
+
import { jsx as jsx7, jsxs as jsxs2 } from "react/jsx-runtime";
|
|
674
|
+
var Divider = forwardRef5(function Divider2({ vertical: vertical2, label: label7, testId, ...rest }, ref) {
|
|
625
675
|
const hasLabel = label7 != null;
|
|
626
|
-
const { root: root24, line: line2, label: labelClass } =
|
|
676
|
+
const { root: root24, line: line2, label: labelClass } = useStyles5({ vertical: vertical2, hasLabel });
|
|
627
677
|
const { testId: dataTestId, slot } = useTestId("layout", testId);
|
|
628
678
|
if (hasLabel) {
|
|
629
679
|
return /* @__PURE__ */ jsxs2("div", { ref, role: "separator", className: root24, "data-testid": dataTestId, ...rest, children: [
|
|
630
|
-
/* @__PURE__ */
|
|
631
|
-
/* @__PURE__ */
|
|
632
|
-
/* @__PURE__ */
|
|
680
|
+
/* @__PURE__ */ jsx7("span", { className: line2 }),
|
|
681
|
+
/* @__PURE__ */ jsx7("span", { className: labelClass, "data-testid": slot("label"), children: label7 }),
|
|
682
|
+
/* @__PURE__ */ jsx7("span", { className: line2 })
|
|
633
683
|
] });
|
|
634
684
|
}
|
|
635
|
-
return /* @__PURE__ */
|
|
685
|
+
return /* @__PURE__ */ jsx7("div", { ref, role: "separator", className: root24, "data-testid": dataTestId, ...rest });
|
|
636
686
|
});
|
|
637
687
|
|
|
638
688
|
// src/components/avatar/index.tsx
|
|
639
|
-
import { forwardRef as
|
|
689
|
+
import { forwardRef as forwardRef6 } from "react";
|
|
640
690
|
|
|
641
691
|
// src/components/avatar/use-styles.ts
|
|
642
|
-
import { useMemo as
|
|
692
|
+
import { useMemo as useMemo9 } from "react";
|
|
643
693
|
|
|
644
694
|
// src/components/avatar/use-styles.css.ts
|
|
645
695
|
var root3 = "use-styles_root__1mn1rmu0";
|
|
@@ -647,13 +697,13 @@ var size2 = { sm: "use-styles_size_sm__1mn1rmu1", md: "use-styles_size_md__1mn1r
|
|
|
647
697
|
var variant = { "default": "use-styles_variant_default__1mn1rmu4", filled: "use-styles_variant_filled__1mn1rmu5" };
|
|
648
698
|
|
|
649
699
|
// src/components/avatar/use-styles.ts
|
|
650
|
-
function
|
|
700
|
+
function useStyles6({
|
|
651
701
|
size: size3 = "md",
|
|
652
702
|
filled,
|
|
653
703
|
className
|
|
654
704
|
}) {
|
|
655
705
|
const { themeClass } = useTheme();
|
|
656
|
-
const root24 =
|
|
706
|
+
const root24 = useMemo9(
|
|
657
707
|
() => [
|
|
658
708
|
themeClass,
|
|
659
709
|
root3,
|
|
@@ -667,18 +717,18 @@ function useStyles5({
|
|
|
667
717
|
}
|
|
668
718
|
|
|
669
719
|
// src/components/avatar/index.tsx
|
|
670
|
-
import { jsx as
|
|
671
|
-
var Avatar =
|
|
672
|
-
const { root: root24 } =
|
|
720
|
+
import { jsx as jsx8 } from "react/jsx-runtime";
|
|
721
|
+
var Avatar = forwardRef6(function Avatar2({ size: size3, filled, className, children, testId, ...rest }, ref) {
|
|
722
|
+
const { root: root24 } = useStyles6({ size: size3, filled, className });
|
|
673
723
|
const { testId: dataTestId } = useTestId("media", testId);
|
|
674
|
-
return /* @__PURE__ */
|
|
724
|
+
return /* @__PURE__ */ jsx8("span", { ref, className: root24, "data-testid": dataTestId, ...rest, children });
|
|
675
725
|
});
|
|
676
726
|
|
|
677
727
|
// src/components/badge/index.tsx
|
|
678
|
-
import { forwardRef as
|
|
728
|
+
import { forwardRef as forwardRef7 } from "react";
|
|
679
729
|
|
|
680
730
|
// src/components/badge/use-styles.ts
|
|
681
|
-
import { useMemo as
|
|
731
|
+
import { useMemo as useMemo10 } from "react";
|
|
682
732
|
|
|
683
733
|
// src/components/badge/use-styles.css.ts
|
|
684
734
|
var dot = "use-styles_dot__1wpei6p1";
|
|
@@ -686,35 +736,35 @@ var root4 = "use-styles_root__1wpei6p0";
|
|
|
686
736
|
var tone2 = { ink: "use-styles_tone_ink__1wpei6p2", accent: "use-styles_tone_accent__1wpei6p3" };
|
|
687
737
|
|
|
688
738
|
// src/components/badge/use-styles.ts
|
|
689
|
-
function
|
|
739
|
+
function useStyles7({
|
|
690
740
|
tone: tone4 = "ink",
|
|
691
741
|
className
|
|
692
742
|
}) {
|
|
693
743
|
const { themeClass } = useTheme();
|
|
694
|
-
const root24 =
|
|
744
|
+
const root24 = useMemo10(
|
|
695
745
|
() => [themeClass, root4, className].filter(Boolean).join(" "),
|
|
696
746
|
[themeClass, className]
|
|
697
747
|
);
|
|
698
|
-
const dot3 =
|
|
748
|
+
const dot3 = useMemo10(() => [dot, tone2[tone4]].join(" "), [tone4]);
|
|
699
749
|
return { root: root24, dot: dot3 };
|
|
700
750
|
}
|
|
701
751
|
|
|
702
752
|
// src/components/badge/index.tsx
|
|
703
|
-
import { jsx as
|
|
704
|
-
var Badge =
|
|
705
|
-
const { root: root24, dot: dot3 } =
|
|
753
|
+
import { jsx as jsx9, jsxs as jsxs3 } from "react/jsx-runtime";
|
|
754
|
+
var Badge = forwardRef7(function Badge2({ count, tone: tone4, className, children, testId, ...rest }, ref) {
|
|
755
|
+
const { root: root24, dot: dot3 } = useStyles7({ tone: tone4, className });
|
|
706
756
|
const { testId: dataTestId, slot } = useTestId("media", testId);
|
|
707
757
|
return /* @__PURE__ */ jsxs3("span", { ref, className: root24, "data-testid": dataTestId, ...rest, children: [
|
|
708
758
|
children,
|
|
709
|
-
count != null && /* @__PURE__ */
|
|
759
|
+
count != null && /* @__PURE__ */ jsx9("span", { className: dot3, "data-testid": slot("dot"), children: count })
|
|
710
760
|
] });
|
|
711
761
|
});
|
|
712
762
|
|
|
713
763
|
// src/components/progress/index.tsx
|
|
714
|
-
import { forwardRef as
|
|
764
|
+
import { forwardRef as forwardRef8 } from "react";
|
|
715
765
|
|
|
716
766
|
// src/components/progress/use-styles.ts
|
|
717
|
-
import { useMemo as
|
|
767
|
+
import { useMemo as useMemo11 } from "react";
|
|
718
768
|
|
|
719
769
|
// src/components/progress/use-styles.css.ts
|
|
720
770
|
var bar = "use-styles_bar__kbop7v3";
|
|
@@ -723,14 +773,14 @@ var spinner = "use-styles_spinner__kbop7v5";
|
|
|
723
773
|
var track = "use-styles_track__kbop7v2";
|
|
724
774
|
|
|
725
775
|
// src/components/progress/use-styles.ts
|
|
726
|
-
function
|
|
776
|
+
function useStyles8({
|
|
727
777
|
variant: variant2 = "linear",
|
|
728
778
|
value,
|
|
729
779
|
className
|
|
730
780
|
}) {
|
|
731
781
|
const { themeClass } = useTheme();
|
|
732
782
|
const indeterminate2 = value === void 0;
|
|
733
|
-
return
|
|
783
|
+
return useMemo11(() => {
|
|
734
784
|
const root24 = (...classes) => [themeClass, ...classes, className].filter(Boolean).join(" ");
|
|
735
785
|
if (variant2 === "circular") {
|
|
736
786
|
return { track: "", bar: "", spinner: root24(spinner) };
|
|
@@ -744,13 +794,13 @@ function useStyles7({
|
|
|
744
794
|
}
|
|
745
795
|
|
|
746
796
|
// src/components/progress/index.tsx
|
|
747
|
-
import { jsx as
|
|
748
|
-
var Progress =
|
|
749
|
-
const { track: track4, bar: bar2, spinner: spinner2 } =
|
|
797
|
+
import { jsx as jsx10 } from "react/jsx-runtime";
|
|
798
|
+
var Progress = forwardRef8(function Progress2({ variant: variant2 = "linear", value, size: size3 = 20, className, testId, ...rest }, ref) {
|
|
799
|
+
const { track: track4, bar: bar2, spinner: spinner2 } = useStyles8({ variant: variant2, value, className });
|
|
750
800
|
const indeterminate2 = value === void 0;
|
|
751
801
|
const { testId: dataTestId, slot } = useTestId("media", testId);
|
|
752
802
|
if (variant2 === "circular") {
|
|
753
|
-
return /* @__PURE__ */
|
|
803
|
+
return /* @__PURE__ */ jsx10(
|
|
754
804
|
"span",
|
|
755
805
|
{
|
|
756
806
|
ref,
|
|
@@ -766,7 +816,7 @@ var Progress = forwardRef7(function Progress2({ variant: variant2 = "linear", va
|
|
|
766
816
|
}
|
|
767
817
|
);
|
|
768
818
|
}
|
|
769
|
-
return /* @__PURE__ */
|
|
819
|
+
return /* @__PURE__ */ jsx10(
|
|
770
820
|
"div",
|
|
771
821
|
{
|
|
772
822
|
ref,
|
|
@@ -778,7 +828,7 @@ var Progress = forwardRef7(function Progress2({ variant: variant2 = "linear", va
|
|
|
778
828
|
"data-testid": dataTestId,
|
|
779
829
|
"data-state": states({ indeterminate: indeterminate2 }),
|
|
780
830
|
...rest,
|
|
781
|
-
children: /* @__PURE__ */
|
|
831
|
+
children: /* @__PURE__ */ jsx10(
|
|
782
832
|
"div",
|
|
783
833
|
{
|
|
784
834
|
className: bar2,
|
|
@@ -791,10 +841,10 @@ var Progress = forwardRef7(function Progress2({ variant: variant2 = "linear", va
|
|
|
791
841
|
});
|
|
792
842
|
|
|
793
843
|
// src/components/chip/index.tsx
|
|
794
|
-
import { forwardRef as
|
|
844
|
+
import { forwardRef as forwardRef9 } from "react";
|
|
795
845
|
|
|
796
846
|
// src/components/icons/x/index.tsx
|
|
797
|
-
import { jsx as
|
|
847
|
+
import { jsx as jsx11, jsxs as jsxs4 } from "react/jsx-runtime";
|
|
798
848
|
function XIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
799
849
|
return /* @__PURE__ */ jsxs4(
|
|
800
850
|
"svg",
|
|
@@ -811,15 +861,15 @@ function XIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
811
861
|
"aria-hidden": "true",
|
|
812
862
|
...rest,
|
|
813
863
|
children: [
|
|
814
|
-
/* @__PURE__ */
|
|
815
|
-
/* @__PURE__ */
|
|
864
|
+
/* @__PURE__ */ jsx11("path", { d: "M18 6 6 18" }),
|
|
865
|
+
/* @__PURE__ */ jsx11("path", { d: "m6 6 12 12" })
|
|
816
866
|
]
|
|
817
867
|
}
|
|
818
868
|
);
|
|
819
869
|
}
|
|
820
870
|
|
|
821
871
|
// src/components/chip/use-styles.ts
|
|
822
|
-
import { useMemo as
|
|
872
|
+
import { useMemo as useMemo12 } from "react";
|
|
823
873
|
|
|
824
874
|
// src/components/chip/use-styles.css.ts
|
|
825
875
|
var clickable = "use-styles_clickable__1axilf44";
|
|
@@ -829,13 +879,13 @@ var selected = "use-styles_selected__1axilf43";
|
|
|
829
879
|
var tone3 = { ink: "use-styles_tone_ink__1axilf41", accent: "use-styles_tone_accent__1axilf42" };
|
|
830
880
|
|
|
831
881
|
// src/components/chip/use-styles.ts
|
|
832
|
-
function
|
|
882
|
+
function useStyles9({
|
|
833
883
|
selected: selected3,
|
|
834
884
|
tone: tone4 = "ink",
|
|
835
885
|
clickable: clickable2
|
|
836
886
|
}) {
|
|
837
887
|
const { themeClass } = useTheme();
|
|
838
|
-
const root24 =
|
|
888
|
+
const root24 = useMemo12(
|
|
839
889
|
() => [
|
|
840
890
|
themeClass,
|
|
841
891
|
root5,
|
|
@@ -848,11 +898,11 @@ function useStyles8({
|
|
|
848
898
|
}
|
|
849
899
|
|
|
850
900
|
// src/components/chip/index.tsx
|
|
851
|
-
import { jsx as
|
|
901
|
+
import { jsx as jsx12, jsxs as jsxs5 } from "react/jsx-runtime";
|
|
852
902
|
var ICON_SIZE2 = 13;
|
|
853
|
-
var Chip =
|
|
903
|
+
var Chip = forwardRef9(function Chip2({ selected: selected3, tone: tone4, onDelete, onClick, startIcon: StartIcon, children, testId, ...rest }, ref) {
|
|
854
904
|
const clickable2 = Boolean(onClick);
|
|
855
|
-
const { root: root24, deleteBtn: deleteBtn2 } =
|
|
905
|
+
const { root: root24, deleteBtn: deleteBtn2 } = useStyles9({ selected: selected3, tone: tone4, clickable: clickable2 });
|
|
856
906
|
const { testId: dataTestId, slot } = useTestId("media", testId);
|
|
857
907
|
const handleDelete = (event) => {
|
|
858
908
|
event.stopPropagation();
|
|
@@ -868,9 +918,9 @@ var Chip = forwardRef8(function Chip2({ selected: selected3, tone: tone4, onDele
|
|
|
868
918
|
"data-state": states({ selected: selected3 }),
|
|
869
919
|
...rest,
|
|
870
920
|
children: [
|
|
871
|
-
StartIcon ? /* @__PURE__ */
|
|
921
|
+
StartIcon ? /* @__PURE__ */ jsx12(StartIcon, { size: ICON_SIZE2 }) : null,
|
|
872
922
|
children,
|
|
873
|
-
onDelete && /* @__PURE__ */
|
|
923
|
+
onDelete && /* @__PURE__ */ jsx12(
|
|
874
924
|
"button",
|
|
875
925
|
{
|
|
876
926
|
type: "button",
|
|
@@ -878,7 +928,7 @@ var Chip = forwardRef8(function Chip2({ selected: selected3, tone: tone4, onDele
|
|
|
878
928
|
"aria-label": "Remove",
|
|
879
929
|
onClick: handleDelete,
|
|
880
930
|
"data-testid": slot("delete"),
|
|
881
|
-
children: /* @__PURE__ */
|
|
931
|
+
children: /* @__PURE__ */ jsx12(XIcon, { size: ICON_SIZE2 })
|
|
882
932
|
}
|
|
883
933
|
)
|
|
884
934
|
]
|
|
@@ -887,12 +937,12 @@ var Chip = forwardRef8(function Chip2({ selected: selected3, tone: tone4, onDele
|
|
|
887
937
|
});
|
|
888
938
|
|
|
889
939
|
// src/components/checkbox/index.tsx
|
|
890
|
-
import { forwardRef as
|
|
940
|
+
import { forwardRef as forwardRef10 } from "react";
|
|
891
941
|
|
|
892
942
|
// src/components/icons/check/index.tsx
|
|
893
|
-
import { jsx as
|
|
943
|
+
import { jsx as jsx13 } from "react/jsx-runtime";
|
|
894
944
|
function CheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
895
|
-
return /* @__PURE__ */
|
|
945
|
+
return /* @__PURE__ */ jsx13(
|
|
896
946
|
"svg",
|
|
897
947
|
{
|
|
898
948
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -906,13 +956,13 @@ function CheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
906
956
|
strokeLinejoin: "round",
|
|
907
957
|
"aria-hidden": "true",
|
|
908
958
|
...rest,
|
|
909
|
-
children: /* @__PURE__ */
|
|
959
|
+
children: /* @__PURE__ */ jsx13("path", { d: "M20 6 9 17l-5-5" })
|
|
910
960
|
}
|
|
911
961
|
);
|
|
912
962
|
}
|
|
913
963
|
|
|
914
964
|
// src/components/checkbox/use-styles.ts
|
|
915
|
-
import { useMemo as
|
|
965
|
+
import { useMemo as useMemo13 } from "react";
|
|
916
966
|
|
|
917
967
|
// src/components/checkbox/use-styles.css.ts
|
|
918
968
|
var box = "use-styles_box__9zoga91";
|
|
@@ -923,13 +973,13 @@ var input = "surfaces_srOnly__1qa7atn0";
|
|
|
923
973
|
var root6 = "use-styles_root__9zoga90";
|
|
924
974
|
|
|
925
975
|
// src/components/checkbox/use-styles.ts
|
|
926
|
-
function
|
|
976
|
+
function useStyles10({ checked, disabled: disabled3 }) {
|
|
927
977
|
const { themeClass } = useTheme();
|
|
928
|
-
const root24 =
|
|
978
|
+
const root24 = useMemo13(
|
|
929
979
|
() => [themeClass, root6, disabled3 && disabled].filter(Boolean).join(" "),
|
|
930
980
|
[themeClass, disabled3]
|
|
931
981
|
);
|
|
932
|
-
const box2 =
|
|
982
|
+
const box2 = useMemo13(
|
|
933
983
|
() => [box, checked && boxChecked].filter(Boolean).join(" "),
|
|
934
984
|
[checked]
|
|
935
985
|
);
|
|
@@ -937,16 +987,16 @@ function useStyles9({ checked, disabled: disabled3 }) {
|
|
|
937
987
|
}
|
|
938
988
|
|
|
939
989
|
// src/components/checkbox/index.tsx
|
|
940
|
-
import { jsx as
|
|
941
|
-
var Checkbox =
|
|
942
|
-
const { root: root24, input: input6, box: box2, check: check2 } =
|
|
990
|
+
import { jsx as jsx14, jsxs as jsxs6 } from "react/jsx-runtime";
|
|
991
|
+
var Checkbox = forwardRef10(function Checkbox2({ checked = false, onChange, label: label7, disabled: disabled3 = false, id, testId, ...rest }, ref) {
|
|
992
|
+
const { root: root24, input: input6, box: box2, check: check2 } = useStyles10({ checked, disabled: disabled3 });
|
|
943
993
|
const { testId: dataTestId } = useTestId("toggle", testId);
|
|
944
994
|
const handleChange = (e) => {
|
|
945
995
|
if (disabled3) return;
|
|
946
996
|
onChange?.(e.target.checked);
|
|
947
997
|
};
|
|
948
998
|
return /* @__PURE__ */ jsxs6("label", { className: root24, "data-testid": dataTestId, "data-state": states({ checked, disabled: disabled3 }), children: [
|
|
949
|
-
/* @__PURE__ */
|
|
999
|
+
/* @__PURE__ */ jsx14(
|
|
950
1000
|
"input",
|
|
951
1001
|
{
|
|
952
1002
|
ref,
|
|
@@ -959,16 +1009,16 @@ var Checkbox = forwardRef9(function Checkbox2({ checked = false, onChange, label
|
|
|
959
1009
|
...rest
|
|
960
1010
|
}
|
|
961
1011
|
),
|
|
962
|
-
/* @__PURE__ */
|
|
1012
|
+
/* @__PURE__ */ jsx14("span", { className: box2, children: checked && /* @__PURE__ */ jsx14(CheckIcon, { size: 12, className: check2 }) }),
|
|
963
1013
|
label7
|
|
964
1014
|
] });
|
|
965
1015
|
});
|
|
966
1016
|
|
|
967
1017
|
// src/components/radio/index.tsx
|
|
968
|
-
import { forwardRef as
|
|
1018
|
+
import { forwardRef as forwardRef11 } from "react";
|
|
969
1019
|
|
|
970
1020
|
// src/components/radio/use-styles.ts
|
|
971
|
-
import { useMemo as
|
|
1021
|
+
import { useMemo as useMemo14 } from "react";
|
|
972
1022
|
|
|
973
1023
|
// src/components/radio/use-styles.css.ts
|
|
974
1024
|
var circle = "use-styles_circle__vy61b42";
|
|
@@ -979,12 +1029,12 @@ var label2 = "use-styles_label__vy61b44";
|
|
|
979
1029
|
var root7 = "use-styles_root__vy61b40";
|
|
980
1030
|
|
|
981
1031
|
// src/components/radio/use-styles.ts
|
|
982
|
-
function
|
|
1032
|
+
function useStyles11({
|
|
983
1033
|
disabled: disabled3,
|
|
984
1034
|
className
|
|
985
1035
|
}) {
|
|
986
1036
|
const { themeClass } = useTheme();
|
|
987
|
-
const root24 =
|
|
1037
|
+
const root24 = useMemo14(
|
|
988
1038
|
() => [themeClass, root7, disabled3 && disabled2, className].filter(Boolean).join(" "),
|
|
989
1039
|
[themeClass, disabled3, className]
|
|
990
1040
|
);
|
|
@@ -998,12 +1048,12 @@ function useStyles10({
|
|
|
998
1048
|
}
|
|
999
1049
|
|
|
1000
1050
|
// src/components/radio/index.tsx
|
|
1001
|
-
import { jsx as
|
|
1002
|
-
var Radio =
|
|
1003
|
-
const { root: root24, input: input6, circle: circle2, dot: dot3, label: labelClass } =
|
|
1051
|
+
import { jsx as jsx15, jsxs as jsxs7 } from "react/jsx-runtime";
|
|
1052
|
+
var Radio = forwardRef11(function Radio2({ checked, onChange, label: label7, name, value, disabled: disabled3, testId, ...rest }, ref) {
|
|
1053
|
+
const { root: root24, input: input6, circle: circle2, dot: dot3, label: labelClass } = useStyles11({ disabled: disabled3 });
|
|
1004
1054
|
const { testId: dataTestId } = useTestId("toggle", testId);
|
|
1005
1055
|
return /* @__PURE__ */ jsxs7("label", { className: root24, "data-testid": dataTestId, "data-state": states({ checked, disabled: disabled3 }), children: [
|
|
1006
|
-
/* @__PURE__ */
|
|
1056
|
+
/* @__PURE__ */ jsx15(
|
|
1007
1057
|
"input",
|
|
1008
1058
|
{
|
|
1009
1059
|
ref,
|
|
@@ -1017,16 +1067,16 @@ var Radio = forwardRef10(function Radio2({ checked, onChange, label: label7, nam
|
|
|
1017
1067
|
...rest
|
|
1018
1068
|
}
|
|
1019
1069
|
),
|
|
1020
|
-
/* @__PURE__ */
|
|
1021
|
-
label7 != null && /* @__PURE__ */
|
|
1070
|
+
/* @__PURE__ */ jsx15("span", { className: circle2, children: checked && /* @__PURE__ */ jsx15("span", { className: dot3 }) }),
|
|
1071
|
+
label7 != null && /* @__PURE__ */ jsx15("span", { className: labelClass, children: label7 })
|
|
1022
1072
|
] });
|
|
1023
1073
|
});
|
|
1024
1074
|
|
|
1025
1075
|
// src/components/switch/index.tsx
|
|
1026
|
-
import { forwardRef as
|
|
1076
|
+
import { forwardRef as forwardRef12 } from "react";
|
|
1027
1077
|
|
|
1028
1078
|
// src/components/switch/use-styles.ts
|
|
1029
|
-
import { useMemo as
|
|
1079
|
+
import { useMemo as useMemo15 } from "react";
|
|
1030
1080
|
|
|
1031
1081
|
// src/components/switch/use-styles.css.ts
|
|
1032
1082
|
var input3 = "surfaces_srOnly__1qa7atn0";
|
|
@@ -1038,9 +1088,9 @@ var track2 = "use-styles_track__1r6kem71";
|
|
|
1038
1088
|
var trackChecked = "use-styles_trackChecked__1r6kem72";
|
|
1039
1089
|
|
|
1040
1090
|
// src/components/switch/use-styles.ts
|
|
1041
|
-
function
|
|
1091
|
+
function useStyles12({ checked }) {
|
|
1042
1092
|
const { themeClass } = useTheme();
|
|
1043
|
-
return
|
|
1093
|
+
return useMemo15(
|
|
1044
1094
|
() => ({
|
|
1045
1095
|
root: [themeClass, root8].filter(Boolean).join(" "),
|
|
1046
1096
|
input: input3,
|
|
@@ -1053,12 +1103,12 @@ function useStyles11({ checked }) {
|
|
|
1053
1103
|
}
|
|
1054
1104
|
|
|
1055
1105
|
// src/components/switch/index.tsx
|
|
1056
|
-
import { jsx as
|
|
1057
|
-
var Switch =
|
|
1058
|
-
const { root: root24, input: input6, track: track4, knob: knob2, label: labelClass } =
|
|
1106
|
+
import { jsx as jsx16, jsxs as jsxs8 } from "react/jsx-runtime";
|
|
1107
|
+
var Switch = forwardRef12(function Switch2({ checked = false, onChange, label: label7, disabled: disabled3, testId, ...rest }, ref) {
|
|
1108
|
+
const { root: root24, input: input6, track: track4, knob: knob2, label: labelClass } = useStyles12({ checked });
|
|
1059
1109
|
const { testId: dataTestId } = useTestId("toggle", testId);
|
|
1060
1110
|
return /* @__PURE__ */ jsxs8("label", { className: root24, "data-testid": dataTestId, "data-state": states({ checked, disabled: disabled3 }), children: [
|
|
1061
|
-
/* @__PURE__ */
|
|
1111
|
+
/* @__PURE__ */ jsx16(
|
|
1062
1112
|
"input",
|
|
1063
1113
|
{
|
|
1064
1114
|
ref,
|
|
@@ -1075,19 +1125,19 @@ var Switch = forwardRef11(function Switch2({ checked = false, onChange, label: l
|
|
|
1075
1125
|
...rest
|
|
1076
1126
|
}
|
|
1077
1127
|
),
|
|
1078
|
-
/* @__PURE__ */
|
|
1079
|
-
label7 != null && /* @__PURE__ */
|
|
1128
|
+
/* @__PURE__ */ jsx16("span", { className: track4, children: /* @__PURE__ */ jsx16("span", { className: knob2 }) }),
|
|
1129
|
+
label7 != null && /* @__PURE__ */ jsx16("span", { className: labelClass, children: label7 })
|
|
1080
1130
|
] });
|
|
1081
1131
|
});
|
|
1082
1132
|
|
|
1083
1133
|
// src/components/text-field/index.tsx
|
|
1084
|
-
import { forwardRef as
|
|
1134
|
+
import { forwardRef as forwardRef14 } from "react";
|
|
1085
1135
|
|
|
1086
1136
|
// src/components/base-field/index.tsx
|
|
1087
|
-
import { forwardRef as
|
|
1137
|
+
import { forwardRef as forwardRef13, useId } from "react";
|
|
1088
1138
|
|
|
1089
1139
|
// src/components/base-field/use-styles.ts
|
|
1090
|
-
import { useMemo as
|
|
1140
|
+
import { useMemo as useMemo16 } from "react";
|
|
1091
1141
|
|
|
1092
1142
|
// src/components/base-field/use-styles.css.ts
|
|
1093
1143
|
var field = "use-styles_field__1c3cgd3";
|
|
@@ -1104,9 +1154,9 @@ var startIconSlot = "use-styles_startIconSlot__1c3cgda";
|
|
|
1104
1154
|
var trailingSlot = "use-styles_trailingSlot__1c3cgdb";
|
|
1105
1155
|
|
|
1106
1156
|
// src/components/base-field/use-styles.ts
|
|
1107
|
-
function
|
|
1157
|
+
function useStyles13({ error, hasStartIcon, hasTrailing, className }) {
|
|
1108
1158
|
const { themeClass } = useTheme();
|
|
1109
|
-
return
|
|
1159
|
+
return useMemo16(() => {
|
|
1110
1160
|
const root24 = [themeClass, root9].filter(Boolean).join(" ");
|
|
1111
1161
|
const labelText2 = [labelText, error && labelTextError].filter(Boolean).join(" ");
|
|
1112
1162
|
const input6 = [
|
|
@@ -1130,15 +1180,15 @@ function useStyles12({ error, hasStartIcon, hasTrailing, className }) {
|
|
|
1130
1180
|
}
|
|
1131
1181
|
|
|
1132
1182
|
// src/components/base-field/index.tsx
|
|
1133
|
-
import { jsx as
|
|
1134
|
-
var BaseField =
|
|
1183
|
+
import { jsx as jsx17, jsxs as jsxs9 } from "react/jsx-runtime";
|
|
1184
|
+
var BaseField = forwardRef13(function BaseField2({ label: label7, help, error, startIcon: StartIcon, trailing: trailing2, id, className, testId, children }, ref) {
|
|
1135
1185
|
const autoId = useId();
|
|
1136
1186
|
const controlId = id ?? autoId;
|
|
1137
1187
|
const errorMessage = error != null && error !== false && error !== true && error !== "" ? error : null;
|
|
1138
1188
|
const hasError = error === true || errorMessage != null;
|
|
1139
1189
|
const message2 = errorMessage ?? help;
|
|
1140
1190
|
const messageId = message2 != null ? `${controlId}-msg` : void 0;
|
|
1141
|
-
const classes =
|
|
1191
|
+
const classes = useStyles13({
|
|
1142
1192
|
error: hasError,
|
|
1143
1193
|
hasStartIcon: StartIcon != null,
|
|
1144
1194
|
hasTrailing: trailing2 != null,
|
|
@@ -1154,14 +1204,14 @@ var BaseField = forwardRef12(function BaseField2({ label: label7, help, error, s
|
|
|
1154
1204
|
"data-testid": slot("input")
|
|
1155
1205
|
};
|
|
1156
1206
|
return /* @__PURE__ */ jsxs9("div", { className: classes.root, "data-testid": rootTestId, "data-state": states({ error: hasError }), children: [
|
|
1157
|
-
label7 != null && /* @__PURE__ */
|
|
1207
|
+
label7 != null && /* @__PURE__ */ jsx17("label", { htmlFor: controlId, className: classes.labelText, "data-testid": slot("label"), children: label7 }),
|
|
1158
1208
|
/* @__PURE__ */ jsxs9("div", { className: classes.field, children: [
|
|
1159
|
-
StartIcon != null && /* @__PURE__ */
|
|
1209
|
+
StartIcon != null && /* @__PURE__ */ jsx17("span", { className: classes.startIconSlot, children: /* @__PURE__ */ jsx17(StartIcon, { size: 18 }) }),
|
|
1160
1210
|
children(control),
|
|
1161
|
-
trailing2 != null && /* @__PURE__ */
|
|
1211
|
+
trailing2 != null && /* @__PURE__ */ jsx17("span", { className: classes.trailingSlot, children: trailing2 })
|
|
1162
1212
|
] }),
|
|
1163
1213
|
message2 != null && // `aria-live` solo cuando el mensaje es un error: anuncia la validación al aparecer.
|
|
1164
|
-
/* @__PURE__ */
|
|
1214
|
+
/* @__PURE__ */ jsx17(
|
|
1165
1215
|
"span",
|
|
1166
1216
|
{
|
|
1167
1217
|
id: messageId,
|
|
@@ -1175,8 +1225,8 @@ var BaseField = forwardRef12(function BaseField2({ label: label7, help, error, s
|
|
|
1175
1225
|
});
|
|
1176
1226
|
|
|
1177
1227
|
// src/components/text-field/index.tsx
|
|
1178
|
-
import { jsx as
|
|
1179
|
-
var TextField =
|
|
1228
|
+
import { jsx as jsx18 } from "react/jsx-runtime";
|
|
1229
|
+
var TextField = forwardRef14(function TextField2({
|
|
1180
1230
|
label: label7,
|
|
1181
1231
|
help,
|
|
1182
1232
|
error,
|
|
@@ -1191,7 +1241,7 @@ var TextField = forwardRef13(function TextField2({
|
|
|
1191
1241
|
...rest
|
|
1192
1242
|
}, ref) {
|
|
1193
1243
|
const rawTestId = rest["data-testid"];
|
|
1194
|
-
return /* @__PURE__ */
|
|
1244
|
+
return /* @__PURE__ */ jsx18(
|
|
1195
1245
|
BaseField,
|
|
1196
1246
|
{
|
|
1197
1247
|
ref,
|
|
@@ -1205,7 +1255,7 @@ var TextField = forwardRef13(function TextField2({
|
|
|
1205
1255
|
children: ({ ref: controlRef, ...control }) => multiline ? (
|
|
1206
1256
|
// En multiline el control es un <textarea>: no reenviamos `controlRef` porque el
|
|
1207
1257
|
// tipo público de la ref es HTMLInputElement (la ref aplica solo a la rama <input>).
|
|
1208
|
-
/* @__PURE__ */
|
|
1258
|
+
/* @__PURE__ */ jsx18(
|
|
1209
1259
|
"textarea",
|
|
1210
1260
|
{
|
|
1211
1261
|
...rest,
|
|
@@ -1215,7 +1265,7 @@ var TextField = forwardRef13(function TextField2({
|
|
|
1215
1265
|
onChange: (e) => onChange?.(e.target.value)
|
|
1216
1266
|
}
|
|
1217
1267
|
)
|
|
1218
|
-
) : /* @__PURE__ */
|
|
1268
|
+
) : /* @__PURE__ */ jsx18(
|
|
1219
1269
|
"input",
|
|
1220
1270
|
{
|
|
1221
1271
|
...rest,
|
|
@@ -1231,10 +1281,10 @@ var TextField = forwardRef13(function TextField2({
|
|
|
1231
1281
|
});
|
|
1232
1282
|
|
|
1233
1283
|
// src/components/password-field/index.tsx
|
|
1234
|
-
import { forwardRef as
|
|
1284
|
+
import { forwardRef as forwardRef15, useState as useState3 } from "react";
|
|
1235
1285
|
|
|
1236
1286
|
// src/components/icons/eye/index.tsx
|
|
1237
|
-
import { jsx as
|
|
1287
|
+
import { jsx as jsx19, jsxs as jsxs10 } from "react/jsx-runtime";
|
|
1238
1288
|
function EyeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
1239
1289
|
return /* @__PURE__ */ jsxs10(
|
|
1240
1290
|
"svg",
|
|
@@ -1251,15 +1301,15 @@ function EyeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
1251
1301
|
"aria-hidden": "true",
|
|
1252
1302
|
...rest,
|
|
1253
1303
|
children: [
|
|
1254
|
-
/* @__PURE__ */
|
|
1255
|
-
/* @__PURE__ */
|
|
1304
|
+
/* @__PURE__ */ jsx19("path", { d: "M2 12s3-7 10-7 10 7 10 7-3 7-10 7-10-7-10-7Z" }),
|
|
1305
|
+
/* @__PURE__ */ jsx19("circle", { cx: "12", cy: "12", r: "3" })
|
|
1256
1306
|
]
|
|
1257
1307
|
}
|
|
1258
1308
|
);
|
|
1259
1309
|
}
|
|
1260
1310
|
|
|
1261
1311
|
// src/components/icons/eye-off/index.tsx
|
|
1262
|
-
import { jsx as
|
|
1312
|
+
import { jsx as jsx20, jsxs as jsxs11 } from "react/jsx-runtime";
|
|
1263
1313
|
function EyeOffIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
1264
1314
|
return /* @__PURE__ */ jsxs11(
|
|
1265
1315
|
"svg",
|
|
@@ -1276,39 +1326,39 @@ function EyeOffIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
1276
1326
|
"aria-hidden": "true",
|
|
1277
1327
|
...rest,
|
|
1278
1328
|
children: [
|
|
1279
|
-
/* @__PURE__ */
|
|
1280
|
-
/* @__PURE__ */
|
|
1281
|
-
/* @__PURE__ */
|
|
1282
|
-
/* @__PURE__ */
|
|
1329
|
+
/* @__PURE__ */ jsx20("path", { d: "M9.88 9.88a3 3 0 1 0 4.24 4.24" }),
|
|
1330
|
+
/* @__PURE__ */ jsx20("path", { d: "M10.73 5.08A10.43 10.43 0 0 1 12 5c7 0 10 7 10 7a13.16 13.16 0 0 1-1.67 2.68" }),
|
|
1331
|
+
/* @__PURE__ */ jsx20("path", { d: "M6.61 6.61A13.526 13.526 0 0 0 2 12s3 7 10 7a9.74 9.74 0 0 0 5.39-1.61" }),
|
|
1332
|
+
/* @__PURE__ */ jsx20("path", { d: "m2 2 20 20" })
|
|
1283
1333
|
]
|
|
1284
1334
|
}
|
|
1285
1335
|
);
|
|
1286
1336
|
}
|
|
1287
1337
|
|
|
1288
1338
|
// src/components/password-field/use-styles.ts
|
|
1289
|
-
import { useMemo as
|
|
1339
|
+
import { useMemo as useMemo17 } from "react";
|
|
1290
1340
|
|
|
1291
1341
|
// src/components/password-field/use-styles.css.ts
|
|
1292
1342
|
var revealButton = "use-styles_revealButton__rsu9d50";
|
|
1293
1343
|
|
|
1294
1344
|
// src/components/password-field/use-styles.ts
|
|
1295
|
-
function
|
|
1296
|
-
return
|
|
1345
|
+
function useStyles14() {
|
|
1346
|
+
return useMemo17(() => ({ revealButton }), []);
|
|
1297
1347
|
}
|
|
1298
1348
|
|
|
1299
1349
|
// src/components/password-field/index.tsx
|
|
1300
|
-
import { jsx as
|
|
1301
|
-
var PasswordField =
|
|
1350
|
+
import { jsx as jsx21 } from "react/jsx-runtime";
|
|
1351
|
+
var PasswordField = forwardRef15(
|
|
1302
1352
|
function PasswordField2({ label: label7, help, error, startIcon, onChange, id, className, ...rest }, ref) {
|
|
1303
1353
|
const [reveal, setReveal] = useState3(false);
|
|
1304
|
-
const classes =
|
|
1354
|
+
const classes = useStyles14();
|
|
1305
1355
|
const handleChange = (e) => {
|
|
1306
1356
|
onChange?.(e.target.value);
|
|
1307
1357
|
};
|
|
1308
1358
|
const handleToggleMouseDown = (e) => {
|
|
1309
1359
|
e.preventDefault();
|
|
1310
1360
|
};
|
|
1311
|
-
const toggleButton = /* @__PURE__ */
|
|
1361
|
+
const toggleButton = /* @__PURE__ */ jsx21(
|
|
1312
1362
|
"button",
|
|
1313
1363
|
{
|
|
1314
1364
|
type: "button",
|
|
@@ -1317,10 +1367,10 @@ var PasswordField = forwardRef14(
|
|
|
1317
1367
|
"aria-label": reveal ? "Ocultar contrase\xF1a" : "Mostrar contrase\xF1a",
|
|
1318
1368
|
onMouseDown: handleToggleMouseDown,
|
|
1319
1369
|
onClick: () => setReveal((r) => !r),
|
|
1320
|
-
children: reveal ? /* @__PURE__ */
|
|
1370
|
+
children: reveal ? /* @__PURE__ */ jsx21(EyeOffIcon, { size: 18 }) : /* @__PURE__ */ jsx21(EyeIcon, { size: 18 })
|
|
1321
1371
|
}
|
|
1322
1372
|
);
|
|
1323
|
-
return /* @__PURE__ */
|
|
1373
|
+
return /* @__PURE__ */ jsx21(
|
|
1324
1374
|
BaseField,
|
|
1325
1375
|
{
|
|
1326
1376
|
ref,
|
|
@@ -1331,7 +1381,7 @@ var PasswordField = forwardRef14(
|
|
|
1331
1381
|
trailing: toggleButton,
|
|
1332
1382
|
id,
|
|
1333
1383
|
className,
|
|
1334
|
-
children: (control) => /* @__PURE__ */
|
|
1384
|
+
children: (control) => /* @__PURE__ */ jsx21(
|
|
1335
1385
|
"input",
|
|
1336
1386
|
{
|
|
1337
1387
|
...rest,
|
|
@@ -1346,15 +1396,15 @@ var PasswordField = forwardRef14(
|
|
|
1346
1396
|
);
|
|
1347
1397
|
|
|
1348
1398
|
// src/components/money-field/index.tsx
|
|
1349
|
-
import { forwardRef as
|
|
1350
|
-
import { jsx as
|
|
1399
|
+
import { forwardRef as forwardRef16, useMemo as useMemo18, useState as useState4 } from "react";
|
|
1400
|
+
import { jsx as jsx22 } from "react/jsx-runtime";
|
|
1351
1401
|
function parseAmount(raw) {
|
|
1352
1402
|
const cleaned = raw.replace(/[^0-9.-]/g, "");
|
|
1353
1403
|
if (cleaned === "" || cleaned === "-" || cleaned === ".") return null;
|
|
1354
1404
|
const n = Number.parseFloat(cleaned);
|
|
1355
1405
|
return Number.isNaN(n) ? null : n;
|
|
1356
1406
|
}
|
|
1357
|
-
var MoneyField =
|
|
1407
|
+
var MoneyField = forwardRef16(function MoneyField2({
|
|
1358
1408
|
value,
|
|
1359
1409
|
onChange,
|
|
1360
1410
|
currency = "USD",
|
|
@@ -1371,7 +1421,7 @@ var MoneyField = forwardRef15(function MoneyField2({
|
|
|
1371
1421
|
}, ref) {
|
|
1372
1422
|
const [focused, setFocused] = useState4(false);
|
|
1373
1423
|
const [draft, setDraft] = useState4("");
|
|
1374
|
-
const formatter =
|
|
1424
|
+
const formatter = useMemo18(
|
|
1375
1425
|
() => new Intl.NumberFormat(locale, { style: "currency", currency }),
|
|
1376
1426
|
[locale, currency]
|
|
1377
1427
|
);
|
|
@@ -1387,7 +1437,7 @@ var MoneyField = forwardRef15(function MoneyField2({
|
|
|
1387
1437
|
onChange?.(parseAmount(draft));
|
|
1388
1438
|
onBlur?.(e);
|
|
1389
1439
|
};
|
|
1390
|
-
return /* @__PURE__ */
|
|
1440
|
+
return /* @__PURE__ */ jsx22(
|
|
1391
1441
|
BaseField,
|
|
1392
1442
|
{
|
|
1393
1443
|
ref,
|
|
@@ -1397,7 +1447,7 @@ var MoneyField = forwardRef15(function MoneyField2({
|
|
|
1397
1447
|
startIcon,
|
|
1398
1448
|
id,
|
|
1399
1449
|
className,
|
|
1400
|
-
children: (control) => /* @__PURE__ */
|
|
1450
|
+
children: (control) => /* @__PURE__ */ jsx22(
|
|
1401
1451
|
"input",
|
|
1402
1452
|
{
|
|
1403
1453
|
...rest,
|
|
@@ -1414,10 +1464,10 @@ var MoneyField = forwardRef15(function MoneyField2({
|
|
|
1414
1464
|
});
|
|
1415
1465
|
|
|
1416
1466
|
// src/components/icon-button/index.tsx
|
|
1417
|
-
import { forwardRef as
|
|
1467
|
+
import { forwardRef as forwardRef17 } from "react";
|
|
1418
1468
|
|
|
1419
1469
|
// src/components/icon-button/use-styles.ts
|
|
1420
|
-
import { useMemo as
|
|
1470
|
+
import { useMemo as useMemo19 } from "react";
|
|
1421
1471
|
|
|
1422
1472
|
// src/components/icon-button/use-styles.css.ts
|
|
1423
1473
|
var accent = "use-styles_accent__18np0q02";
|
|
@@ -1425,12 +1475,12 @@ var active = "use-styles_active__18np0q01";
|
|
|
1425
1475
|
var root10 = "use-styles_root__18np0q00";
|
|
1426
1476
|
|
|
1427
1477
|
// src/components/icon-button/use-styles.ts
|
|
1428
|
-
function
|
|
1478
|
+
function useStyles15({
|
|
1429
1479
|
active: active2 = false,
|
|
1430
1480
|
tone: tone4 = "ink"
|
|
1431
1481
|
}) {
|
|
1432
1482
|
const { themeClass } = useTheme();
|
|
1433
|
-
const root24 =
|
|
1483
|
+
const root24 = useMemo19(
|
|
1434
1484
|
() => [themeClass, root10, tone4 === "accent" && accent, active2 && active].filter(Boolean).join(" "),
|
|
1435
1485
|
[themeClass, active2, tone4]
|
|
1436
1486
|
);
|
|
@@ -1438,8 +1488,8 @@ function useStyles14({
|
|
|
1438
1488
|
}
|
|
1439
1489
|
|
|
1440
1490
|
// src/components/icon-button/index.tsx
|
|
1441
|
-
import { jsx as
|
|
1442
|
-
var IconButton =
|
|
1491
|
+
import { jsx as jsx23 } from "react/jsx-runtime";
|
|
1492
|
+
var IconButton = forwardRef17(function IconButton2({ icon: Icon, active: active2, tone: tone4, title, type = "button", testId, ...rest }, ref) {
|
|
1443
1493
|
if (typeof process !== "undefined" && process.env.NODE_ENV !== "production") {
|
|
1444
1494
|
const restProps = rest;
|
|
1445
1495
|
const hasName = title.trim() !== "" || restProps["aria-label"] != null || restProps["aria-labelledby"] != null;
|
|
@@ -1447,9 +1497,9 @@ var IconButton = forwardRef16(function IconButton2({ icon: Icon, active: active2
|
|
|
1447
1497
|
console.warn("IconButton: falta un nombre accesible (`title` o `aria-label`).");
|
|
1448
1498
|
}
|
|
1449
1499
|
}
|
|
1450
|
-
const { root: root24 } =
|
|
1500
|
+
const { root: root24 } = useStyles15({ active: active2, tone: tone4 });
|
|
1451
1501
|
const { testId: dataTestId } = useTestId("button", testId);
|
|
1452
|
-
return /* @__PURE__ */
|
|
1502
|
+
return /* @__PURE__ */ jsx23(
|
|
1453
1503
|
"button",
|
|
1454
1504
|
{
|
|
1455
1505
|
ref,
|
|
@@ -1460,16 +1510,16 @@ var IconButton = forwardRef16(function IconButton2({ icon: Icon, active: active2
|
|
|
1460
1510
|
"data-testid": dataTestId,
|
|
1461
1511
|
"data-state": states({ active: active2, disabled: rest.disabled }),
|
|
1462
1512
|
...rest,
|
|
1463
|
-
children: /* @__PURE__ */
|
|
1513
|
+
children: /* @__PURE__ */ jsx23(Icon, { size: 18 })
|
|
1464
1514
|
}
|
|
1465
1515
|
);
|
|
1466
1516
|
});
|
|
1467
1517
|
|
|
1468
1518
|
// src/components/card/index.tsx
|
|
1469
|
-
import { forwardRef as
|
|
1519
|
+
import { forwardRef as forwardRef18 } from "react";
|
|
1470
1520
|
|
|
1471
1521
|
// src/components/card/use-styles.ts
|
|
1472
|
-
import { useMemo as
|
|
1522
|
+
import { useMemo as useMemo20 } from "react";
|
|
1473
1523
|
|
|
1474
1524
|
// src/components/card/use-styles.css.ts
|
|
1475
1525
|
var body = "use-styles_body__1fuvd022";
|
|
@@ -1478,30 +1528,30 @@ var header = "use-styles_header__1fuvd021";
|
|
|
1478
1528
|
var root11 = "use-styles_root__1fuvd020";
|
|
1479
1529
|
|
|
1480
1530
|
// src/components/card/use-styles.ts
|
|
1481
|
-
function
|
|
1531
|
+
function useStyles16() {
|
|
1482
1532
|
const { themeClass } = useTheme();
|
|
1483
|
-
const root24 =
|
|
1533
|
+
const root24 = useMemo20(() => `${themeClass} ${root11}`, [themeClass]);
|
|
1484
1534
|
return { root: root24, header, body, footer };
|
|
1485
1535
|
}
|
|
1486
1536
|
|
|
1487
1537
|
// src/components/card/index.tsx
|
|
1488
|
-
import { jsx as
|
|
1489
|
-
var CardRoot =
|
|
1490
|
-
const { root: root24 } =
|
|
1538
|
+
import { jsx as jsx24 } from "react/jsx-runtime";
|
|
1539
|
+
var CardRoot = forwardRef18(function Card({ children, testId, ...rest }, ref) {
|
|
1540
|
+
const { root: root24 } = useStyles16();
|
|
1491
1541
|
const { testId: dataTestId } = useTestId("layout", testId);
|
|
1492
|
-
return /* @__PURE__ */
|
|
1542
|
+
return /* @__PURE__ */ jsx24("div", { ref, className: root24, "data-testid": dataTestId, ...rest, children });
|
|
1493
1543
|
});
|
|
1494
1544
|
function CardHeader({ children, ...rest }) {
|
|
1495
|
-
const { header: header3 } =
|
|
1496
|
-
return /* @__PURE__ */
|
|
1545
|
+
const { header: header3 } = useStyles16();
|
|
1546
|
+
return /* @__PURE__ */ jsx24("div", { className: header3, ...rest, children });
|
|
1497
1547
|
}
|
|
1498
1548
|
function CardBody({ children, ...rest }) {
|
|
1499
|
-
const { body: body3 } =
|
|
1500
|
-
return /* @__PURE__ */
|
|
1549
|
+
const { body: body3 } = useStyles16();
|
|
1550
|
+
return /* @__PURE__ */ jsx24("div", { className: body3, ...rest, children });
|
|
1501
1551
|
}
|
|
1502
1552
|
function CardFooter({ children, ...rest }) {
|
|
1503
|
-
const { footer: footer2 } =
|
|
1504
|
-
return /* @__PURE__ */
|
|
1553
|
+
const { footer: footer2 } = useStyles16();
|
|
1554
|
+
return /* @__PURE__ */ jsx24("div", { className: footer2, ...rest, children });
|
|
1505
1555
|
}
|
|
1506
1556
|
CardRoot.displayName = "Card";
|
|
1507
1557
|
CardHeader.displayName = "Card.Header";
|
|
@@ -1514,10 +1564,10 @@ var Card2 = Object.assign(CardRoot, {
|
|
|
1514
1564
|
});
|
|
1515
1565
|
|
|
1516
1566
|
// src/components/alert/index.tsx
|
|
1517
|
-
import { forwardRef as
|
|
1567
|
+
import { forwardRef as forwardRef19 } from "react";
|
|
1518
1568
|
|
|
1519
1569
|
// src/components/icons/circle-check/index.tsx
|
|
1520
|
-
import { jsx as
|
|
1570
|
+
import { jsx as jsx25, jsxs as jsxs12 } from "react/jsx-runtime";
|
|
1521
1571
|
function CircleCheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
1522
1572
|
return /* @__PURE__ */ jsxs12(
|
|
1523
1573
|
"svg",
|
|
@@ -1534,15 +1584,15 @@ function CircleCheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
1534
1584
|
"aria-hidden": "true",
|
|
1535
1585
|
...rest,
|
|
1536
1586
|
children: [
|
|
1537
|
-
/* @__PURE__ */
|
|
1538
|
-
/* @__PURE__ */
|
|
1587
|
+
/* @__PURE__ */ jsx25("circle", { cx: "12", cy: "12", r: "10" }),
|
|
1588
|
+
/* @__PURE__ */ jsx25("path", { d: "m9 12 2 2 4-4" })
|
|
1539
1589
|
]
|
|
1540
1590
|
}
|
|
1541
1591
|
);
|
|
1542
1592
|
}
|
|
1543
1593
|
|
|
1544
1594
|
// src/components/icons/circle-x/index.tsx
|
|
1545
|
-
import { jsx as
|
|
1595
|
+
import { jsx as jsx26, jsxs as jsxs13 } from "react/jsx-runtime";
|
|
1546
1596
|
function CircleXIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
1547
1597
|
return /* @__PURE__ */ jsxs13(
|
|
1548
1598
|
"svg",
|
|
@@ -1559,16 +1609,16 @@ function CircleXIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
1559
1609
|
"aria-hidden": "true",
|
|
1560
1610
|
...rest,
|
|
1561
1611
|
children: [
|
|
1562
|
-
/* @__PURE__ */
|
|
1563
|
-
/* @__PURE__ */
|
|
1564
|
-
/* @__PURE__ */
|
|
1612
|
+
/* @__PURE__ */ jsx26("circle", { cx: "12", cy: "12", r: "10" }),
|
|
1613
|
+
/* @__PURE__ */ jsx26("path", { d: "m15 9-6 6" }),
|
|
1614
|
+
/* @__PURE__ */ jsx26("path", { d: "m9 9 6 6" })
|
|
1565
1615
|
]
|
|
1566
1616
|
}
|
|
1567
1617
|
);
|
|
1568
1618
|
}
|
|
1569
1619
|
|
|
1570
1620
|
// src/components/icons/info/index.tsx
|
|
1571
|
-
import { jsx as
|
|
1621
|
+
import { jsx as jsx27, jsxs as jsxs14 } from "react/jsx-runtime";
|
|
1572
1622
|
function InfoIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
1573
1623
|
return /* @__PURE__ */ jsxs14(
|
|
1574
1624
|
"svg",
|
|
@@ -1585,16 +1635,16 @@ function InfoIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
1585
1635
|
"aria-hidden": "true",
|
|
1586
1636
|
...rest,
|
|
1587
1637
|
children: [
|
|
1588
|
-
/* @__PURE__ */
|
|
1589
|
-
/* @__PURE__ */
|
|
1590
|
-
/* @__PURE__ */
|
|
1638
|
+
/* @__PURE__ */ jsx27("circle", { cx: "12", cy: "12", r: "10" }),
|
|
1639
|
+
/* @__PURE__ */ jsx27("path", { d: "M12 16v-4" }),
|
|
1640
|
+
/* @__PURE__ */ jsx27("path", { d: "M12 8h.01" })
|
|
1591
1641
|
]
|
|
1592
1642
|
}
|
|
1593
1643
|
);
|
|
1594
1644
|
}
|
|
1595
1645
|
|
|
1596
1646
|
// src/components/icons/triangle-alert/index.tsx
|
|
1597
|
-
import { jsx as
|
|
1647
|
+
import { jsx as jsx28, jsxs as jsxs15 } from "react/jsx-runtime";
|
|
1598
1648
|
function TriangleAlertIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
1599
1649
|
return /* @__PURE__ */ jsxs15(
|
|
1600
1650
|
"svg",
|
|
@@ -1611,16 +1661,16 @@ function TriangleAlertIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
1611
1661
|
"aria-hidden": "true",
|
|
1612
1662
|
...rest,
|
|
1613
1663
|
children: [
|
|
1614
|
-
/* @__PURE__ */
|
|
1615
|
-
/* @__PURE__ */
|
|
1616
|
-
/* @__PURE__ */
|
|
1664
|
+
/* @__PURE__ */ jsx28("path", { d: "m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3Z" }),
|
|
1665
|
+
/* @__PURE__ */ jsx28("path", { d: "M12 9v4" }),
|
|
1666
|
+
/* @__PURE__ */ jsx28("path", { d: "M12 17h.01" })
|
|
1617
1667
|
]
|
|
1618
1668
|
}
|
|
1619
1669
|
);
|
|
1620
1670
|
}
|
|
1621
1671
|
|
|
1622
1672
|
// src/components/alert/use-styles.ts
|
|
1623
|
-
import { useMemo as
|
|
1673
|
+
import { useMemo as useMemo21 } from "react";
|
|
1624
1674
|
|
|
1625
1675
|
// src/components/alert/use-styles.css.ts
|
|
1626
1676
|
var content = "use-styles_content__ivsh6u6";
|
|
@@ -1629,12 +1679,12 @@ var root12 = "use-styles_root__ivsh6u0";
|
|
|
1629
1679
|
var severity = { info: "use-styles_severity_info__ivsh6u1", ok: "use-styles_severity_ok__ivsh6u2", warn: "use-styles_severity_warn__ivsh6u3", danger: "use-styles_severity_danger__ivsh6u4" };
|
|
1630
1680
|
|
|
1631
1681
|
// src/components/alert/use-styles.ts
|
|
1632
|
-
function
|
|
1682
|
+
function useStyles17({
|
|
1633
1683
|
severity: severity2 = "info",
|
|
1634
1684
|
className
|
|
1635
1685
|
}) {
|
|
1636
1686
|
const { themeClass } = useTheme();
|
|
1637
|
-
const root24 =
|
|
1687
|
+
const root24 = useMemo21(
|
|
1638
1688
|
() => [themeClass, root12, severity[severity2], className].filter(Boolean).join(" "),
|
|
1639
1689
|
[themeClass, severity2, className]
|
|
1640
1690
|
);
|
|
@@ -1646,22 +1696,22 @@ function useStyles16({
|
|
|
1646
1696
|
}
|
|
1647
1697
|
|
|
1648
1698
|
// src/components/alert/index.tsx
|
|
1649
|
-
import { jsx as
|
|
1699
|
+
import { jsx as jsx29, jsxs as jsxs16 } from "react/jsx-runtime";
|
|
1650
1700
|
var defaultIcons = {
|
|
1651
1701
|
info: InfoIcon,
|
|
1652
1702
|
ok: CircleCheckIcon,
|
|
1653
1703
|
warn: TriangleAlertIcon,
|
|
1654
1704
|
danger: CircleXIcon
|
|
1655
1705
|
};
|
|
1656
|
-
var Alert =
|
|
1657
|
-
const styles =
|
|
1706
|
+
var Alert = forwardRef19(function Alert2({ severity: severity2 = "info", title, icon, className, testId, children, ...rest }, ref) {
|
|
1707
|
+
const styles = useStyles17({ severity: severity2, className });
|
|
1658
1708
|
const { testId: dataTestId, slot } = useTestId("feedback", testId);
|
|
1659
1709
|
const IconComponent = icon ?? defaultIcons[severity2];
|
|
1660
1710
|
return /* @__PURE__ */ jsxs16("div", { ref, role: "alert", className: styles.root, "data-testid": dataTestId, ...rest, children: [
|
|
1661
|
-
/* @__PURE__ */
|
|
1711
|
+
/* @__PURE__ */ jsx29("span", { className: styles.iconSlot, "data-testid": slot("icon"), children: /* @__PURE__ */ jsx29(IconComponent, {}) }),
|
|
1662
1712
|
/* @__PURE__ */ jsxs16("div", { className: styles.content, "data-testid": slot("content"), children: [
|
|
1663
|
-
title != null && /* @__PURE__ */
|
|
1664
|
-
children != null && /* @__PURE__ */
|
|
1713
|
+
title != null && /* @__PURE__ */ jsx29(Typography, { variant: "h4", children: title }),
|
|
1714
|
+
children != null && /* @__PURE__ */ jsx29(Typography, { variant: "body", color: "fg2", children })
|
|
1665
1715
|
] })
|
|
1666
1716
|
] });
|
|
1667
1717
|
});
|
|
@@ -1669,15 +1719,15 @@ var Alert = forwardRef18(function Alert2({ severity: severity2 = "info", title,
|
|
|
1669
1719
|
// src/components/tooltip/index.tsx
|
|
1670
1720
|
import {
|
|
1671
1721
|
cloneElement,
|
|
1672
|
-
forwardRef as
|
|
1673
|
-
useEffect as
|
|
1722
|
+
forwardRef as forwardRef20,
|
|
1723
|
+
useEffect as useEffect4,
|
|
1674
1724
|
useId as useId2,
|
|
1675
1725
|
useRef as useRef2,
|
|
1676
1726
|
useState as useState5
|
|
1677
1727
|
} from "react";
|
|
1678
1728
|
|
|
1679
1729
|
// src/components/tooltip/use-styles.ts
|
|
1680
|
-
import { useMemo as
|
|
1730
|
+
import { useMemo as useMemo22 } from "react";
|
|
1681
1731
|
|
|
1682
1732
|
// src/components/tooltip/use-styles.css.ts
|
|
1683
1733
|
var bubble = "use-styles_bubble__h9kvh1 surfaces_inkySurface__1qa7atn2";
|
|
@@ -1685,15 +1735,15 @@ var placement = { top: "use-styles_placement_top__h9kvh2", bottom: "use-styles_p
|
|
|
1685
1735
|
var wrapper = "use-styles_wrapper__h9kvh0";
|
|
1686
1736
|
|
|
1687
1737
|
// src/components/tooltip/use-styles.ts
|
|
1688
|
-
function
|
|
1738
|
+
function useStyles18({
|
|
1689
1739
|
placement: placement2 = "top"
|
|
1690
1740
|
}) {
|
|
1691
1741
|
const { themeClass } = useTheme();
|
|
1692
|
-
const wrapper4 =
|
|
1742
|
+
const wrapper4 = useMemo22(
|
|
1693
1743
|
() => [themeClass, wrapper].filter(Boolean).join(" "),
|
|
1694
1744
|
[themeClass]
|
|
1695
1745
|
);
|
|
1696
|
-
const bubble2 =
|
|
1746
|
+
const bubble2 = useMemo22(
|
|
1697
1747
|
() => [bubble, placement[placement2]].filter(Boolean).join(" "),
|
|
1698
1748
|
[placement2]
|
|
1699
1749
|
);
|
|
@@ -1701,12 +1751,12 @@ function useStyles17({
|
|
|
1701
1751
|
}
|
|
1702
1752
|
|
|
1703
1753
|
// src/components/tooltip/index.tsx
|
|
1704
|
-
import { jsx as
|
|
1754
|
+
import { jsx as jsx30, jsxs as jsxs17 } from "react/jsx-runtime";
|
|
1705
1755
|
var HIDE_DELAY = 120;
|
|
1706
|
-
var Tooltip =
|
|
1756
|
+
var Tooltip = forwardRef20(function Tooltip2({ label: label7, children, placement: placement2, testId }, ref) {
|
|
1707
1757
|
const [open, setOpen] = useState5(false);
|
|
1708
1758
|
const tooltipId = useId2();
|
|
1709
|
-
const { wrapper: wrapper4, bubble: bubble2 } =
|
|
1759
|
+
const { wrapper: wrapper4, bubble: bubble2 } = useStyles18({ placement: placement2 });
|
|
1710
1760
|
const { testId: dataTestId, slot } = useTestId("feedback", testId);
|
|
1711
1761
|
const hideTimer = useRef2(null);
|
|
1712
1762
|
const clearHide = () => {
|
|
@@ -1727,7 +1777,7 @@ var Tooltip = forwardRef19(function Tooltip2({ label: label7, children, placemen
|
|
|
1727
1777
|
clearHide();
|
|
1728
1778
|
setOpen(false);
|
|
1729
1779
|
};
|
|
1730
|
-
|
|
1780
|
+
useEffect4(() => {
|
|
1731
1781
|
return () => {
|
|
1732
1782
|
if (hideTimer.current) clearTimeout(hideTimer.current);
|
|
1733
1783
|
};
|
|
@@ -1754,7 +1804,7 @@ var Tooltip = forwardRef19(function Tooltip2({ label: label7, children, placemen
|
|
|
1754
1804
|
onKeyDown: handleKeyDown,
|
|
1755
1805
|
children: [
|
|
1756
1806
|
trigger2,
|
|
1757
|
-
open && /* @__PURE__ */
|
|
1807
|
+
open && /* @__PURE__ */ jsx30(
|
|
1758
1808
|
"span",
|
|
1759
1809
|
{
|
|
1760
1810
|
id: tooltipId,
|
|
@@ -1772,12 +1822,12 @@ var Tooltip = forwardRef19(function Tooltip2({ label: label7, children, placemen
|
|
|
1772
1822
|
});
|
|
1773
1823
|
|
|
1774
1824
|
// src/components/select/index.tsx
|
|
1775
|
-
import { forwardRef as
|
|
1825
|
+
import { forwardRef as forwardRef21, useEffect as useEffect5, useId as useId3, useRef as useRef3, useState as useState6 } from "react";
|
|
1776
1826
|
|
|
1777
1827
|
// src/components/icons/chevron-down/index.tsx
|
|
1778
|
-
import { jsx as
|
|
1828
|
+
import { jsx as jsx31 } from "react/jsx-runtime";
|
|
1779
1829
|
function ChevronDownIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
1780
|
-
return /* @__PURE__ */
|
|
1830
|
+
return /* @__PURE__ */ jsx31(
|
|
1781
1831
|
"svg",
|
|
1782
1832
|
{
|
|
1783
1833
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1791,13 +1841,13 @@ function ChevronDownIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
1791
1841
|
strokeLinejoin: "round",
|
|
1792
1842
|
"aria-hidden": "true",
|
|
1793
1843
|
...rest,
|
|
1794
|
-
children: /* @__PURE__ */
|
|
1844
|
+
children: /* @__PURE__ */ jsx31("path", { d: "m6 9 6 6 6-6" })
|
|
1795
1845
|
}
|
|
1796
1846
|
);
|
|
1797
1847
|
}
|
|
1798
1848
|
|
|
1799
1849
|
// src/components/select/use-styles.ts
|
|
1800
|
-
import { useMemo as
|
|
1850
|
+
import { useMemo as useMemo23 } from "react";
|
|
1801
1851
|
|
|
1802
1852
|
// src/components/select/use-styles.css.ts
|
|
1803
1853
|
var chevron = "use-styles_chevron__1w1czpb4";
|
|
@@ -1812,11 +1862,11 @@ var root13 = "use-styles_root__1w1czpb0";
|
|
|
1812
1862
|
var trigger = "use-styles_trigger__1w1czpb2";
|
|
1813
1863
|
|
|
1814
1864
|
// src/components/select/use-styles.ts
|
|
1815
|
-
function
|
|
1865
|
+
function useStyles19({
|
|
1816
1866
|
open = false
|
|
1817
1867
|
}) {
|
|
1818
1868
|
const { themeClass } = useTheme();
|
|
1819
|
-
return
|
|
1869
|
+
return useMemo23(() => {
|
|
1820
1870
|
const chevron3 = [chevron, open && chevronOpen].filter(Boolean).join(" ");
|
|
1821
1871
|
return {
|
|
1822
1872
|
root: [themeClass, root13].filter(Boolean).join(" "),
|
|
@@ -1831,8 +1881,8 @@ function useStyles18({
|
|
|
1831
1881
|
}
|
|
1832
1882
|
|
|
1833
1883
|
// src/components/select/index.tsx
|
|
1834
|
-
import { jsx as
|
|
1835
|
-
var Select =
|
|
1884
|
+
import { jsx as jsx32, jsxs as jsxs18 } from "react/jsx-runtime";
|
|
1885
|
+
var Select = forwardRef21(function Select2({
|
|
1836
1886
|
options,
|
|
1837
1887
|
value,
|
|
1838
1888
|
onChange,
|
|
@@ -1863,8 +1913,8 @@ var Select = forwardRef20(function Select2({
|
|
|
1863
1913
|
chevron: chevron3,
|
|
1864
1914
|
menu: menu2,
|
|
1865
1915
|
optionClass
|
|
1866
|
-
} =
|
|
1867
|
-
|
|
1916
|
+
} = useStyles19({ open });
|
|
1917
|
+
useEffect5(() => {
|
|
1868
1918
|
if (!open) return;
|
|
1869
1919
|
const onPointerDown = (event) => {
|
|
1870
1920
|
if (rootRef.current && !rootRef.current.contains(event.target)) {
|
|
@@ -1925,7 +1975,7 @@ var Select = forwardRef20(function Select2({
|
|
|
1925
1975
|
}
|
|
1926
1976
|
};
|
|
1927
1977
|
return /* @__PURE__ */ jsxs18("div", { ref: setRootRef, className: root24, ...rest, children: [
|
|
1928
|
-
label7 && /* @__PURE__ */
|
|
1978
|
+
label7 && /* @__PURE__ */ jsx32("span", { id: labelId, className: labelClass, children: label7 }),
|
|
1929
1979
|
/* @__PURE__ */ jsxs18(
|
|
1930
1980
|
"button",
|
|
1931
1981
|
{
|
|
@@ -1947,17 +1997,17 @@ var Select = forwardRef20(function Select2({
|
|
|
1947
1997
|
},
|
|
1948
1998
|
onKeyDown: handleKeyDown,
|
|
1949
1999
|
children: [
|
|
1950
|
-
selected3 ? selected3.label : /* @__PURE__ */
|
|
1951
|
-
/* @__PURE__ */
|
|
2000
|
+
selected3 ? selected3.label : /* @__PURE__ */ jsx32("span", { className: placeholderClass, children: placeholder2 }),
|
|
2001
|
+
/* @__PURE__ */ jsx32("span", { className: chevron3, children: /* @__PURE__ */ jsx32(ChevronDownIcon, { size: 18 }) })
|
|
1952
2002
|
]
|
|
1953
2003
|
}
|
|
1954
2004
|
),
|
|
1955
|
-
open && /* @__PURE__ */
|
|
2005
|
+
open && /* @__PURE__ */ jsx32("div", { className: menu2, role: "listbox", children: options.map((option2, index) => {
|
|
1956
2006
|
const isSelected = option2.value === value;
|
|
1957
2007
|
const isActive = index === activeIndex;
|
|
1958
2008
|
return (
|
|
1959
2009
|
// biome-ignore lint/a11y/useKeyWithClickEvents: keyboard nav lives on the trigger via aria-activedescendant; options are not focusable.
|
|
1960
|
-
/* @__PURE__ */
|
|
2010
|
+
/* @__PURE__ */ jsx32(
|
|
1961
2011
|
"div",
|
|
1962
2012
|
{
|
|
1963
2013
|
id: optionId(index),
|
|
@@ -1976,10 +2026,10 @@ var Select = forwardRef20(function Select2({
|
|
|
1976
2026
|
});
|
|
1977
2027
|
|
|
1978
2028
|
// src/components/slider/index.tsx
|
|
1979
|
-
import { forwardRef as
|
|
2029
|
+
import { forwardRef as forwardRef22 } from "react";
|
|
1980
2030
|
|
|
1981
2031
|
// src/components/slider/use-styles.ts
|
|
1982
|
-
import { useMemo as
|
|
2032
|
+
import { useMemo as useMemo24 } from "react";
|
|
1983
2033
|
|
|
1984
2034
|
// src/components/slider/use-styles.css.ts
|
|
1985
2035
|
var input5 = "use-styles_input__okw59n3";
|
|
@@ -1991,9 +2041,9 @@ var track3 = "use-styles_track__okw59n1";
|
|
|
1991
2041
|
var wrapper2 = "use-styles_wrapper__okw59n6";
|
|
1992
2042
|
|
|
1993
2043
|
// src/components/slider/use-styles.ts
|
|
1994
|
-
function
|
|
2044
|
+
function useStyles20() {
|
|
1995
2045
|
const { themeClass } = useTheme();
|
|
1996
|
-
return
|
|
2046
|
+
return useMemo24(() => {
|
|
1997
2047
|
const root24 = [themeClass, root14].filter(Boolean).join(" ");
|
|
1998
2048
|
return {
|
|
1999
2049
|
wrapper: wrapper2,
|
|
@@ -2008,9 +2058,9 @@ function useStyles19() {
|
|
|
2008
2058
|
}
|
|
2009
2059
|
|
|
2010
2060
|
// src/components/slider/index.tsx
|
|
2011
|
-
import { jsx as
|
|
2012
|
-
var Slider =
|
|
2013
|
-
const { wrapper: wrapper4, label: labelClass, root: root24, track: track4, range: range2, thumb: thumb2, input: input6 } =
|
|
2061
|
+
import { jsx as jsx33, jsxs as jsxs19 } from "react/jsx-runtime";
|
|
2062
|
+
var Slider = forwardRef22(function Slider2({ value = 0, onChange, min = 0, max = 100, step: step2 = 1, disabled: disabled3, label: label7, ...rest }, ref) {
|
|
2063
|
+
const { wrapper: wrapper4, label: labelClass, root: root24, track: track4, range: range2, thumb: thumb2, input: input6 } = useStyles20();
|
|
2014
2064
|
const span = max - min;
|
|
2015
2065
|
const percent = span > 0 ? (value - min) / span * 100 : 0;
|
|
2016
2066
|
const clamped = Math.max(0, Math.min(100, percent));
|
|
@@ -2018,11 +2068,11 @@ var Slider = forwardRef21(function Slider2({ value = 0, onChange, min = 0, max =
|
|
|
2018
2068
|
onChange?.(Number(e.target.value));
|
|
2019
2069
|
};
|
|
2020
2070
|
return /* @__PURE__ */ jsxs19("span", { className: wrapper4, children: [
|
|
2021
|
-
label7 ? /* @__PURE__ */
|
|
2071
|
+
label7 ? /* @__PURE__ */ jsx33("span", { className: labelClass, children: label7 }) : null,
|
|
2022
2072
|
/* @__PURE__ */ jsxs19("span", { className: root24, children: [
|
|
2023
|
-
/* @__PURE__ */
|
|
2024
|
-
/* @__PURE__ */
|
|
2025
|
-
/* @__PURE__ */
|
|
2073
|
+
/* @__PURE__ */ jsx33("span", { className: track4 }),
|
|
2074
|
+
/* @__PURE__ */ jsx33("span", { className: range2, style: { width: `${clamped}%` } }),
|
|
2075
|
+
/* @__PURE__ */ jsx33(
|
|
2026
2076
|
"input",
|
|
2027
2077
|
{
|
|
2028
2078
|
ref,
|
|
@@ -2037,16 +2087,16 @@ var Slider = forwardRef21(function Slider2({ value = 0, onChange, min = 0, max =
|
|
|
2037
2087
|
...rest
|
|
2038
2088
|
}
|
|
2039
2089
|
),
|
|
2040
|
-
/* @__PURE__ */
|
|
2090
|
+
/* @__PURE__ */ jsx33("span", { className: thumb2, style: { left: `${clamped}%` } })
|
|
2041
2091
|
] })
|
|
2042
2092
|
] });
|
|
2043
2093
|
});
|
|
2044
2094
|
|
|
2045
2095
|
// src/components/accordion/index.tsx
|
|
2046
|
-
import { forwardRef as
|
|
2096
|
+
import { forwardRef as forwardRef23, useState as useState7 } from "react";
|
|
2047
2097
|
|
|
2048
2098
|
// src/components/accordion/use-styles.ts
|
|
2049
|
-
import { useMemo as
|
|
2099
|
+
import { useMemo as useMemo25 } from "react";
|
|
2050
2100
|
|
|
2051
2101
|
// src/components/accordion/use-styles.css.ts
|
|
2052
2102
|
var chevron2 = "use-styles_chevron__1cjrdh93";
|
|
@@ -2057,9 +2107,9 @@ var panel = "use-styles_panel__1cjrdh95";
|
|
|
2057
2107
|
var root15 = "use-styles_root__1cjrdh90";
|
|
2058
2108
|
|
|
2059
2109
|
// src/components/accordion/use-styles.ts
|
|
2060
|
-
function
|
|
2110
|
+
function useStyles21({ className }) {
|
|
2061
2111
|
const { themeClass } = useTheme();
|
|
2062
|
-
return
|
|
2112
|
+
return useMemo25(
|
|
2063
2113
|
() => ({
|
|
2064
2114
|
root: [themeClass, root15, className].filter(Boolean).join(" "),
|
|
2065
2115
|
item,
|
|
@@ -2072,10 +2122,10 @@ function useStyles20({ className }) {
|
|
|
2072
2122
|
}
|
|
2073
2123
|
|
|
2074
2124
|
// src/components/accordion/index.tsx
|
|
2075
|
-
import { jsx as
|
|
2076
|
-
var Accordion =
|
|
2125
|
+
import { jsx as jsx34, jsxs as jsxs20 } from "react/jsx-runtime";
|
|
2126
|
+
var Accordion = forwardRef23(function Accordion2({ items, multiple = false, defaultOpen = [], className, testId }, ref) {
|
|
2077
2127
|
const [open, setOpen] = useState7(defaultOpen);
|
|
2078
|
-
const { root: root24, item: item3, header: header3, chevronFor, panel: panel3 } =
|
|
2128
|
+
const { root: root24, item: item3, header: header3, chevronFor, panel: panel3 } = useStyles21({ className });
|
|
2079
2129
|
const { testId: dataTestId, slot } = useTestId("layout", testId);
|
|
2080
2130
|
const toggle = (id) => {
|
|
2081
2131
|
setOpen((current2) => {
|
|
@@ -2084,7 +2134,7 @@ var Accordion = forwardRef22(function Accordion2({ items, multiple = false, defa
|
|
|
2084
2134
|
return multiple ? [...current2, id] : [id];
|
|
2085
2135
|
});
|
|
2086
2136
|
};
|
|
2087
|
-
return /* @__PURE__ */
|
|
2137
|
+
return /* @__PURE__ */ jsx34("div", { ref, className: root24, "data-testid": dataTestId, children: items.map((it) => {
|
|
2088
2138
|
const isOpen = open.includes(it.id);
|
|
2089
2139
|
const panelId = `accordion-panel-${it.id}`;
|
|
2090
2140
|
const headerId = `accordion-header-${it.id}`;
|
|
@@ -2108,11 +2158,11 @@ var Accordion = forwardRef22(function Accordion2({ items, multiple = false, defa
|
|
|
2108
2158
|
onClick: () => toggle(it.id),
|
|
2109
2159
|
children: [
|
|
2110
2160
|
it.title,
|
|
2111
|
-
/* @__PURE__ */
|
|
2161
|
+
/* @__PURE__ */ jsx34(ChevronDownIcon, { className: chevronFor(isOpen) })
|
|
2112
2162
|
]
|
|
2113
2163
|
}
|
|
2114
2164
|
),
|
|
2115
|
-
isOpen && /* @__PURE__ */
|
|
2165
|
+
isOpen && /* @__PURE__ */ jsx34(
|
|
2116
2166
|
"div",
|
|
2117
2167
|
{
|
|
2118
2168
|
id: panelId,
|
|
@@ -2131,12 +2181,12 @@ var Accordion = forwardRef22(function Accordion2({ items, multiple = false, defa
|
|
|
2131
2181
|
});
|
|
2132
2182
|
|
|
2133
2183
|
// src/components/breadcrumbs/index.tsx
|
|
2134
|
-
import { Fragment, forwardRef as
|
|
2184
|
+
import { Fragment, forwardRef as forwardRef24 } from "react";
|
|
2135
2185
|
|
|
2136
2186
|
// src/components/icons/chevron-right/index.tsx
|
|
2137
|
-
import { jsx as
|
|
2187
|
+
import { jsx as jsx35 } from "react/jsx-runtime";
|
|
2138
2188
|
function ChevronRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
2139
|
-
return /* @__PURE__ */
|
|
2189
|
+
return /* @__PURE__ */ jsx35(
|
|
2140
2190
|
"svg",
|
|
2141
2191
|
{
|
|
2142
2192
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2150,13 +2200,13 @@ function ChevronRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
2150
2200
|
strokeLinejoin: "round",
|
|
2151
2201
|
"aria-hidden": "true",
|
|
2152
2202
|
...rest,
|
|
2153
|
-
children: /* @__PURE__ */
|
|
2203
|
+
children: /* @__PURE__ */ jsx35("path", { d: "m9 18 6-6-6-6" })
|
|
2154
2204
|
}
|
|
2155
2205
|
);
|
|
2156
2206
|
}
|
|
2157
2207
|
|
|
2158
2208
|
// src/components/breadcrumbs/use-styles.ts
|
|
2159
|
-
import { useMemo as
|
|
2209
|
+
import { useMemo as useMemo26 } from "react";
|
|
2160
2210
|
|
|
2161
2211
|
// src/components/breadcrumbs/use-styles.css.ts
|
|
2162
2212
|
var crumb = "use-styles_crumb__7u0du61";
|
|
@@ -2165,9 +2215,9 @@ var root16 = "use-styles_root__7u0du60";
|
|
|
2165
2215
|
var separator = "use-styles_separator__7u0du63";
|
|
2166
2216
|
|
|
2167
2217
|
// src/components/breadcrumbs/use-styles.ts
|
|
2168
|
-
function
|
|
2218
|
+
function useStyles22({ className }) {
|
|
2169
2219
|
const { themeClass } = useTheme();
|
|
2170
|
-
const root24 =
|
|
2220
|
+
const root24 = useMemo26(
|
|
2171
2221
|
() => [themeClass, root16, className].filter(Boolean).join(" "),
|
|
2172
2222
|
[themeClass, className]
|
|
2173
2223
|
);
|
|
@@ -2175,27 +2225,27 @@ function useStyles21({ className }) {
|
|
|
2175
2225
|
}
|
|
2176
2226
|
|
|
2177
2227
|
// src/components/breadcrumbs/index.tsx
|
|
2178
|
-
import { jsx as
|
|
2179
|
-
var Breadcrumbs =
|
|
2180
|
-
const { root: root24, crumb: crumb2, current: current2, separator: separator2 } =
|
|
2228
|
+
import { jsx as jsx36, jsxs as jsxs21 } from "react/jsx-runtime";
|
|
2229
|
+
var Breadcrumbs = forwardRef24(function Breadcrumbs2({ items, className, testId, ...rest }, ref) {
|
|
2230
|
+
const { root: root24, crumb: crumb2, current: current2, separator: separator2 } = useStyles22({ className });
|
|
2181
2231
|
const { testId: dataTestId, slot } = useTestId("nav", testId);
|
|
2182
|
-
return /* @__PURE__ */
|
|
2232
|
+
return /* @__PURE__ */ jsx36("nav", { ref, "aria-label": "Breadcrumb", className: root24, "data-testid": dataTestId, ...rest, children: items.map((item3, index) => {
|
|
2183
2233
|
const isLast = index === items.length - 1;
|
|
2184
2234
|
const key = index;
|
|
2185
2235
|
return /* @__PURE__ */ jsxs21(Fragment, { children: [
|
|
2186
|
-
isLast ? /* @__PURE__ */
|
|
2187
|
-
!isLast && /* @__PURE__ */
|
|
2236
|
+
isLast ? /* @__PURE__ */ jsx36("span", { className: current2, "aria-current": "page", "data-testid": slot(`crumb-${index}`), children: item3.label }) : item3.href ? /* @__PURE__ */ jsx36("a", { className: crumb2, href: item3.href, "data-testid": slot(`crumb-${index}`), children: item3.label }) : /* @__PURE__ */ jsx36("span", { className: crumb2, "data-testid": slot(`crumb-${index}`), children: item3.label }),
|
|
2237
|
+
!isLast && /* @__PURE__ */ jsx36("span", { className: separator2, children: /* @__PURE__ */ jsx36(ChevronRightIcon, { size: 14 }) })
|
|
2188
2238
|
] }, key);
|
|
2189
2239
|
}) });
|
|
2190
2240
|
});
|
|
2191
2241
|
|
|
2192
2242
|
// src/components/pagination/index.tsx
|
|
2193
|
-
import { forwardRef as
|
|
2243
|
+
import { forwardRef as forwardRef25 } from "react";
|
|
2194
2244
|
|
|
2195
2245
|
// src/components/icons/chevron-left/index.tsx
|
|
2196
|
-
import { jsx as
|
|
2246
|
+
import { jsx as jsx37 } from "react/jsx-runtime";
|
|
2197
2247
|
function ChevronLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
2198
|
-
return /* @__PURE__ */
|
|
2248
|
+
return /* @__PURE__ */ jsx37(
|
|
2199
2249
|
"svg",
|
|
2200
2250
|
{
|
|
2201
2251
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2209,13 +2259,13 @@ function ChevronLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
2209
2259
|
strokeLinejoin: "round",
|
|
2210
2260
|
"aria-hidden": "true",
|
|
2211
2261
|
...rest,
|
|
2212
|
-
children: /* @__PURE__ */
|
|
2262
|
+
children: /* @__PURE__ */ jsx37("path", { d: "m15 18-6-6 6-6" })
|
|
2213
2263
|
}
|
|
2214
2264
|
);
|
|
2215
2265
|
}
|
|
2216
2266
|
|
|
2217
2267
|
// src/components/pagination/use-styles.ts
|
|
2218
|
-
import { useMemo as
|
|
2268
|
+
import { useMemo as useMemo27 } from "react";
|
|
2219
2269
|
|
|
2220
2270
|
// src/components/pagination/use-styles.css.ts
|
|
2221
2271
|
var ellipsis = "use-styles_ellipsis__1azgzoh3";
|
|
@@ -2225,9 +2275,9 @@ var pageBtn = "use-styles_pageBtn__1azgzoh1";
|
|
|
2225
2275
|
var root17 = "use-styles_root__1azgzoh0";
|
|
2226
2276
|
|
|
2227
2277
|
// src/components/pagination/use-styles.ts
|
|
2228
|
-
function
|
|
2278
|
+
function useStyles23() {
|
|
2229
2279
|
const { themeClass } = useTheme();
|
|
2230
|
-
return
|
|
2280
|
+
return useMemo27(
|
|
2231
2281
|
() => ({
|
|
2232
2282
|
root: [themeClass, root17].filter(Boolean).join(" "),
|
|
2233
2283
|
pageBtnFor: (active2) => [pageBtn, active2 && pageActive].filter(Boolean).join(" "),
|
|
@@ -2239,7 +2289,7 @@ function useStyles22() {
|
|
|
2239
2289
|
}
|
|
2240
2290
|
|
|
2241
2291
|
// src/components/pagination/index.tsx
|
|
2242
|
-
import { jsx as
|
|
2292
|
+
import { jsx as jsx38, jsxs as jsxs22 } from "react/jsx-runtime";
|
|
2243
2293
|
function buildItems(count, page, siblingCount) {
|
|
2244
2294
|
const total = Math.max(1, count);
|
|
2245
2295
|
const first = 1;
|
|
@@ -2253,15 +2303,15 @@ function buildItems(count, page, siblingCount) {
|
|
|
2253
2303
|
if (last > first) items.push(last);
|
|
2254
2304
|
return items;
|
|
2255
2305
|
}
|
|
2256
|
-
var Pagination =
|
|
2257
|
-
const { root: root24, pageBtnFor, ellipsis: ellipsis2, nav: nav2 } =
|
|
2306
|
+
var Pagination = forwardRef25(function Pagination2({ count, page = 1, onChange, siblingCount = 1, testId, ...rest }, ref) {
|
|
2307
|
+
const { root: root24, pageBtnFor, ellipsis: ellipsis2, nav: nav2 } = useStyles23();
|
|
2258
2308
|
const { testId: dataTestId, slot } = useTestId("nav", testId);
|
|
2259
2309
|
const total = Math.max(1, count);
|
|
2260
2310
|
const current2 = Math.min(Math.max(1, page), total);
|
|
2261
2311
|
const items = buildItems(total, current2, siblingCount);
|
|
2262
2312
|
const go = (n) => onChange?.(Math.min(Math.max(1, n), total));
|
|
2263
2313
|
return /* @__PURE__ */ jsxs22("nav", { ref, className: root24, "aria-label": "Pagination", "data-testid": dataTestId, ...rest, children: [
|
|
2264
|
-
/* @__PURE__ */
|
|
2314
|
+
/* @__PURE__ */ jsx38(
|
|
2265
2315
|
"button",
|
|
2266
2316
|
{
|
|
2267
2317
|
type: "button",
|
|
@@ -2270,11 +2320,11 @@ var Pagination = forwardRef24(function Pagination2({ count, page = 1, onChange,
|
|
|
2270
2320
|
disabled: current2 <= 1,
|
|
2271
2321
|
"data-testid": slot("prev"),
|
|
2272
2322
|
onClick: () => go(current2 - 1),
|
|
2273
|
-
children: /* @__PURE__ */
|
|
2323
|
+
children: /* @__PURE__ */ jsx38(ChevronLeftIcon, { size: 18 })
|
|
2274
2324
|
}
|
|
2275
2325
|
),
|
|
2276
2326
|
items.map(
|
|
2277
|
-
(item3, index) => item3 === "ellipsis" ? /* @__PURE__ */
|
|
2327
|
+
(item3, index) => item3 === "ellipsis" ? /* @__PURE__ */ jsx38(
|
|
2278
2328
|
"span",
|
|
2279
2329
|
{
|
|
2280
2330
|
className: ellipsis2,
|
|
@@ -2282,7 +2332,7 @@ var Pagination = forwardRef24(function Pagination2({ count, page = 1, onChange,
|
|
|
2282
2332
|
children: "\u2026"
|
|
2283
2333
|
},
|
|
2284
2334
|
`ellipsis-${index}`
|
|
2285
|
-
) : /* @__PURE__ */
|
|
2335
|
+
) : /* @__PURE__ */ jsx38(
|
|
2286
2336
|
"button",
|
|
2287
2337
|
{
|
|
2288
2338
|
type: "button",
|
|
@@ -2295,7 +2345,7 @@ var Pagination = forwardRef24(function Pagination2({ count, page = 1, onChange,
|
|
|
2295
2345
|
item3
|
|
2296
2346
|
)
|
|
2297
2347
|
),
|
|
2298
|
-
/* @__PURE__ */
|
|
2348
|
+
/* @__PURE__ */ jsx38(
|
|
2299
2349
|
"button",
|
|
2300
2350
|
{
|
|
2301
2351
|
type: "button",
|
|
@@ -2304,17 +2354,17 @@ var Pagination = forwardRef24(function Pagination2({ count, page = 1, onChange,
|
|
|
2304
2354
|
disabled: current2 >= total,
|
|
2305
2355
|
"data-testid": slot("next"),
|
|
2306
2356
|
onClick: () => go(current2 + 1),
|
|
2307
|
-
children: /* @__PURE__ */
|
|
2357
|
+
children: /* @__PURE__ */ jsx38(ChevronRightIcon, { size: 18 })
|
|
2308
2358
|
}
|
|
2309
2359
|
)
|
|
2310
2360
|
] });
|
|
2311
2361
|
});
|
|
2312
2362
|
|
|
2313
2363
|
// src/components/stepper/index.tsx
|
|
2314
|
-
import { Fragment as Fragment2, forwardRef as
|
|
2364
|
+
import { Fragment as Fragment2, forwardRef as forwardRef26 } from "react";
|
|
2315
2365
|
|
|
2316
2366
|
// src/components/stepper/use-styles.ts
|
|
2317
|
-
import { useMemo as
|
|
2367
|
+
import { useMemo as useMemo28 } from "react";
|
|
2318
2368
|
|
|
2319
2369
|
// src/components/stepper/use-styles.css.ts
|
|
2320
2370
|
var connector = "use-styles_connector__79pt4e7";
|
|
@@ -2327,9 +2377,9 @@ var root18 = "use-styles_root__79pt4e0";
|
|
|
2327
2377
|
var step = "use-styles_step__79pt4e1";
|
|
2328
2378
|
|
|
2329
2379
|
// src/components/stepper/use-styles.ts
|
|
2330
|
-
function
|
|
2380
|
+
function useStyles24({ className }) {
|
|
2331
2381
|
const { themeClass } = useTheme();
|
|
2332
|
-
return
|
|
2382
|
+
return useMemo28(() => {
|
|
2333
2383
|
const root24 = [themeClass, root18, className].filter(Boolean).join(" ");
|
|
2334
2384
|
const markerFor = (state) => [
|
|
2335
2385
|
marker,
|
|
@@ -2342,11 +2392,11 @@ function useStyles23({ className }) {
|
|
|
2342
2392
|
}
|
|
2343
2393
|
|
|
2344
2394
|
// src/components/stepper/index.tsx
|
|
2345
|
-
import { jsx as
|
|
2346
|
-
var Stepper =
|
|
2347
|
-
const { root: root24, step: step2, connector: connector2, markerFor, labelFor } =
|
|
2395
|
+
import { jsx as jsx39, jsxs as jsxs23 } from "react/jsx-runtime";
|
|
2396
|
+
var Stepper = forwardRef26(function Stepper2({ steps, active: active2 = 0, className, testId, ...rest }, ref) {
|
|
2397
|
+
const { root: root24, step: step2, connector: connector2, markerFor, labelFor } = useStyles24({ className });
|
|
2348
2398
|
const { testId: dataTestId, slot } = useTestId("nav", testId);
|
|
2349
|
-
return /* @__PURE__ */
|
|
2399
|
+
return /* @__PURE__ */ jsx39("div", { ref, className: root24, "data-testid": dataTestId, ...rest, children: steps.map((s, index) => {
|
|
2350
2400
|
const state = index < active2 ? "done" : index === active2 ? "active" : "upcoming";
|
|
2351
2401
|
const isActive = state === "active";
|
|
2352
2402
|
return (
|
|
@@ -2360,22 +2410,22 @@ var Stepper = forwardRef25(function Stepper2({ steps, active: active2 = 0, class
|
|
|
2360
2410
|
"data-testid": slot(`step-${index}`),
|
|
2361
2411
|
"data-state": states({ done: state === "done", active: isActive }),
|
|
2362
2412
|
children: [
|
|
2363
|
-
/* @__PURE__ */
|
|
2364
|
-
/* @__PURE__ */
|
|
2413
|
+
/* @__PURE__ */ jsx39("span", { className: markerFor(state), children: state === "done" ? /* @__PURE__ */ jsx39(CheckIcon, { size: 14 }) : index + 1 }),
|
|
2414
|
+
/* @__PURE__ */ jsx39("span", { className: labelFor(isActive), children: s.label })
|
|
2365
2415
|
]
|
|
2366
2416
|
}
|
|
2367
2417
|
),
|
|
2368
|
-
index < steps.length - 1 && /* @__PURE__ */
|
|
2418
|
+
index < steps.length - 1 && /* @__PURE__ */ jsx39("span", { "data-part": "connector", className: connector2 })
|
|
2369
2419
|
] }, index)
|
|
2370
2420
|
);
|
|
2371
2421
|
}) });
|
|
2372
2422
|
});
|
|
2373
2423
|
|
|
2374
2424
|
// src/components/tabs/index.tsx
|
|
2375
|
-
import { forwardRef as
|
|
2425
|
+
import { forwardRef as forwardRef27, useId as useId4, useRef as useRef4 } from "react";
|
|
2376
2426
|
|
|
2377
2427
|
// src/components/tabs/use-styles.ts
|
|
2378
|
-
import { useMemo as
|
|
2428
|
+
import { useMemo as useMemo29 } from "react";
|
|
2379
2429
|
|
|
2380
2430
|
// src/components/tabs/use-styles.css.ts
|
|
2381
2431
|
var panel2 = "use-styles_panel__1l4m7t43";
|
|
@@ -2384,9 +2434,9 @@ var tab = "use-styles_tab__1l4m7t41";
|
|
|
2384
2434
|
var tabActive = "use-styles_tabActive__1l4m7t42";
|
|
2385
2435
|
|
|
2386
2436
|
// src/components/tabs/use-styles.ts
|
|
2387
|
-
function
|
|
2437
|
+
function useStyles25() {
|
|
2388
2438
|
const { themeClass } = useTheme();
|
|
2389
|
-
return
|
|
2439
|
+
return useMemo29(() => {
|
|
2390
2440
|
const root24 = [themeClass, root19].filter(Boolean).join(" ");
|
|
2391
2441
|
const tabClass = (active2) => [tab, active2 && tabActive].filter(Boolean).join(" ");
|
|
2392
2442
|
return { root: root24, tab, tabClass, panel: panel2 };
|
|
@@ -2394,10 +2444,10 @@ function useStyles24() {
|
|
|
2394
2444
|
}
|
|
2395
2445
|
|
|
2396
2446
|
// src/components/tabs/index.tsx
|
|
2397
|
-
import { Fragment as Fragment3, jsx as
|
|
2447
|
+
import { Fragment as Fragment3, jsx as jsx40, jsxs as jsxs24 } from "react/jsx-runtime";
|
|
2398
2448
|
var ICON_SIZE3 = 16;
|
|
2399
|
-
var Tabs =
|
|
2400
|
-
const { root: root24, tabClass, panel: panel3 } =
|
|
2449
|
+
var Tabs = forwardRef27(function Tabs2({ items, value, onChange, testId, ...rest }, ref) {
|
|
2450
|
+
const { root: root24, tabClass, panel: panel3 } = useStyles25();
|
|
2401
2451
|
const { testId: dataTestId, slot } = useTestId("nav", testId);
|
|
2402
2452
|
const baseId = useId4();
|
|
2403
2453
|
const tabRefs = useRef4([]);
|
|
@@ -2433,7 +2483,7 @@ var Tabs = forwardRef26(function Tabs2({ items, value, onChange, testId, ...rest
|
|
|
2433
2483
|
}
|
|
2434
2484
|
};
|
|
2435
2485
|
return /* @__PURE__ */ jsxs24(Fragment3, { children: [
|
|
2436
|
-
/* @__PURE__ */
|
|
2486
|
+
/* @__PURE__ */ jsx40("div", { ref, role: "tablist", className: root24, "data-testid": dataTestId, ...rest, children: items.map((item3, index) => {
|
|
2437
2487
|
const active2 = item3.value === value;
|
|
2438
2488
|
const tabbable = active2 || activeIndex === -1 && index === 0;
|
|
2439
2489
|
const ItemIcon = item3.icon;
|
|
@@ -2455,14 +2505,14 @@ var Tabs = forwardRef26(function Tabs2({ items, value, onChange, testId, ...rest
|
|
|
2455
2505
|
onClick: () => onChange?.(item3.value),
|
|
2456
2506
|
onKeyDown: (event) => onKeyDown(event, index),
|
|
2457
2507
|
children: [
|
|
2458
|
-
ItemIcon ? /* @__PURE__ */
|
|
2508
|
+
ItemIcon ? /* @__PURE__ */ jsx40(ItemIcon, { size: ICON_SIZE3 }) : null,
|
|
2459
2509
|
item3.label
|
|
2460
2510
|
]
|
|
2461
2511
|
},
|
|
2462
2512
|
item3.value
|
|
2463
2513
|
);
|
|
2464
2514
|
}) }),
|
|
2465
|
-
hasPanels && items.map((item3) => /* @__PURE__ */
|
|
2515
|
+
hasPanels && items.map((item3) => /* @__PURE__ */ jsx40(
|
|
2466
2516
|
"div",
|
|
2467
2517
|
{
|
|
2468
2518
|
role: "tabpanel",
|
|
@@ -2482,15 +2532,15 @@ var Tabs = forwardRef26(function Tabs2({ items, value, onChange, testId, ...rest
|
|
|
2482
2532
|
// src/components/menu/index.tsx
|
|
2483
2533
|
import {
|
|
2484
2534
|
cloneElement as cloneElement2,
|
|
2485
|
-
forwardRef as
|
|
2486
|
-
useEffect as
|
|
2535
|
+
forwardRef as forwardRef28,
|
|
2536
|
+
useEffect as useEffect6,
|
|
2487
2537
|
useLayoutEffect,
|
|
2488
2538
|
useRef as useRef5,
|
|
2489
2539
|
useState as useState8
|
|
2490
2540
|
} from "react";
|
|
2491
2541
|
|
|
2492
2542
|
// src/components/menu/use-styles.ts
|
|
2493
|
-
import { useMemo as
|
|
2543
|
+
import { useMemo as useMemo30 } from "react";
|
|
2494
2544
|
|
|
2495
2545
|
// src/components/menu/use-styles.css.ts
|
|
2496
2546
|
var danger = "use-styles_danger__1uyxaj3";
|
|
@@ -2499,9 +2549,9 @@ var list = "use-styles_list__1uyxaj1 surfaces_panelSurface__1qa7atn1";
|
|
|
2499
2549
|
var wrapper3 = "use-styles_wrapper__1uyxaj0";
|
|
2500
2550
|
|
|
2501
2551
|
// src/components/menu/use-styles.ts
|
|
2502
|
-
function
|
|
2552
|
+
function useStyles26() {
|
|
2503
2553
|
const { themeClass } = useTheme();
|
|
2504
|
-
return
|
|
2554
|
+
return useMemo30(
|
|
2505
2555
|
() => ({
|
|
2506
2556
|
wrapper: [themeClass, wrapper3].filter(Boolean).join(" "),
|
|
2507
2557
|
list,
|
|
@@ -2513,14 +2563,14 @@ function useStyles25() {
|
|
|
2513
2563
|
}
|
|
2514
2564
|
|
|
2515
2565
|
// src/components/menu/index.tsx
|
|
2516
|
-
import { jsx as
|
|
2566
|
+
import { jsx as jsx41, jsxs as jsxs25 } from "react/jsx-runtime";
|
|
2517
2567
|
var ICON_SIZE4 = 16;
|
|
2518
2568
|
function assignRef(ref, value) {
|
|
2519
2569
|
if (typeof ref === "function") ref(value);
|
|
2520
2570
|
else if (ref) ref.current = value;
|
|
2521
2571
|
}
|
|
2522
|
-
var Menu =
|
|
2523
|
-
const { wrapper: wrapper4, list: list2, item: item3, dangerItem } =
|
|
2572
|
+
var Menu = forwardRef28(function Menu2({ trigger: trigger2, items, testId }, ref) {
|
|
2573
|
+
const { wrapper: wrapper4, list: list2, item: item3, dangerItem } = useStyles26();
|
|
2524
2574
|
const { testId: rootTestId, slot } = useTestId("menu", testId);
|
|
2525
2575
|
const [open, setOpen] = useState8(false);
|
|
2526
2576
|
const [alignEnd, setAlignEnd] = useState8(false);
|
|
@@ -2554,7 +2604,7 @@ var Menu = forwardRef27(function Menu2({ trigger: trigger2, items, testId }, ref
|
|
|
2554
2604
|
const viewport = document.documentElement.clientWidth;
|
|
2555
2605
|
setAlignEnd(rootLeft + listEl.offsetWidth > viewport);
|
|
2556
2606
|
}, [open]);
|
|
2557
|
-
|
|
2607
|
+
useEffect6(() => {
|
|
2558
2608
|
if (!open) return;
|
|
2559
2609
|
listRef.current?.querySelector('[role="menuitem"]')?.focus();
|
|
2560
2610
|
const onDocMouseDown = (event) => {
|
|
@@ -2628,7 +2678,7 @@ var Menu = forwardRef27(function Menu2({ trigger: trigger2, items, testId }, ref
|
|
|
2628
2678
|
"data-state": open ? "open" : "closed",
|
|
2629
2679
|
children: [
|
|
2630
2680
|
clonedTrigger,
|
|
2631
|
-
open && /* @__PURE__ */
|
|
2681
|
+
open && /* @__PURE__ */ jsx41(
|
|
2632
2682
|
"div",
|
|
2633
2683
|
{
|
|
2634
2684
|
ref: listRef,
|
|
@@ -2652,7 +2702,7 @@ var Menu = forwardRef27(function Menu2({ trigger: trigger2, items, testId }, ref
|
|
|
2652
2702
|
setOpen(false);
|
|
2653
2703
|
},
|
|
2654
2704
|
children: [
|
|
2655
|
-
ItemIcon ? /* @__PURE__ */
|
|
2705
|
+
ItemIcon ? /* @__PURE__ */ jsx41(ItemIcon, { size: ICON_SIZE4 }) : null,
|
|
2656
2706
|
entry.label
|
|
2657
2707
|
]
|
|
2658
2708
|
},
|
|
@@ -2668,29 +2718,29 @@ var Menu = forwardRef27(function Menu2({ trigger: trigger2, items, testId }, ref
|
|
|
2668
2718
|
|
|
2669
2719
|
// src/components/dialog/index.tsx
|
|
2670
2720
|
import {
|
|
2671
|
-
forwardRef as
|
|
2672
|
-
useEffect as
|
|
2721
|
+
forwardRef as forwardRef29,
|
|
2722
|
+
useEffect as useEffect7,
|
|
2673
2723
|
useId as useId5,
|
|
2674
2724
|
useRef as useRef6
|
|
2675
2725
|
} from "react";
|
|
2676
2726
|
import { createPortal } from "react-dom";
|
|
2677
2727
|
|
|
2678
2728
|
// src/components/dialog/use-styles.ts
|
|
2679
|
-
import { useMemo as
|
|
2729
|
+
import { useMemo as useMemo31 } from "react";
|
|
2680
2730
|
|
|
2681
2731
|
// src/components/dialog/use-styles.css.ts
|
|
2682
2732
|
var actions = "use-styles_actions__5tstu83";
|
|
2683
2733
|
var body2 = "use-styles_body__5tstu82";
|
|
2684
2734
|
var overlay = "use-styles_overlay__5tstu80";
|
|
2685
|
-
var
|
|
2735
|
+
var surface2 = "use-styles_surface__5tstu81";
|
|
2686
2736
|
|
|
2687
2737
|
// src/components/dialog/use-styles.ts
|
|
2688
|
-
function
|
|
2738
|
+
function useStyles27() {
|
|
2689
2739
|
const { themeClass } = useTheme();
|
|
2690
|
-
return
|
|
2740
|
+
return useMemo31(
|
|
2691
2741
|
() => ({
|
|
2692
2742
|
overlay: [themeClass, overlay].filter(Boolean).join(" "),
|
|
2693
|
-
surface,
|
|
2743
|
+
surface: surface2,
|
|
2694
2744
|
body: body2,
|
|
2695
2745
|
actions
|
|
2696
2746
|
}),
|
|
@@ -2699,14 +2749,14 @@ function useStyles26() {
|
|
|
2699
2749
|
}
|
|
2700
2750
|
|
|
2701
2751
|
// src/components/dialog/index.tsx
|
|
2702
|
-
import { jsx as
|
|
2752
|
+
import { jsx as jsx42, jsxs as jsxs26 } from "react/jsx-runtime";
|
|
2703
2753
|
var FOCUSABLE = 'a[href], button:not([disabled]), textarea:not([disabled]), input:not([disabled]), select:not([disabled]), [tabindex]:not([tabindex="-1"])';
|
|
2704
2754
|
function assignRef2(ref, value) {
|
|
2705
2755
|
if (typeof ref === "function") ref(value);
|
|
2706
2756
|
else if (ref) ref.current = value;
|
|
2707
2757
|
}
|
|
2708
|
-
var Dialog =
|
|
2709
|
-
const { overlay: overlay2, surface:
|
|
2758
|
+
var Dialog = forwardRef29(function Dialog2({ open, onClose, title, actions: actions3, children, testId }, ref) {
|
|
2759
|
+
const { overlay: overlay2, surface: surface3, body: body3, actions: actionsClass } = useStyles27();
|
|
2710
2760
|
const { testId: rootTestId, slot } = useTestId("dialog", testId);
|
|
2711
2761
|
const surfaceRef = useRef6(null);
|
|
2712
2762
|
const setSurfaceRef = (node) => {
|
|
@@ -2716,7 +2766,7 @@ var Dialog = forwardRef28(function Dialog2({ open, onClose, title, actions: acti
|
|
|
2716
2766
|
const previouslyFocused = useRef6(null);
|
|
2717
2767
|
const generatedId = useId5();
|
|
2718
2768
|
const titleId = title != null ? generatedId : void 0;
|
|
2719
|
-
|
|
2769
|
+
useEffect7(() => {
|
|
2720
2770
|
if (!open) return;
|
|
2721
2771
|
const onKeyDown = (event) => {
|
|
2722
2772
|
if (event.key === "Escape") onClose();
|
|
@@ -2724,13 +2774,13 @@ var Dialog = forwardRef28(function Dialog2({ open, onClose, title, actions: acti
|
|
|
2724
2774
|
document.addEventListener("keydown", onKeyDown);
|
|
2725
2775
|
return () => document.removeEventListener("keydown", onKeyDown);
|
|
2726
2776
|
}, [open, onClose]);
|
|
2727
|
-
|
|
2777
|
+
useEffect7(() => {
|
|
2728
2778
|
if (!open) return;
|
|
2729
2779
|
previouslyFocused.current = document.activeElement;
|
|
2730
2780
|
surfaceRef.current?.focus();
|
|
2731
2781
|
return () => previouslyFocused.current?.focus?.();
|
|
2732
2782
|
}, [open]);
|
|
2733
|
-
|
|
2783
|
+
useEffect7(() => {
|
|
2734
2784
|
if (!open) return;
|
|
2735
2785
|
const previousOverflow = document.body.style.overflow;
|
|
2736
2786
|
document.body.style.overflow = "hidden";
|
|
@@ -2768,11 +2818,11 @@ var Dialog = forwardRef28(function Dialog2({ open, onClose, title, actions: acti
|
|
|
2768
2818
|
};
|
|
2769
2819
|
return createPortal(
|
|
2770
2820
|
// biome-ignore lint/a11y/useKeyWithClickEvents: ESC handled by a document keydown listener.
|
|
2771
|
-
/* @__PURE__ */
|
|
2821
|
+
/* @__PURE__ */ jsx42("div", { className: overlay2, "data-testid": slot("overlay"), onClick: onClose, children: /* @__PURE__ */ jsxs26(
|
|
2772
2822
|
"div",
|
|
2773
2823
|
{
|
|
2774
2824
|
ref: setSurfaceRef,
|
|
2775
|
-
className:
|
|
2825
|
+
className: surface3,
|
|
2776
2826
|
role: "dialog",
|
|
2777
2827
|
"aria-modal": "true",
|
|
2778
2828
|
"aria-labelledby": titleId,
|
|
@@ -2781,9 +2831,9 @@ var Dialog = forwardRef28(function Dialog2({ open, onClose, title, actions: acti
|
|
|
2781
2831
|
onClick: stop,
|
|
2782
2832
|
onKeyDown: onSurfaceKeyDown,
|
|
2783
2833
|
children: [
|
|
2784
|
-
title != null && /* @__PURE__ */
|
|
2785
|
-
children != null && /* @__PURE__ */
|
|
2786
|
-
actions3 != null && /* @__PURE__ */
|
|
2834
|
+
title != null && /* @__PURE__ */ jsx42(Typography, { variant: "h3", as: "h2", id: titleId, children: title }),
|
|
2835
|
+
children != null && /* @__PURE__ */ jsx42("div", { className: body3, children: /* @__PURE__ */ jsx42(Typography, { variant: "body", color: "fg2", children }) }),
|
|
2836
|
+
actions3 != null && /* @__PURE__ */ jsx42("div", { className: actionsClass, children: actions3 })
|
|
2787
2837
|
]
|
|
2788
2838
|
}
|
|
2789
2839
|
) }),
|
|
@@ -2792,11 +2842,11 @@ var Dialog = forwardRef28(function Dialog2({ open, onClose, title, actions: acti
|
|
|
2792
2842
|
});
|
|
2793
2843
|
|
|
2794
2844
|
// src/components/snackbar/index.tsx
|
|
2795
|
-
import { forwardRef as
|
|
2845
|
+
import { forwardRef as forwardRef30 } from "react";
|
|
2796
2846
|
import { createPortal as createPortal2 } from "react-dom";
|
|
2797
2847
|
|
|
2798
2848
|
// src/components/snackbar/use-styles.ts
|
|
2799
|
-
import { useMemo as
|
|
2849
|
+
import { useMemo as useMemo32 } from "react";
|
|
2800
2850
|
|
|
2801
2851
|
// src/components/snackbar/use-styles.css.ts
|
|
2802
2852
|
var closeBtn = "use-styles_closeBtn__ihzsep2";
|
|
@@ -2804,9 +2854,9 @@ var message = "use-styles_message__ihzsep1";
|
|
|
2804
2854
|
var root20 = "use-styles_root__ihzsep0 surfaces_inkySurface__1qa7atn2";
|
|
2805
2855
|
|
|
2806
2856
|
// src/components/snackbar/use-styles.ts
|
|
2807
|
-
function
|
|
2857
|
+
function useStyles28() {
|
|
2808
2858
|
const { themeClass } = useTheme();
|
|
2809
|
-
return
|
|
2859
|
+
return useMemo32(
|
|
2810
2860
|
() => ({
|
|
2811
2861
|
root: [themeClass, root20].filter(Boolean).join(" "),
|
|
2812
2862
|
message,
|
|
@@ -2817,16 +2867,16 @@ function useStyles27() {
|
|
|
2817
2867
|
}
|
|
2818
2868
|
|
|
2819
2869
|
// src/components/snackbar/index.tsx
|
|
2820
|
-
import { jsx as
|
|
2821
|
-
var Snackbar =
|
|
2822
|
-
const { root: root24, message: messageClass, closeBtn: closeBtn2 } =
|
|
2870
|
+
import { jsx as jsx43, jsxs as jsxs27 } from "react/jsx-runtime";
|
|
2871
|
+
var Snackbar = forwardRef30(function Snackbar2({ open, message: message2, action, onClose, testId }, ref) {
|
|
2872
|
+
const { root: root24, message: messageClass, closeBtn: closeBtn2 } = useStyles28();
|
|
2823
2873
|
const { testId: dataTestId, slot } = useTestId("feedback", testId);
|
|
2824
2874
|
if (!open || typeof document === "undefined") return null;
|
|
2825
2875
|
return createPortal2(
|
|
2826
2876
|
/* @__PURE__ */ jsxs27("div", { ref, role: "status", className: root24, "data-testid": dataTestId, children: [
|
|
2827
|
-
/* @__PURE__ */
|
|
2877
|
+
/* @__PURE__ */ jsx43("span", { className: messageClass, "data-testid": slot("message"), children: message2 }),
|
|
2828
2878
|
action,
|
|
2829
|
-
onClose && /* @__PURE__ */
|
|
2879
|
+
onClose && /* @__PURE__ */ jsx43(
|
|
2830
2880
|
"button",
|
|
2831
2881
|
{
|
|
2832
2882
|
type: "button",
|
|
@@ -2834,7 +2884,7 @@ var Snackbar = forwardRef29(function Snackbar2({ open, message: message2, action
|
|
|
2834
2884
|
className: closeBtn2,
|
|
2835
2885
|
"data-testid": slot("close"),
|
|
2836
2886
|
onClick: onClose,
|
|
2837
|
-
children: /* @__PURE__ */
|
|
2887
|
+
children: /* @__PURE__ */ jsx43(XIcon, { size: 18 })
|
|
2838
2888
|
}
|
|
2839
2889
|
)
|
|
2840
2890
|
] }),
|
|
@@ -2843,10 +2893,10 @@ var Snackbar = forwardRef29(function Snackbar2({ open, message: message2, action
|
|
|
2843
2893
|
});
|
|
2844
2894
|
|
|
2845
2895
|
// src/components/table/index.tsx
|
|
2846
|
-
import { forwardRef as
|
|
2896
|
+
import { forwardRef as forwardRef31 } from "react";
|
|
2847
2897
|
|
|
2848
2898
|
// src/components/table/use-styles.ts
|
|
2849
|
-
import { useMemo as
|
|
2899
|
+
import { useMemo as useMemo33 } from "react";
|
|
2850
2900
|
|
|
2851
2901
|
// src/components/table/use-styles.css.ts
|
|
2852
2902
|
var alignRight = "use-styles_alignRight__1n2cz6i3";
|
|
@@ -2856,9 +2906,9 @@ var td = "use-styles_td__1n2cz6i2";
|
|
|
2856
2906
|
var th = "use-styles_th__1n2cz6i1";
|
|
2857
2907
|
|
|
2858
2908
|
// src/components/table/use-styles.ts
|
|
2859
|
-
function
|
|
2909
|
+
function useStyles29({ className }) {
|
|
2860
2910
|
const { themeClass } = useTheme();
|
|
2861
|
-
const root24 =
|
|
2911
|
+
const root24 = useMemo33(
|
|
2862
2912
|
() => [themeClass, root21, className].filter(Boolean).join(" "),
|
|
2863
2913
|
[themeClass, className]
|
|
2864
2914
|
);
|
|
@@ -2872,27 +2922,27 @@ function useStyles28({ className }) {
|
|
|
2872
2922
|
}
|
|
2873
2923
|
|
|
2874
2924
|
// src/components/table/index.tsx
|
|
2875
|
-
import { jsx as
|
|
2925
|
+
import { jsx as jsx44, jsxs as jsxs28 } from "react/jsx-runtime";
|
|
2876
2926
|
function TableInner({ columns, rows, getRowKey, className, caption: caption2, testId, ...rest }, ref) {
|
|
2877
|
-
const { root: root24, th: th2, td: td2, alignRight: alignRight2, caption: captionClass } =
|
|
2927
|
+
const { root: root24, th: th2, td: td2, alignRight: alignRight2, caption: captionClass } = useStyles29({ className });
|
|
2878
2928
|
const { testId: dataTestId, slot } = useTestId("list", testId);
|
|
2879
2929
|
const headClass = (column) => column.align === "right" ? `${th2} ${alignRight2}` : th2;
|
|
2880
2930
|
const cellClass = (column) => column.align === "right" ? `${td2} ${alignRight2}` : td2;
|
|
2881
2931
|
return /* @__PURE__ */ jsxs28("table", { ref, className: root24, "data-testid": dataTestId, ...rest, children: [
|
|
2882
|
-
caption2 != null && /* @__PURE__ */
|
|
2883
|
-
/* @__PURE__ */
|
|
2884
|
-
/* @__PURE__ */
|
|
2932
|
+
caption2 != null && /* @__PURE__ */ jsx44("caption", { className: captionClass, children: caption2 }),
|
|
2933
|
+
/* @__PURE__ */ jsx44("thead", { children: /* @__PURE__ */ jsx44("tr", { children: columns.map((column) => /* @__PURE__ */ jsx44("th", { scope: "col", className: headClass(column), children: column.header }, column.key)) }) }),
|
|
2934
|
+
/* @__PURE__ */ jsx44("tbody", { children: rows.map((row, index) => /* @__PURE__ */ jsx44("tr", { "data-testid": slot(`row-${index}`), children: columns.map((column) => /* @__PURE__ */ jsx44("td", { className: cellClass(column), children: column.render ? column.render(row) : String(row[column.key]) }, column.key)) }, getRowKey ? getRowKey(row, index) : index)) })
|
|
2885
2935
|
] });
|
|
2886
2936
|
}
|
|
2887
|
-
var TableForwarded =
|
|
2937
|
+
var TableForwarded = forwardRef31(TableInner);
|
|
2888
2938
|
TableForwarded.displayName = "Table";
|
|
2889
2939
|
var Table = TableForwarded;
|
|
2890
2940
|
|
|
2891
2941
|
// src/components/app-bar/index.tsx
|
|
2892
|
-
import { forwardRef as
|
|
2942
|
+
import { forwardRef as forwardRef32 } from "react";
|
|
2893
2943
|
|
|
2894
2944
|
// src/components/app-bar/use-styles.ts
|
|
2895
|
-
import { useMemo as
|
|
2945
|
+
import { useMemo as useMemo34 } from "react";
|
|
2896
2946
|
|
|
2897
2947
|
// src/components/app-bar/use-styles.css.ts
|
|
2898
2948
|
var actions2 = "use-styles_actions__1h133nh2";
|
|
@@ -2900,9 +2950,9 @@ var brand = "use-styles_brand__1h133nh1";
|
|
|
2900
2950
|
var root22 = "use-styles_root__1h133nh0";
|
|
2901
2951
|
|
|
2902
2952
|
// src/components/app-bar/use-styles.ts
|
|
2903
|
-
function
|
|
2953
|
+
function useStyles30({ className }) {
|
|
2904
2954
|
const { themeClass } = useTheme();
|
|
2905
|
-
const root24 =
|
|
2955
|
+
const root24 = useMemo34(
|
|
2906
2956
|
() => [themeClass, root22, className].filter(Boolean).join(" "),
|
|
2907
2957
|
[themeClass, className]
|
|
2908
2958
|
);
|
|
@@ -2910,22 +2960,22 @@ function useStyles29({ className }) {
|
|
|
2910
2960
|
}
|
|
2911
2961
|
|
|
2912
2962
|
// src/components/app-bar/index.tsx
|
|
2913
|
-
import { jsx as
|
|
2914
|
-
var AppBar =
|
|
2915
|
-
const styles =
|
|
2963
|
+
import { jsx as jsx45, jsxs as jsxs29 } from "react/jsx-runtime";
|
|
2964
|
+
var AppBar = forwardRef32(function AppBar2({ brand: brand2, actions: actions3, className, children, testId, ...rest }, ref) {
|
|
2965
|
+
const styles = useStyles30({ className });
|
|
2916
2966
|
const { testId: dataTestId, slot } = useTestId("nav", testId);
|
|
2917
2967
|
return /* @__PURE__ */ jsxs29("header", { ref, className: styles.root, "data-testid": dataTestId, ...rest, children: [
|
|
2918
|
-
brand2 !== void 0 ? /* @__PURE__ */
|
|
2968
|
+
brand2 !== void 0 ? /* @__PURE__ */ jsx45("div", { className: styles.brand, "data-testid": slot("brand"), children: brand2 }) : null,
|
|
2919
2969
|
children,
|
|
2920
|
-
actions3 !== void 0 ? /* @__PURE__ */
|
|
2970
|
+
actions3 !== void 0 ? /* @__PURE__ */ jsx45("div", { className: styles.actions, "data-testid": slot("actions"), children: actions3 }) : null
|
|
2921
2971
|
] });
|
|
2922
2972
|
});
|
|
2923
2973
|
|
|
2924
2974
|
// src/components/list-item/index.tsx
|
|
2925
|
-
import { forwardRef as
|
|
2975
|
+
import { forwardRef as forwardRef33 } from "react";
|
|
2926
2976
|
|
|
2927
2977
|
// src/components/list-item/use-styles.ts
|
|
2928
|
-
import { useMemo as
|
|
2978
|
+
import { useMemo as useMemo35 } from "react";
|
|
2929
2979
|
|
|
2930
2980
|
// src/components/list-item/use-styles.css.ts
|
|
2931
2981
|
var content2 = "use-styles_content__kbreq13";
|
|
@@ -2935,12 +2985,12 @@ var selected2 = "use-styles_selected__kbreq11";
|
|
|
2935
2985
|
var trailing = "use-styles_trailing__kbreq14";
|
|
2936
2986
|
|
|
2937
2987
|
// src/components/list-item/use-styles.ts
|
|
2938
|
-
function
|
|
2988
|
+
function useStyles31({
|
|
2939
2989
|
selected: selected3,
|
|
2940
2990
|
className
|
|
2941
2991
|
}) {
|
|
2942
2992
|
const { themeClass } = useTheme();
|
|
2943
|
-
const root24 =
|
|
2993
|
+
const root24 = useMemo35(
|
|
2944
2994
|
() => [themeClass, root23, selected3 && selected2, className].filter(Boolean).join(" "),
|
|
2945
2995
|
[themeClass, selected3, className]
|
|
2946
2996
|
);
|
|
@@ -2948,9 +2998,9 @@ function useStyles30({
|
|
|
2948
2998
|
}
|
|
2949
2999
|
|
|
2950
3000
|
// src/components/list-item/index.tsx
|
|
2951
|
-
import { jsx as
|
|
2952
|
-
var ListItem =
|
|
2953
|
-
const styles =
|
|
3001
|
+
import { jsx as jsx46, jsxs as jsxs30 } from "react/jsx-runtime";
|
|
3002
|
+
var ListItem = forwardRef33(function ListItem2({ leading: leading2, trailing: trailing2, selected: selected3, className, testId, children, ...rest }, ref) {
|
|
3003
|
+
const styles = useStyles31({ selected: selected3, className });
|
|
2954
3004
|
const { testId: dataTestId, slot } = useTestId("list", testId);
|
|
2955
3005
|
return /* @__PURE__ */ jsxs30(
|
|
2956
3006
|
"div",
|
|
@@ -2961,16 +3011,16 @@ var ListItem = forwardRef32(function ListItem2({ leading: leading2, trailing: tr
|
|
|
2961
3011
|
"data-state": states({ selected: selected3 }),
|
|
2962
3012
|
...rest,
|
|
2963
3013
|
children: [
|
|
2964
|
-
leading2 != null && /* @__PURE__ */
|
|
2965
|
-
/* @__PURE__ */
|
|
2966
|
-
trailing2 != null && /* @__PURE__ */
|
|
3014
|
+
leading2 != null && /* @__PURE__ */ jsx46("span", { className: styles.leading, "data-testid": slot("leading"), children: leading2 }),
|
|
3015
|
+
/* @__PURE__ */ jsx46("span", { className: styles.content, "data-testid": slot("content"), children }),
|
|
3016
|
+
trailing2 != null && /* @__PURE__ */ jsx46("span", { className: styles.trailing, "data-testid": slot("trailing"), children: trailing2 })
|
|
2967
3017
|
]
|
|
2968
3018
|
}
|
|
2969
3019
|
);
|
|
2970
3020
|
});
|
|
2971
3021
|
|
|
2972
3022
|
// src/components/icons/alert-circle/index.tsx
|
|
2973
|
-
import { jsx as
|
|
3023
|
+
import { jsx as jsx47, jsxs as jsxs31 } from "react/jsx-runtime";
|
|
2974
3024
|
function AlertCircleIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
2975
3025
|
return /* @__PURE__ */ jsxs31(
|
|
2976
3026
|
"svg",
|
|
@@ -2987,16 +3037,16 @@ function AlertCircleIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
2987
3037
|
"aria-hidden": "true",
|
|
2988
3038
|
...rest,
|
|
2989
3039
|
children: [
|
|
2990
|
-
/* @__PURE__ */
|
|
2991
|
-
/* @__PURE__ */
|
|
2992
|
-
/* @__PURE__ */
|
|
3040
|
+
/* @__PURE__ */ jsx47("circle", { cx: "12", cy: "12", r: "10" }),
|
|
3041
|
+
/* @__PURE__ */ jsx47("line", { x1: "12", x2: "12", y1: "8", y2: "12" }),
|
|
3042
|
+
/* @__PURE__ */ jsx47("line", { x1: "12", x2: "12.01", y1: "16", y2: "16" })
|
|
2993
3043
|
]
|
|
2994
3044
|
}
|
|
2995
3045
|
);
|
|
2996
3046
|
}
|
|
2997
3047
|
|
|
2998
3048
|
// src/components/icons/archive/index.tsx
|
|
2999
|
-
import { jsx as
|
|
3049
|
+
import { jsx as jsx48, jsxs as jsxs32 } from "react/jsx-runtime";
|
|
3000
3050
|
function ArchiveIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3001
3051
|
return /* @__PURE__ */ jsxs32(
|
|
3002
3052
|
"svg",
|
|
@@ -3013,16 +3063,16 @@ function ArchiveIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3013
3063
|
"aria-hidden": "true",
|
|
3014
3064
|
...rest,
|
|
3015
3065
|
children: [
|
|
3016
|
-
/* @__PURE__ */
|
|
3017
|
-
/* @__PURE__ */
|
|
3018
|
-
/* @__PURE__ */
|
|
3066
|
+
/* @__PURE__ */ jsx48("rect", { width: "20", height: "5", x: "2", y: "3", rx: "1" }),
|
|
3067
|
+
/* @__PURE__ */ jsx48("path", { d: "M4 8v11a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8" }),
|
|
3068
|
+
/* @__PURE__ */ jsx48("path", { d: "M10 12h4" })
|
|
3019
3069
|
]
|
|
3020
3070
|
}
|
|
3021
3071
|
);
|
|
3022
3072
|
}
|
|
3023
3073
|
|
|
3024
3074
|
// src/components/icons/arrow-down/index.tsx
|
|
3025
|
-
import { jsx as
|
|
3075
|
+
import { jsx as jsx49, jsxs as jsxs33 } from "react/jsx-runtime";
|
|
3026
3076
|
function ArrowDownIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3027
3077
|
return /* @__PURE__ */ jsxs33(
|
|
3028
3078
|
"svg",
|
|
@@ -3039,15 +3089,15 @@ function ArrowDownIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3039
3089
|
"aria-hidden": "true",
|
|
3040
3090
|
...rest,
|
|
3041
3091
|
children: [
|
|
3042
|
-
/* @__PURE__ */
|
|
3043
|
-
/* @__PURE__ */
|
|
3092
|
+
/* @__PURE__ */ jsx49("path", { d: "M12 5v14" }),
|
|
3093
|
+
/* @__PURE__ */ jsx49("path", { d: "m19 12-7 7-7-7" })
|
|
3044
3094
|
]
|
|
3045
3095
|
}
|
|
3046
3096
|
);
|
|
3047
3097
|
}
|
|
3048
3098
|
|
|
3049
3099
|
// src/components/icons/arrow-left/index.tsx
|
|
3050
|
-
import { jsx as
|
|
3100
|
+
import { jsx as jsx50, jsxs as jsxs34 } from "react/jsx-runtime";
|
|
3051
3101
|
function ArrowLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3052
3102
|
return /* @__PURE__ */ jsxs34(
|
|
3053
3103
|
"svg",
|
|
@@ -3064,15 +3114,15 @@ function ArrowLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3064
3114
|
"aria-hidden": "true",
|
|
3065
3115
|
...rest,
|
|
3066
3116
|
children: [
|
|
3067
|
-
/* @__PURE__ */
|
|
3068
|
-
/* @__PURE__ */
|
|
3117
|
+
/* @__PURE__ */ jsx50("path", { d: "m12 19-7-7 7-7" }),
|
|
3118
|
+
/* @__PURE__ */ jsx50("path", { d: "M19 12H5" })
|
|
3069
3119
|
]
|
|
3070
3120
|
}
|
|
3071
3121
|
);
|
|
3072
3122
|
}
|
|
3073
3123
|
|
|
3074
3124
|
// src/components/icons/arrow-right/index.tsx
|
|
3075
|
-
import { jsx as
|
|
3125
|
+
import { jsx as jsx51, jsxs as jsxs35 } from "react/jsx-runtime";
|
|
3076
3126
|
function ArrowRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3077
3127
|
return /* @__PURE__ */ jsxs35(
|
|
3078
3128
|
"svg",
|
|
@@ -3089,15 +3139,15 @@ function ArrowRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3089
3139
|
"aria-hidden": "true",
|
|
3090
3140
|
...rest,
|
|
3091
3141
|
children: [
|
|
3092
|
-
/* @__PURE__ */
|
|
3093
|
-
/* @__PURE__ */
|
|
3142
|
+
/* @__PURE__ */ jsx51("path", { d: "M5 12h14" }),
|
|
3143
|
+
/* @__PURE__ */ jsx51("path", { d: "m12 5 7 7-7 7" })
|
|
3094
3144
|
]
|
|
3095
3145
|
}
|
|
3096
3146
|
);
|
|
3097
3147
|
}
|
|
3098
3148
|
|
|
3099
3149
|
// src/components/icons/arrow-up/index.tsx
|
|
3100
|
-
import { jsx as
|
|
3150
|
+
import { jsx as jsx52, jsxs as jsxs36 } from "react/jsx-runtime";
|
|
3101
3151
|
function ArrowUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3102
3152
|
return /* @__PURE__ */ jsxs36(
|
|
3103
3153
|
"svg",
|
|
@@ -3114,15 +3164,15 @@ function ArrowUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3114
3164
|
"aria-hidden": "true",
|
|
3115
3165
|
...rest,
|
|
3116
3166
|
children: [
|
|
3117
|
-
/* @__PURE__ */
|
|
3118
|
-
/* @__PURE__ */
|
|
3167
|
+
/* @__PURE__ */ jsx52("path", { d: "m5 12 7-7 7 7" }),
|
|
3168
|
+
/* @__PURE__ */ jsx52("path", { d: "M12 19V5" })
|
|
3119
3169
|
]
|
|
3120
3170
|
}
|
|
3121
3171
|
);
|
|
3122
3172
|
}
|
|
3123
3173
|
|
|
3124
3174
|
// src/components/icons/at-sign/index.tsx
|
|
3125
|
-
import { jsx as
|
|
3175
|
+
import { jsx as jsx53, jsxs as jsxs37 } from "react/jsx-runtime";
|
|
3126
3176
|
function AtSignIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3127
3177
|
return /* @__PURE__ */ jsxs37(
|
|
3128
3178
|
"svg",
|
|
@@ -3139,15 +3189,15 @@ function AtSignIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3139
3189
|
"aria-hidden": "true",
|
|
3140
3190
|
...rest,
|
|
3141
3191
|
children: [
|
|
3142
|
-
/* @__PURE__ */
|
|
3143
|
-
/* @__PURE__ */
|
|
3192
|
+
/* @__PURE__ */ jsx53("circle", { cx: "12", cy: "12", r: "4" }),
|
|
3193
|
+
/* @__PURE__ */ jsx53("path", { d: "M16 8v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-4 8" })
|
|
3144
3194
|
]
|
|
3145
3195
|
}
|
|
3146
3196
|
);
|
|
3147
3197
|
}
|
|
3148
3198
|
|
|
3149
3199
|
// src/components/icons/bell/index.tsx
|
|
3150
|
-
import { jsx as
|
|
3200
|
+
import { jsx as jsx54, jsxs as jsxs38 } from "react/jsx-runtime";
|
|
3151
3201
|
function BellIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3152
3202
|
return /* @__PURE__ */ jsxs38(
|
|
3153
3203
|
"svg",
|
|
@@ -3164,15 +3214,15 @@ function BellIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3164
3214
|
"aria-hidden": "true",
|
|
3165
3215
|
...rest,
|
|
3166
3216
|
children: [
|
|
3167
|
-
/* @__PURE__ */
|
|
3168
|
-
/* @__PURE__ */
|
|
3217
|
+
/* @__PURE__ */ jsx54("path", { d: "M6 8a6 6 0 0 1 12 0c0 7 3 9 3 9H3s3-2 3-9" }),
|
|
3218
|
+
/* @__PURE__ */ jsx54("path", { d: "M10.3 21a1.94 1.94 0 0 0 3.4 0" })
|
|
3169
3219
|
]
|
|
3170
3220
|
}
|
|
3171
3221
|
);
|
|
3172
3222
|
}
|
|
3173
3223
|
|
|
3174
3224
|
// src/components/icons/bell-off/index.tsx
|
|
3175
|
-
import { jsx as
|
|
3225
|
+
import { jsx as jsx55, jsxs as jsxs39 } from "react/jsx-runtime";
|
|
3176
3226
|
function BellOffIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3177
3227
|
return /* @__PURE__ */ jsxs39(
|
|
3178
3228
|
"svg",
|
|
@@ -3189,19 +3239,19 @@ function BellOffIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3189
3239
|
"aria-hidden": "true",
|
|
3190
3240
|
...rest,
|
|
3191
3241
|
children: [
|
|
3192
|
-
/* @__PURE__ */
|
|
3193
|
-
/* @__PURE__ */
|
|
3194
|
-
/* @__PURE__ */
|
|
3195
|
-
/* @__PURE__ */
|
|
3242
|
+
/* @__PURE__ */ jsx55("path", { d: "M8.7 3A6 6 0 0 1 18 8a21.3 21.3 0 0 0 .6 5" }),
|
|
3243
|
+
/* @__PURE__ */ jsx55("path", { d: "M17 17H3s3-2 3-9a4.67 4.67 0 0 1 .3-1.7" }),
|
|
3244
|
+
/* @__PURE__ */ jsx55("path", { d: "M10.3 21a1.94 1.94 0 0 0 3.4 0" }),
|
|
3245
|
+
/* @__PURE__ */ jsx55("path", { d: "m2 2 20 20" })
|
|
3196
3246
|
]
|
|
3197
3247
|
}
|
|
3198
3248
|
);
|
|
3199
3249
|
}
|
|
3200
3250
|
|
|
3201
3251
|
// src/components/icons/bookmark/index.tsx
|
|
3202
|
-
import { jsx as
|
|
3252
|
+
import { jsx as jsx56 } from "react/jsx-runtime";
|
|
3203
3253
|
function BookmarkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3204
|
-
return /* @__PURE__ */
|
|
3254
|
+
return /* @__PURE__ */ jsx56(
|
|
3205
3255
|
"svg",
|
|
3206
3256
|
{
|
|
3207
3257
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3215,13 +3265,13 @@ function BookmarkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3215
3265
|
strokeLinejoin: "round",
|
|
3216
3266
|
"aria-hidden": "true",
|
|
3217
3267
|
...rest,
|
|
3218
|
-
children: /* @__PURE__ */
|
|
3268
|
+
children: /* @__PURE__ */ jsx56("path", { d: "m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z" })
|
|
3219
3269
|
}
|
|
3220
3270
|
);
|
|
3221
3271
|
}
|
|
3222
3272
|
|
|
3223
3273
|
// src/components/icons/calendar/index.tsx
|
|
3224
|
-
import { jsx as
|
|
3274
|
+
import { jsx as jsx57, jsxs as jsxs40 } from "react/jsx-runtime";
|
|
3225
3275
|
function CalendarIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3226
3276
|
return /* @__PURE__ */ jsxs40(
|
|
3227
3277
|
"svg",
|
|
@@ -3238,17 +3288,17 @@ function CalendarIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3238
3288
|
"aria-hidden": "true",
|
|
3239
3289
|
...rest,
|
|
3240
3290
|
children: [
|
|
3241
|
-
/* @__PURE__ */
|
|
3242
|
-
/* @__PURE__ */
|
|
3243
|
-
/* @__PURE__ */
|
|
3244
|
-
/* @__PURE__ */
|
|
3291
|
+
/* @__PURE__ */ jsx57("path", { d: "M8 2v4" }),
|
|
3292
|
+
/* @__PURE__ */ jsx57("path", { d: "M16 2v4" }),
|
|
3293
|
+
/* @__PURE__ */ jsx57("rect", { width: "18", height: "18", x: "3", y: "4", rx: "2" }),
|
|
3294
|
+
/* @__PURE__ */ jsx57("path", { d: "M3 10h18" })
|
|
3245
3295
|
]
|
|
3246
3296
|
}
|
|
3247
3297
|
);
|
|
3248
3298
|
}
|
|
3249
3299
|
|
|
3250
3300
|
// src/components/icons/camera/index.tsx
|
|
3251
|
-
import { jsx as
|
|
3301
|
+
import { jsx as jsx58, jsxs as jsxs41 } from "react/jsx-runtime";
|
|
3252
3302
|
function CameraIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3253
3303
|
return /* @__PURE__ */ jsxs41(
|
|
3254
3304
|
"svg",
|
|
@@ -3265,17 +3315,17 @@ function CameraIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3265
3315
|
"aria-hidden": "true",
|
|
3266
3316
|
...rest,
|
|
3267
3317
|
children: [
|
|
3268
|
-
/* @__PURE__ */
|
|
3269
|
-
/* @__PURE__ */
|
|
3318
|
+
/* @__PURE__ */ jsx58("path", { d: "M14.5 4h-5L7 7H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-3l-2.5-3z" }),
|
|
3319
|
+
/* @__PURE__ */ jsx58("circle", { cx: "12", cy: "13", r: "3" })
|
|
3270
3320
|
]
|
|
3271
3321
|
}
|
|
3272
3322
|
);
|
|
3273
3323
|
}
|
|
3274
3324
|
|
|
3275
3325
|
// src/components/icons/chevron-up/index.tsx
|
|
3276
|
-
import { jsx as
|
|
3326
|
+
import { jsx as jsx59 } from "react/jsx-runtime";
|
|
3277
3327
|
function ChevronUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3278
|
-
return /* @__PURE__ */
|
|
3328
|
+
return /* @__PURE__ */ jsx59(
|
|
3279
3329
|
"svg",
|
|
3280
3330
|
{
|
|
3281
3331
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3289,13 +3339,13 @@ function ChevronUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3289
3339
|
strokeLinejoin: "round",
|
|
3290
3340
|
"aria-hidden": "true",
|
|
3291
3341
|
...rest,
|
|
3292
|
-
children: /* @__PURE__ */
|
|
3342
|
+
children: /* @__PURE__ */ jsx59("path", { d: "m18 15-6-6-6 6" })
|
|
3293
3343
|
}
|
|
3294
3344
|
);
|
|
3295
3345
|
}
|
|
3296
3346
|
|
|
3297
3347
|
// src/components/icons/chevrons-left/index.tsx
|
|
3298
|
-
import { jsx as
|
|
3348
|
+
import { jsx as jsx60, jsxs as jsxs42 } from "react/jsx-runtime";
|
|
3299
3349
|
function ChevronsLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3300
3350
|
return /* @__PURE__ */ jsxs42(
|
|
3301
3351
|
"svg",
|
|
@@ -3312,15 +3362,15 @@ function ChevronsLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3312
3362
|
"aria-hidden": "true",
|
|
3313
3363
|
...rest,
|
|
3314
3364
|
children: [
|
|
3315
|
-
/* @__PURE__ */
|
|
3316
|
-
/* @__PURE__ */
|
|
3365
|
+
/* @__PURE__ */ jsx60("path", { d: "m11 17-5-5 5-5" }),
|
|
3366
|
+
/* @__PURE__ */ jsx60("path", { d: "m18 17-5-5 5-5" })
|
|
3317
3367
|
]
|
|
3318
3368
|
}
|
|
3319
3369
|
);
|
|
3320
3370
|
}
|
|
3321
3371
|
|
|
3322
3372
|
// src/components/icons/chevrons-right/index.tsx
|
|
3323
|
-
import { jsx as
|
|
3373
|
+
import { jsx as jsx61, jsxs as jsxs43 } from "react/jsx-runtime";
|
|
3324
3374
|
function ChevronsRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3325
3375
|
return /* @__PURE__ */ jsxs43(
|
|
3326
3376
|
"svg",
|
|
@@ -3337,15 +3387,15 @@ function ChevronsRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3337
3387
|
"aria-hidden": "true",
|
|
3338
3388
|
...rest,
|
|
3339
3389
|
children: [
|
|
3340
|
-
/* @__PURE__ */
|
|
3341
|
-
/* @__PURE__ */
|
|
3390
|
+
/* @__PURE__ */ jsx61("path", { d: "m6 17 5-5-5-5" }),
|
|
3391
|
+
/* @__PURE__ */ jsx61("path", { d: "m13 17 5-5-5-5" })
|
|
3342
3392
|
]
|
|
3343
3393
|
}
|
|
3344
3394
|
);
|
|
3345
3395
|
}
|
|
3346
3396
|
|
|
3347
3397
|
// src/components/icons/clipboard/index.tsx
|
|
3348
|
-
import { jsx as
|
|
3398
|
+
import { jsx as jsx62, jsxs as jsxs44 } from "react/jsx-runtime";
|
|
3349
3399
|
function ClipboardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3350
3400
|
return /* @__PURE__ */ jsxs44(
|
|
3351
3401
|
"svg",
|
|
@@ -3362,15 +3412,15 @@ function ClipboardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3362
3412
|
"aria-hidden": "true",
|
|
3363
3413
|
...rest,
|
|
3364
3414
|
children: [
|
|
3365
|
-
/* @__PURE__ */
|
|
3366
|
-
/* @__PURE__ */
|
|
3415
|
+
/* @__PURE__ */ jsx62("rect", { width: "8", height: "4", x: "8", y: "2", rx: "1", ry: "1" }),
|
|
3416
|
+
/* @__PURE__ */ jsx62("path", { d: "M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2" })
|
|
3367
3417
|
]
|
|
3368
3418
|
}
|
|
3369
3419
|
);
|
|
3370
3420
|
}
|
|
3371
3421
|
|
|
3372
3422
|
// src/components/icons/clock/index.tsx
|
|
3373
|
-
import { jsx as
|
|
3423
|
+
import { jsx as jsx63, jsxs as jsxs45 } from "react/jsx-runtime";
|
|
3374
3424
|
function ClockIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3375
3425
|
return /* @__PURE__ */ jsxs45(
|
|
3376
3426
|
"svg",
|
|
@@ -3387,17 +3437,17 @@ function ClockIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3387
3437
|
"aria-hidden": "true",
|
|
3388
3438
|
...rest,
|
|
3389
3439
|
children: [
|
|
3390
|
-
/* @__PURE__ */
|
|
3391
|
-
/* @__PURE__ */
|
|
3440
|
+
/* @__PURE__ */ jsx63("circle", { cx: "12", cy: "12", r: "10" }),
|
|
3441
|
+
/* @__PURE__ */ jsx63("polyline", { points: "12 6 12 12 16 14" })
|
|
3392
3442
|
]
|
|
3393
3443
|
}
|
|
3394
3444
|
);
|
|
3395
3445
|
}
|
|
3396
3446
|
|
|
3397
3447
|
// src/components/icons/cloud/index.tsx
|
|
3398
|
-
import { jsx as
|
|
3448
|
+
import { jsx as jsx64 } from "react/jsx-runtime";
|
|
3399
3449
|
function CloudIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3400
|
-
return /* @__PURE__ */
|
|
3450
|
+
return /* @__PURE__ */ jsx64(
|
|
3401
3451
|
"svg",
|
|
3402
3452
|
{
|
|
3403
3453
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3411,13 +3461,13 @@ function CloudIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3411
3461
|
strokeLinejoin: "round",
|
|
3412
3462
|
"aria-hidden": "true",
|
|
3413
3463
|
...rest,
|
|
3414
|
-
children: /* @__PURE__ */
|
|
3464
|
+
children: /* @__PURE__ */ jsx64("path", { d: "M17.5 19H9a7 7 0 1 1 6.71-9h1.79a4.5 4.5 0 1 1 0 9Z" })
|
|
3415
3465
|
}
|
|
3416
3466
|
);
|
|
3417
3467
|
}
|
|
3418
3468
|
|
|
3419
3469
|
// src/components/icons/copy/index.tsx
|
|
3420
|
-
import { jsx as
|
|
3470
|
+
import { jsx as jsx65, jsxs as jsxs46 } from "react/jsx-runtime";
|
|
3421
3471
|
function CopyIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3422
3472
|
return /* @__PURE__ */ jsxs46(
|
|
3423
3473
|
"svg",
|
|
@@ -3434,15 +3484,15 @@ function CopyIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3434
3484
|
"aria-hidden": "true",
|
|
3435
3485
|
...rest,
|
|
3436
3486
|
children: [
|
|
3437
|
-
/* @__PURE__ */
|
|
3438
|
-
/* @__PURE__ */
|
|
3487
|
+
/* @__PURE__ */ jsx65("rect", { width: "14", height: "14", x: "8", y: "8", rx: "2", ry: "2" }),
|
|
3488
|
+
/* @__PURE__ */ jsx65("path", { d: "M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2" })
|
|
3439
3489
|
]
|
|
3440
3490
|
}
|
|
3441
3491
|
);
|
|
3442
3492
|
}
|
|
3443
3493
|
|
|
3444
3494
|
// src/components/icons/corner-down-right/index.tsx
|
|
3445
|
-
import { jsx as
|
|
3495
|
+
import { jsx as jsx66, jsxs as jsxs47 } from "react/jsx-runtime";
|
|
3446
3496
|
function CornerDownRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3447
3497
|
return /* @__PURE__ */ jsxs47(
|
|
3448
3498
|
"svg",
|
|
@@ -3459,15 +3509,15 @@ function CornerDownRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest })
|
|
|
3459
3509
|
"aria-hidden": "true",
|
|
3460
3510
|
...rest,
|
|
3461
3511
|
children: [
|
|
3462
|
-
/* @__PURE__ */
|
|
3463
|
-
/* @__PURE__ */
|
|
3512
|
+
/* @__PURE__ */ jsx66("polyline", { points: "15 10 20 15 15 20" }),
|
|
3513
|
+
/* @__PURE__ */ jsx66("path", { d: "M4 4v7a4 4 0 0 0 4 4h12" })
|
|
3464
3514
|
]
|
|
3465
3515
|
}
|
|
3466
3516
|
);
|
|
3467
3517
|
}
|
|
3468
3518
|
|
|
3469
3519
|
// src/components/icons/credit-card/index.tsx
|
|
3470
|
-
import { jsx as
|
|
3520
|
+
import { jsx as jsx67, jsxs as jsxs48 } from "react/jsx-runtime";
|
|
3471
3521
|
function CreditCardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3472
3522
|
return /* @__PURE__ */ jsxs48(
|
|
3473
3523
|
"svg",
|
|
@@ -3484,15 +3534,15 @@ function CreditCardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3484
3534
|
"aria-hidden": "true",
|
|
3485
3535
|
...rest,
|
|
3486
3536
|
children: [
|
|
3487
|
-
/* @__PURE__ */
|
|
3488
|
-
/* @__PURE__ */
|
|
3537
|
+
/* @__PURE__ */ jsx67("rect", { width: "20", height: "14", x: "2", y: "5", rx: "2" }),
|
|
3538
|
+
/* @__PURE__ */ jsx67("line", { x1: "2", x2: "22", y1: "10", y2: "10" })
|
|
3489
3539
|
]
|
|
3490
3540
|
}
|
|
3491
3541
|
);
|
|
3492
3542
|
}
|
|
3493
3543
|
|
|
3494
3544
|
// src/components/icons/dollar-sign/index.tsx
|
|
3495
|
-
import { jsx as
|
|
3545
|
+
import { jsx as jsx68, jsxs as jsxs49 } from "react/jsx-runtime";
|
|
3496
3546
|
function DollarSignIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3497
3547
|
return /* @__PURE__ */ jsxs49(
|
|
3498
3548
|
"svg",
|
|
@@ -3509,15 +3559,15 @@ function DollarSignIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3509
3559
|
"aria-hidden": "true",
|
|
3510
3560
|
...rest,
|
|
3511
3561
|
children: [
|
|
3512
|
-
/* @__PURE__ */
|
|
3513
|
-
/* @__PURE__ */
|
|
3562
|
+
/* @__PURE__ */ jsx68("line", { x1: "12", x2: "12", y1: "2", y2: "22" }),
|
|
3563
|
+
/* @__PURE__ */ jsx68("path", { d: "M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6" })
|
|
3514
3564
|
]
|
|
3515
3565
|
}
|
|
3516
3566
|
);
|
|
3517
3567
|
}
|
|
3518
3568
|
|
|
3519
3569
|
// src/components/icons/download/index.tsx
|
|
3520
|
-
import { jsx as
|
|
3570
|
+
import { jsx as jsx69, jsxs as jsxs50 } from "react/jsx-runtime";
|
|
3521
3571
|
function DownloadIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3522
3572
|
return /* @__PURE__ */ jsxs50(
|
|
3523
3573
|
"svg",
|
|
@@ -3534,16 +3584,16 @@ function DownloadIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3534
3584
|
"aria-hidden": "true",
|
|
3535
3585
|
...rest,
|
|
3536
3586
|
children: [
|
|
3537
|
-
/* @__PURE__ */
|
|
3538
|
-
/* @__PURE__ */
|
|
3539
|
-
/* @__PURE__ */
|
|
3587
|
+
/* @__PURE__ */ jsx69("path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" }),
|
|
3588
|
+
/* @__PURE__ */ jsx69("polyline", { points: "7 10 12 15 17 10" }),
|
|
3589
|
+
/* @__PURE__ */ jsx69("line", { x1: "12", x2: "12", y1: "15", y2: "3" })
|
|
3540
3590
|
]
|
|
3541
3591
|
}
|
|
3542
3592
|
);
|
|
3543
3593
|
}
|
|
3544
3594
|
|
|
3545
3595
|
// src/components/icons/external-link/index.tsx
|
|
3546
|
-
import { jsx as
|
|
3596
|
+
import { jsx as jsx70, jsxs as jsxs51 } from "react/jsx-runtime";
|
|
3547
3597
|
function ExternalLinkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3548
3598
|
return /* @__PURE__ */ jsxs51(
|
|
3549
3599
|
"svg",
|
|
@@ -3560,16 +3610,16 @@ function ExternalLinkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3560
3610
|
"aria-hidden": "true",
|
|
3561
3611
|
...rest,
|
|
3562
3612
|
children: [
|
|
3563
|
-
/* @__PURE__ */
|
|
3564
|
-
/* @__PURE__ */
|
|
3565
|
-
/* @__PURE__ */
|
|
3613
|
+
/* @__PURE__ */ jsx70("path", { d: "M15 3h6v6" }),
|
|
3614
|
+
/* @__PURE__ */ jsx70("path", { d: "M10 14 21 3" }),
|
|
3615
|
+
/* @__PURE__ */ jsx70("path", { d: "M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6" })
|
|
3566
3616
|
]
|
|
3567
3617
|
}
|
|
3568
3618
|
);
|
|
3569
3619
|
}
|
|
3570
3620
|
|
|
3571
3621
|
// src/components/icons/file/index.tsx
|
|
3572
|
-
import { jsx as
|
|
3622
|
+
import { jsx as jsx71, jsxs as jsxs52 } from "react/jsx-runtime";
|
|
3573
3623
|
function FileIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3574
3624
|
return /* @__PURE__ */ jsxs52(
|
|
3575
3625
|
"svg",
|
|
@@ -3586,15 +3636,15 @@ function FileIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3586
3636
|
"aria-hidden": "true",
|
|
3587
3637
|
...rest,
|
|
3588
3638
|
children: [
|
|
3589
|
-
/* @__PURE__ */
|
|
3590
|
-
/* @__PURE__ */
|
|
3639
|
+
/* @__PURE__ */ jsx71("path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" }),
|
|
3640
|
+
/* @__PURE__ */ jsx71("path", { d: "M14 2v4a2 2 0 0 0 2 2h4" })
|
|
3591
3641
|
]
|
|
3592
3642
|
}
|
|
3593
3643
|
);
|
|
3594
3644
|
}
|
|
3595
3645
|
|
|
3596
3646
|
// src/components/icons/file-text/index.tsx
|
|
3597
|
-
import { jsx as
|
|
3647
|
+
import { jsx as jsx72, jsxs as jsxs53 } from "react/jsx-runtime";
|
|
3598
3648
|
function FileTextIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3599
3649
|
return /* @__PURE__ */ jsxs53(
|
|
3600
3650
|
"svg",
|
|
@@ -3611,20 +3661,20 @@ function FileTextIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3611
3661
|
"aria-hidden": "true",
|
|
3612
3662
|
...rest,
|
|
3613
3663
|
children: [
|
|
3614
|
-
/* @__PURE__ */
|
|
3615
|
-
/* @__PURE__ */
|
|
3616
|
-
/* @__PURE__ */
|
|
3617
|
-
/* @__PURE__ */
|
|
3618
|
-
/* @__PURE__ */
|
|
3664
|
+
/* @__PURE__ */ jsx72("path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" }),
|
|
3665
|
+
/* @__PURE__ */ jsx72("path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }),
|
|
3666
|
+
/* @__PURE__ */ jsx72("path", { d: "M16 13H8" }),
|
|
3667
|
+
/* @__PURE__ */ jsx72("path", { d: "M16 17H8" }),
|
|
3668
|
+
/* @__PURE__ */ jsx72("path", { d: "M10 9H8" })
|
|
3619
3669
|
]
|
|
3620
3670
|
}
|
|
3621
3671
|
);
|
|
3622
3672
|
}
|
|
3623
3673
|
|
|
3624
3674
|
// src/components/icons/filter/index.tsx
|
|
3625
|
-
import { jsx as
|
|
3675
|
+
import { jsx as jsx73 } from "react/jsx-runtime";
|
|
3626
3676
|
function FilterIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3627
|
-
return /* @__PURE__ */
|
|
3677
|
+
return /* @__PURE__ */ jsx73(
|
|
3628
3678
|
"svg",
|
|
3629
3679
|
{
|
|
3630
3680
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3638,13 +3688,13 @@ function FilterIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3638
3688
|
strokeLinejoin: "round",
|
|
3639
3689
|
"aria-hidden": "true",
|
|
3640
3690
|
...rest,
|
|
3641
|
-
children: /* @__PURE__ */
|
|
3691
|
+
children: /* @__PURE__ */ jsx73("polygon", { points: "22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3" })
|
|
3642
3692
|
}
|
|
3643
3693
|
);
|
|
3644
3694
|
}
|
|
3645
3695
|
|
|
3646
3696
|
// src/components/icons/fingerprint/index.tsx
|
|
3647
|
-
import { jsx as
|
|
3697
|
+
import { jsx as jsx74, jsxs as jsxs54 } from "react/jsx-runtime";
|
|
3648
3698
|
function FingerprintIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3649
3699
|
return /* @__PURE__ */ jsxs54(
|
|
3650
3700
|
"svg",
|
|
@@ -3661,24 +3711,24 @@ function FingerprintIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3661
3711
|
"aria-hidden": "true",
|
|
3662
3712
|
...rest,
|
|
3663
3713
|
children: [
|
|
3664
|
-
/* @__PURE__ */
|
|
3665
|
-
/* @__PURE__ */
|
|
3666
|
-
/* @__PURE__ */
|
|
3667
|
-
/* @__PURE__ */
|
|
3668
|
-
/* @__PURE__ */
|
|
3669
|
-
/* @__PURE__ */
|
|
3670
|
-
/* @__PURE__ */
|
|
3671
|
-
/* @__PURE__ */
|
|
3672
|
-
/* @__PURE__ */
|
|
3714
|
+
/* @__PURE__ */ jsx74("path", { d: "M2 12C2 6.5 6.5 2 12 2a10 10 0 0 1 8 4" }),
|
|
3715
|
+
/* @__PURE__ */ jsx74("path", { d: "M5 19.5C5.5 18 6 15 6 12c0-.7.12-1.37.34-2" }),
|
|
3716
|
+
/* @__PURE__ */ jsx74("path", { d: "M17.29 21.02c.12-.6.43-2.3.5-3.02" }),
|
|
3717
|
+
/* @__PURE__ */ jsx74("path", { d: "M12 10a2 2 0 0 0-2 2c0 1.02-.1 2.51-.26 4" }),
|
|
3718
|
+
/* @__PURE__ */ jsx74("path", { d: "M8.65 22c.21-.66.45-1.32.57-2" }),
|
|
3719
|
+
/* @__PURE__ */ jsx74("path", { d: "M14 13.12c0 2.38 0 6.38-1 8.88" }),
|
|
3720
|
+
/* @__PURE__ */ jsx74("path", { d: "M2 16h.01" }),
|
|
3721
|
+
/* @__PURE__ */ jsx74("path", { d: "M21.8 16c.2-2 .131-5.354 0-6" }),
|
|
3722
|
+
/* @__PURE__ */ jsx74("path", { d: "M9 6.8a6 6 0 0 1 9 5.2c0 .47 0 1.17-.02 2" })
|
|
3673
3723
|
]
|
|
3674
3724
|
}
|
|
3675
3725
|
);
|
|
3676
3726
|
}
|
|
3677
3727
|
|
|
3678
3728
|
// src/components/icons/folder/index.tsx
|
|
3679
|
-
import { jsx as
|
|
3729
|
+
import { jsx as jsx75 } from "react/jsx-runtime";
|
|
3680
3730
|
function FolderIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3681
|
-
return /* @__PURE__ */
|
|
3731
|
+
return /* @__PURE__ */ jsx75(
|
|
3682
3732
|
"svg",
|
|
3683
3733
|
{
|
|
3684
3734
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3692,15 +3742,15 @@ function FolderIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3692
3742
|
strokeLinejoin: "round",
|
|
3693
3743
|
"aria-hidden": "true",
|
|
3694
3744
|
...rest,
|
|
3695
|
-
children: /* @__PURE__ */
|
|
3745
|
+
children: /* @__PURE__ */ jsx75("path", { d: "M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z" })
|
|
3696
3746
|
}
|
|
3697
3747
|
);
|
|
3698
3748
|
}
|
|
3699
3749
|
|
|
3700
3750
|
// src/components/icons/folder-open/index.tsx
|
|
3701
|
-
import { jsx as
|
|
3751
|
+
import { jsx as jsx76 } from "react/jsx-runtime";
|
|
3702
3752
|
function FolderOpenIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3703
|
-
return /* @__PURE__ */
|
|
3753
|
+
return /* @__PURE__ */ jsx76(
|
|
3704
3754
|
"svg",
|
|
3705
3755
|
{
|
|
3706
3756
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3714,13 +3764,13 @@ function FolderOpenIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3714
3764
|
strokeLinejoin: "round",
|
|
3715
3765
|
"aria-hidden": "true",
|
|
3716
3766
|
...rest,
|
|
3717
|
-
children: /* @__PURE__ */
|
|
3767
|
+
children: /* @__PURE__ */ jsx76("path", { d: "m6 14 1.5-2.9A2 2 0 0 1 9.24 10H20a2 2 0 0 1 1.94 2.5l-1.54 6a2 2 0 0 1-1.95 1.5H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H18a2 2 0 0 1 2 2v2" })
|
|
3718
3768
|
}
|
|
3719
3769
|
);
|
|
3720
3770
|
}
|
|
3721
3771
|
|
|
3722
3772
|
// src/components/icons/gift/index.tsx
|
|
3723
|
-
import { jsx as
|
|
3773
|
+
import { jsx as jsx77, jsxs as jsxs55 } from "react/jsx-runtime";
|
|
3724
3774
|
function GiftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3725
3775
|
return /* @__PURE__ */ jsxs55(
|
|
3726
3776
|
"svg",
|
|
@@ -3737,17 +3787,17 @@ function GiftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3737
3787
|
"aria-hidden": "true",
|
|
3738
3788
|
...rest,
|
|
3739
3789
|
children: [
|
|
3740
|
-
/* @__PURE__ */
|
|
3741
|
-
/* @__PURE__ */
|
|
3742
|
-
/* @__PURE__ */
|
|
3743
|
-
/* @__PURE__ */
|
|
3790
|
+
/* @__PURE__ */ jsx77("rect", { x: "3", y: "8", width: "18", height: "4", rx: "1" }),
|
|
3791
|
+
/* @__PURE__ */ jsx77("path", { d: "M12 8v13" }),
|
|
3792
|
+
/* @__PURE__ */ jsx77("path", { d: "M19 12v7a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2v-7" }),
|
|
3793
|
+
/* @__PURE__ */ jsx77("path", { d: "M7.5 8a2.5 2.5 0 0 1 0-5A4.8 8 0 0 1 12 8a4.8 8 0 0 1 4.5-5 2.5 2.5 0 0 1 0 5" })
|
|
3744
3794
|
]
|
|
3745
3795
|
}
|
|
3746
3796
|
);
|
|
3747
3797
|
}
|
|
3748
3798
|
|
|
3749
3799
|
// src/components/icons/globe/index.tsx
|
|
3750
|
-
import { jsx as
|
|
3800
|
+
import { jsx as jsx78, jsxs as jsxs56 } from "react/jsx-runtime";
|
|
3751
3801
|
function GlobeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3752
3802
|
return /* @__PURE__ */ jsxs56(
|
|
3753
3803
|
"svg",
|
|
@@ -3764,16 +3814,16 @@ function GlobeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3764
3814
|
"aria-hidden": "true",
|
|
3765
3815
|
...rest,
|
|
3766
3816
|
children: [
|
|
3767
|
-
/* @__PURE__ */
|
|
3768
|
-
/* @__PURE__ */
|
|
3769
|
-
/* @__PURE__ */
|
|
3817
|
+
/* @__PURE__ */ jsx78("circle", { cx: "12", cy: "12", r: "10" }),
|
|
3818
|
+
/* @__PURE__ */ jsx78("path", { d: "M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20" }),
|
|
3819
|
+
/* @__PURE__ */ jsx78("path", { d: "M2 12h20" })
|
|
3770
3820
|
]
|
|
3771
3821
|
}
|
|
3772
3822
|
);
|
|
3773
3823
|
}
|
|
3774
3824
|
|
|
3775
3825
|
// src/components/icons/grid/index.tsx
|
|
3776
|
-
import { jsx as
|
|
3826
|
+
import { jsx as jsx79, jsxs as jsxs57 } from "react/jsx-runtime";
|
|
3777
3827
|
function GridIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3778
3828
|
return /* @__PURE__ */ jsxs57(
|
|
3779
3829
|
"svg",
|
|
@@ -3790,20 +3840,20 @@ function GridIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3790
3840
|
"aria-hidden": "true",
|
|
3791
3841
|
...rest,
|
|
3792
3842
|
children: [
|
|
3793
|
-
/* @__PURE__ */
|
|
3794
|
-
/* @__PURE__ */
|
|
3795
|
-
/* @__PURE__ */
|
|
3796
|
-
/* @__PURE__ */
|
|
3797
|
-
/* @__PURE__ */
|
|
3843
|
+
/* @__PURE__ */ jsx79("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }),
|
|
3844
|
+
/* @__PURE__ */ jsx79("path", { d: "M3 9h18" }),
|
|
3845
|
+
/* @__PURE__ */ jsx79("path", { d: "M3 15h18" }),
|
|
3846
|
+
/* @__PURE__ */ jsx79("path", { d: "M9 3v18" }),
|
|
3847
|
+
/* @__PURE__ */ jsx79("path", { d: "M15 3v18" })
|
|
3798
3848
|
]
|
|
3799
3849
|
}
|
|
3800
3850
|
);
|
|
3801
3851
|
}
|
|
3802
3852
|
|
|
3803
3853
|
// src/components/icons/heart/index.tsx
|
|
3804
|
-
import { jsx as
|
|
3854
|
+
import { jsx as jsx80 } from "react/jsx-runtime";
|
|
3805
3855
|
function HeartIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3806
|
-
return /* @__PURE__ */
|
|
3856
|
+
return /* @__PURE__ */ jsx80(
|
|
3807
3857
|
"svg",
|
|
3808
3858
|
{
|
|
3809
3859
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3817,13 +3867,13 @@ function HeartIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3817
3867
|
strokeLinejoin: "round",
|
|
3818
3868
|
"aria-hidden": "true",
|
|
3819
3869
|
...rest,
|
|
3820
|
-
children: /* @__PURE__ */
|
|
3870
|
+
children: /* @__PURE__ */ jsx80("path", { d: "M19 14c1.49-1.46 3-3.21 3-5.5A5.5 5.5 0 0 0 16.5 3c-1.76 0-3 .5-4.5 2-1.5-1.5-2.74-2-4.5-2A5.5 5.5 0 0 0 2 8.5c0 2.3 1.5 4.05 3 5.5l7 7Z" })
|
|
3821
3871
|
}
|
|
3822
3872
|
);
|
|
3823
3873
|
}
|
|
3824
3874
|
|
|
3825
3875
|
// src/components/icons/help-circle/index.tsx
|
|
3826
|
-
import { jsx as
|
|
3876
|
+
import { jsx as jsx81, jsxs as jsxs58 } from "react/jsx-runtime";
|
|
3827
3877
|
function HelpCircleIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3828
3878
|
return /* @__PURE__ */ jsxs58(
|
|
3829
3879
|
"svg",
|
|
@@ -3840,16 +3890,16 @@ function HelpCircleIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3840
3890
|
"aria-hidden": "true",
|
|
3841
3891
|
...rest,
|
|
3842
3892
|
children: [
|
|
3843
|
-
/* @__PURE__ */
|
|
3844
|
-
/* @__PURE__ */
|
|
3845
|
-
/* @__PURE__ */
|
|
3893
|
+
/* @__PURE__ */ jsx81("circle", { cx: "12", cy: "12", r: "10" }),
|
|
3894
|
+
/* @__PURE__ */ jsx81("path", { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" }),
|
|
3895
|
+
/* @__PURE__ */ jsx81("path", { d: "M12 17h.01" })
|
|
3846
3896
|
]
|
|
3847
3897
|
}
|
|
3848
3898
|
);
|
|
3849
3899
|
}
|
|
3850
3900
|
|
|
3851
3901
|
// src/components/icons/home/index.tsx
|
|
3852
|
-
import { jsx as
|
|
3902
|
+
import { jsx as jsx82, jsxs as jsxs59 } from "react/jsx-runtime";
|
|
3853
3903
|
function HomeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3854
3904
|
return /* @__PURE__ */ jsxs59(
|
|
3855
3905
|
"svg",
|
|
@@ -3866,15 +3916,15 @@ function HomeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3866
3916
|
"aria-hidden": "true",
|
|
3867
3917
|
...rest,
|
|
3868
3918
|
children: [
|
|
3869
|
-
/* @__PURE__ */
|
|
3870
|
-
/* @__PURE__ */
|
|
3919
|
+
/* @__PURE__ */ jsx82("path", { d: "m3 9 9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z" }),
|
|
3920
|
+
/* @__PURE__ */ jsx82("polyline", { points: "9 22 9 12 15 12 15 22" })
|
|
3871
3921
|
]
|
|
3872
3922
|
}
|
|
3873
3923
|
);
|
|
3874
3924
|
}
|
|
3875
3925
|
|
|
3876
3926
|
// src/components/icons/image/index.tsx
|
|
3877
|
-
import { jsx as
|
|
3927
|
+
import { jsx as jsx83, jsxs as jsxs60 } from "react/jsx-runtime";
|
|
3878
3928
|
function ImageIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3879
3929
|
return /* @__PURE__ */ jsxs60(
|
|
3880
3930
|
"svg",
|
|
@@ -3891,16 +3941,16 @@ function ImageIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3891
3941
|
"aria-hidden": "true",
|
|
3892
3942
|
...rest,
|
|
3893
3943
|
children: [
|
|
3894
|
-
/* @__PURE__ */
|
|
3895
|
-
/* @__PURE__ */
|
|
3896
|
-
/* @__PURE__ */
|
|
3944
|
+
/* @__PURE__ */ jsx83("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", ry: "2" }),
|
|
3945
|
+
/* @__PURE__ */ jsx83("circle", { cx: "9", cy: "9", r: "2" }),
|
|
3946
|
+
/* @__PURE__ */ jsx83("path", { d: "m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21" })
|
|
3897
3947
|
]
|
|
3898
3948
|
}
|
|
3899
3949
|
);
|
|
3900
3950
|
}
|
|
3901
3951
|
|
|
3902
3952
|
// src/components/icons/inbox/index.tsx
|
|
3903
|
-
import { jsx as
|
|
3953
|
+
import { jsx as jsx84, jsxs as jsxs61 } from "react/jsx-runtime";
|
|
3904
3954
|
function InboxIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3905
3955
|
return /* @__PURE__ */ jsxs61(
|
|
3906
3956
|
"svg",
|
|
@@ -3917,15 +3967,15 @@ function InboxIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3917
3967
|
"aria-hidden": "true",
|
|
3918
3968
|
...rest,
|
|
3919
3969
|
children: [
|
|
3920
|
-
/* @__PURE__ */
|
|
3921
|
-
/* @__PURE__ */
|
|
3970
|
+
/* @__PURE__ */ jsx84("polyline", { points: "22 12 16 12 14 15 10 15 8 12 2 12" }),
|
|
3971
|
+
/* @__PURE__ */ jsx84("path", { d: "M5.45 5.11 2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z" })
|
|
3922
3972
|
]
|
|
3923
3973
|
}
|
|
3924
3974
|
);
|
|
3925
3975
|
}
|
|
3926
3976
|
|
|
3927
3977
|
// src/components/icons/key/index.tsx
|
|
3928
|
-
import { jsx as
|
|
3978
|
+
import { jsx as jsx85, jsxs as jsxs62 } from "react/jsx-runtime";
|
|
3929
3979
|
function KeyIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3930
3980
|
return /* @__PURE__ */ jsxs62(
|
|
3931
3981
|
"svg",
|
|
@@ -3942,16 +3992,16 @@ function KeyIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3942
3992
|
"aria-hidden": "true",
|
|
3943
3993
|
...rest,
|
|
3944
3994
|
children: [
|
|
3945
|
-
/* @__PURE__ */
|
|
3946
|
-
/* @__PURE__ */
|
|
3947
|
-
/* @__PURE__ */
|
|
3995
|
+
/* @__PURE__ */ jsx85("path", { d: "m15.5 7.5 2.3 2.3a1 1 0 0 0 1.4 0l2.1-2.1a1 1 0 0 0 0-1.4L21 4.5" }),
|
|
3996
|
+
/* @__PURE__ */ jsx85("path", { d: "m21 2-9.6 9.6" }),
|
|
3997
|
+
/* @__PURE__ */ jsx85("circle", { cx: "7.5", cy: "15.5", r: "5.5" })
|
|
3948
3998
|
]
|
|
3949
3999
|
}
|
|
3950
4000
|
);
|
|
3951
4001
|
}
|
|
3952
4002
|
|
|
3953
4003
|
// src/components/icons/layout/index.tsx
|
|
3954
|
-
import { jsx as
|
|
4004
|
+
import { jsx as jsx86, jsxs as jsxs63 } from "react/jsx-runtime";
|
|
3955
4005
|
function LayoutIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3956
4006
|
return /* @__PURE__ */ jsxs63(
|
|
3957
4007
|
"svg",
|
|
@@ -3968,17 +4018,17 @@ function LayoutIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3968
4018
|
"aria-hidden": "true",
|
|
3969
4019
|
...rest,
|
|
3970
4020
|
children: [
|
|
3971
|
-
/* @__PURE__ */
|
|
3972
|
-
/* @__PURE__ */
|
|
3973
|
-
/* @__PURE__ */
|
|
3974
|
-
/* @__PURE__ */
|
|
4021
|
+
/* @__PURE__ */ jsx86("rect", { width: "7", height: "9", x: "3", y: "3", rx: "1" }),
|
|
4022
|
+
/* @__PURE__ */ jsx86("rect", { width: "7", height: "5", x: "14", y: "3", rx: "1" }),
|
|
4023
|
+
/* @__PURE__ */ jsx86("rect", { width: "7", height: "9", x: "14", y: "12", rx: "1" }),
|
|
4024
|
+
/* @__PURE__ */ jsx86("rect", { width: "7", height: "5", x: "3", y: "16", rx: "1" })
|
|
3975
4025
|
]
|
|
3976
4026
|
}
|
|
3977
4027
|
);
|
|
3978
4028
|
}
|
|
3979
4029
|
|
|
3980
4030
|
// src/components/icons/link/index.tsx
|
|
3981
|
-
import { jsx as
|
|
4031
|
+
import { jsx as jsx87, jsxs as jsxs64 } from "react/jsx-runtime";
|
|
3982
4032
|
function LinkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3983
4033
|
return /* @__PURE__ */ jsxs64(
|
|
3984
4034
|
"svg",
|
|
@@ -3995,15 +4045,15 @@ function LinkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3995
4045
|
"aria-hidden": "true",
|
|
3996
4046
|
...rest,
|
|
3997
4047
|
children: [
|
|
3998
|
-
/* @__PURE__ */
|
|
3999
|
-
/* @__PURE__ */
|
|
4048
|
+
/* @__PURE__ */ jsx87("path", { d: "M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71" }),
|
|
4049
|
+
/* @__PURE__ */ jsx87("path", { d: "M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71" })
|
|
4000
4050
|
]
|
|
4001
4051
|
}
|
|
4002
4052
|
);
|
|
4003
4053
|
}
|
|
4004
4054
|
|
|
4005
4055
|
// src/components/icons/list/index.tsx
|
|
4006
|
-
import { jsx as
|
|
4056
|
+
import { jsx as jsx88, jsxs as jsxs65 } from "react/jsx-runtime";
|
|
4007
4057
|
function ListIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4008
4058
|
return /* @__PURE__ */ jsxs65(
|
|
4009
4059
|
"svg",
|
|
@@ -4020,19 +4070,19 @@ function ListIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4020
4070
|
"aria-hidden": "true",
|
|
4021
4071
|
...rest,
|
|
4022
4072
|
children: [
|
|
4023
|
-
/* @__PURE__ */
|
|
4024
|
-
/* @__PURE__ */
|
|
4025
|
-
/* @__PURE__ */
|
|
4026
|
-
/* @__PURE__ */
|
|
4027
|
-
/* @__PURE__ */
|
|
4028
|
-
/* @__PURE__ */
|
|
4073
|
+
/* @__PURE__ */ jsx88("line", { x1: "8", x2: "21", y1: "6", y2: "6" }),
|
|
4074
|
+
/* @__PURE__ */ jsx88("line", { x1: "8", x2: "21", y1: "12", y2: "12" }),
|
|
4075
|
+
/* @__PURE__ */ jsx88("line", { x1: "8", x2: "21", y1: "18", y2: "18" }),
|
|
4076
|
+
/* @__PURE__ */ jsx88("line", { x1: "3", x2: "3.01", y1: "6", y2: "6" }),
|
|
4077
|
+
/* @__PURE__ */ jsx88("line", { x1: "3", x2: "3.01", y1: "12", y2: "12" }),
|
|
4078
|
+
/* @__PURE__ */ jsx88("line", { x1: "3", x2: "3.01", y1: "18", y2: "18" })
|
|
4029
4079
|
]
|
|
4030
4080
|
}
|
|
4031
4081
|
);
|
|
4032
4082
|
}
|
|
4033
4083
|
|
|
4034
4084
|
// src/components/icons/loader/index.tsx
|
|
4035
|
-
import { jsx as
|
|
4085
|
+
import { jsx as jsx89, jsxs as jsxs66 } from "react/jsx-runtime";
|
|
4036
4086
|
function LoaderIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4037
4087
|
return /* @__PURE__ */ jsxs66(
|
|
4038
4088
|
"svg",
|
|
@@ -4049,21 +4099,21 @@ function LoaderIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4049
4099
|
"aria-hidden": "true",
|
|
4050
4100
|
...rest,
|
|
4051
4101
|
children: [
|
|
4052
|
-
/* @__PURE__ */
|
|
4053
|
-
/* @__PURE__ */
|
|
4054
|
-
/* @__PURE__ */
|
|
4055
|
-
/* @__PURE__ */
|
|
4056
|
-
/* @__PURE__ */
|
|
4057
|
-
/* @__PURE__ */
|
|
4058
|
-
/* @__PURE__ */
|
|
4059
|
-
/* @__PURE__ */
|
|
4102
|
+
/* @__PURE__ */ jsx89("line", { x1: "12", x2: "12", y1: "2", y2: "6" }),
|
|
4103
|
+
/* @__PURE__ */ jsx89("line", { x1: "12", x2: "12", y1: "18", y2: "22" }),
|
|
4104
|
+
/* @__PURE__ */ jsx89("line", { x1: "4.93", x2: "7.76", y1: "4.93", y2: "7.76" }),
|
|
4105
|
+
/* @__PURE__ */ jsx89("line", { x1: "16.24", x2: "19.07", y1: "16.24", y2: "19.07" }),
|
|
4106
|
+
/* @__PURE__ */ jsx89("line", { x1: "2", x2: "6", y1: "12", y2: "12" }),
|
|
4107
|
+
/* @__PURE__ */ jsx89("line", { x1: "18", x2: "22", y1: "12", y2: "12" }),
|
|
4108
|
+
/* @__PURE__ */ jsx89("line", { x1: "4.93", x2: "7.76", y1: "19.07", y2: "16.24" }),
|
|
4109
|
+
/* @__PURE__ */ jsx89("line", { x1: "16.24", x2: "19.07", y1: "7.76", y2: "4.93" })
|
|
4060
4110
|
]
|
|
4061
4111
|
}
|
|
4062
4112
|
);
|
|
4063
4113
|
}
|
|
4064
4114
|
|
|
4065
4115
|
// src/components/icons/lock/index.tsx
|
|
4066
|
-
import { jsx as
|
|
4116
|
+
import { jsx as jsx90, jsxs as jsxs67 } from "react/jsx-runtime";
|
|
4067
4117
|
function LockIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4068
4118
|
return /* @__PURE__ */ jsxs67(
|
|
4069
4119
|
"svg",
|
|
@@ -4080,15 +4130,15 @@ function LockIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4080
4130
|
"aria-hidden": "true",
|
|
4081
4131
|
...rest,
|
|
4082
4132
|
children: [
|
|
4083
|
-
/* @__PURE__ */
|
|
4084
|
-
/* @__PURE__ */
|
|
4133
|
+
/* @__PURE__ */ jsx90("rect", { width: "18", height: "11", x: "3", y: "11", rx: "2", ry: "2" }),
|
|
4134
|
+
/* @__PURE__ */ jsx90("path", { d: "M7 11V7a5 5 0 0 1 10 0v4" })
|
|
4085
4135
|
]
|
|
4086
4136
|
}
|
|
4087
4137
|
);
|
|
4088
4138
|
}
|
|
4089
4139
|
|
|
4090
4140
|
// src/components/icons/log-in/index.tsx
|
|
4091
|
-
import { jsx as
|
|
4141
|
+
import { jsx as jsx91, jsxs as jsxs68 } from "react/jsx-runtime";
|
|
4092
4142
|
function LogInIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4093
4143
|
return /* @__PURE__ */ jsxs68(
|
|
4094
4144
|
"svg",
|
|
@@ -4105,16 +4155,16 @@ function LogInIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4105
4155
|
"aria-hidden": "true",
|
|
4106
4156
|
...rest,
|
|
4107
4157
|
children: [
|
|
4108
|
-
/* @__PURE__ */
|
|
4109
|
-
/* @__PURE__ */
|
|
4110
|
-
/* @__PURE__ */
|
|
4158
|
+
/* @__PURE__ */ jsx91("path", { d: "M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4" }),
|
|
4159
|
+
/* @__PURE__ */ jsx91("polyline", { points: "10 17 15 12 10 7" }),
|
|
4160
|
+
/* @__PURE__ */ jsx91("line", { x1: "15", x2: "3", y1: "12", y2: "12" })
|
|
4111
4161
|
]
|
|
4112
4162
|
}
|
|
4113
4163
|
);
|
|
4114
4164
|
}
|
|
4115
4165
|
|
|
4116
4166
|
// src/components/icons/log-out/index.tsx
|
|
4117
|
-
import { jsx as
|
|
4167
|
+
import { jsx as jsx92, jsxs as jsxs69 } from "react/jsx-runtime";
|
|
4118
4168
|
function LogOutIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4119
4169
|
return /* @__PURE__ */ jsxs69(
|
|
4120
4170
|
"svg",
|
|
@@ -4131,16 +4181,16 @@ function LogOutIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4131
4181
|
"aria-hidden": "true",
|
|
4132
4182
|
...rest,
|
|
4133
4183
|
children: [
|
|
4134
|
-
/* @__PURE__ */
|
|
4135
|
-
/* @__PURE__ */
|
|
4136
|
-
/* @__PURE__ */
|
|
4184
|
+
/* @__PURE__ */ jsx92("path", { d: "M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4" }),
|
|
4185
|
+
/* @__PURE__ */ jsx92("polyline", { points: "16 17 21 12 16 7" }),
|
|
4186
|
+
/* @__PURE__ */ jsx92("line", { x1: "21", x2: "9", y1: "12", y2: "12" })
|
|
4137
4187
|
]
|
|
4138
4188
|
}
|
|
4139
4189
|
);
|
|
4140
4190
|
}
|
|
4141
4191
|
|
|
4142
4192
|
// src/components/icons/mail/index.tsx
|
|
4143
|
-
import { jsx as
|
|
4193
|
+
import { jsx as jsx93, jsxs as jsxs70 } from "react/jsx-runtime";
|
|
4144
4194
|
function MailIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4145
4195
|
return /* @__PURE__ */ jsxs70(
|
|
4146
4196
|
"svg",
|
|
@@ -4157,15 +4207,15 @@ function MailIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4157
4207
|
"aria-hidden": "true",
|
|
4158
4208
|
...rest,
|
|
4159
4209
|
children: [
|
|
4160
|
-
/* @__PURE__ */
|
|
4161
|
-
/* @__PURE__ */
|
|
4210
|
+
/* @__PURE__ */ jsx93("rect", { width: "20", height: "16", x: "2", y: "4", rx: "2" }),
|
|
4211
|
+
/* @__PURE__ */ jsx93("path", { d: "m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7" })
|
|
4162
4212
|
]
|
|
4163
4213
|
}
|
|
4164
4214
|
);
|
|
4165
4215
|
}
|
|
4166
4216
|
|
|
4167
4217
|
// src/components/icons/map-pin/index.tsx
|
|
4168
|
-
import { jsx as
|
|
4218
|
+
import { jsx as jsx94, jsxs as jsxs71 } from "react/jsx-runtime";
|
|
4169
4219
|
function MapPinIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4170
4220
|
return /* @__PURE__ */ jsxs71(
|
|
4171
4221
|
"svg",
|
|
@@ -4182,15 +4232,15 @@ function MapPinIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4182
4232
|
"aria-hidden": "true",
|
|
4183
4233
|
...rest,
|
|
4184
4234
|
children: [
|
|
4185
|
-
/* @__PURE__ */
|
|
4186
|
-
/* @__PURE__ */
|
|
4235
|
+
/* @__PURE__ */ jsx94("path", { d: "M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0" }),
|
|
4236
|
+
/* @__PURE__ */ jsx94("circle", { cx: "12", cy: "10", r: "3" })
|
|
4187
4237
|
]
|
|
4188
4238
|
}
|
|
4189
4239
|
);
|
|
4190
4240
|
}
|
|
4191
4241
|
|
|
4192
4242
|
// src/components/icons/maximize/index.tsx
|
|
4193
|
-
import { jsx as
|
|
4243
|
+
import { jsx as jsx95, jsxs as jsxs72 } from "react/jsx-runtime";
|
|
4194
4244
|
function MaximizeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4195
4245
|
return /* @__PURE__ */ jsxs72(
|
|
4196
4246
|
"svg",
|
|
@@ -4207,17 +4257,17 @@ function MaximizeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4207
4257
|
"aria-hidden": "true",
|
|
4208
4258
|
...rest,
|
|
4209
4259
|
children: [
|
|
4210
|
-
/* @__PURE__ */
|
|
4211
|
-
/* @__PURE__ */
|
|
4212
|
-
/* @__PURE__ */
|
|
4213
|
-
/* @__PURE__ */
|
|
4260
|
+
/* @__PURE__ */ jsx95("path", { d: "M8 3H5a2 2 0 0 0-2 2v3" }),
|
|
4261
|
+
/* @__PURE__ */ jsx95("path", { d: "M21 8V5a2 2 0 0 0-2-2h-3" }),
|
|
4262
|
+
/* @__PURE__ */ jsx95("path", { d: "M3 16v3a2 2 0 0 0 2 2h3" }),
|
|
4263
|
+
/* @__PURE__ */ jsx95("path", { d: "M16 21h3a2 2 0 0 0 2-2v-3" })
|
|
4214
4264
|
]
|
|
4215
4265
|
}
|
|
4216
4266
|
);
|
|
4217
4267
|
}
|
|
4218
4268
|
|
|
4219
4269
|
// src/components/icons/menu/index.tsx
|
|
4220
|
-
import { jsx as
|
|
4270
|
+
import { jsx as jsx96, jsxs as jsxs73 } from "react/jsx-runtime";
|
|
4221
4271
|
function MenuIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4222
4272
|
return /* @__PURE__ */ jsxs73(
|
|
4223
4273
|
"svg",
|
|
@@ -4234,18 +4284,18 @@ function MenuIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4234
4284
|
"aria-hidden": "true",
|
|
4235
4285
|
...rest,
|
|
4236
4286
|
children: [
|
|
4237
|
-
/* @__PURE__ */
|
|
4238
|
-
/* @__PURE__ */
|
|
4239
|
-
/* @__PURE__ */
|
|
4287
|
+
/* @__PURE__ */ jsx96("line", { x1: "4", x2: "20", y1: "12", y2: "12" }),
|
|
4288
|
+
/* @__PURE__ */ jsx96("line", { x1: "4", x2: "20", y1: "6", y2: "6" }),
|
|
4289
|
+
/* @__PURE__ */ jsx96("line", { x1: "4", x2: "20", y1: "18", y2: "18" })
|
|
4240
4290
|
]
|
|
4241
4291
|
}
|
|
4242
4292
|
);
|
|
4243
4293
|
}
|
|
4244
4294
|
|
|
4245
4295
|
// src/components/icons/message-circle/index.tsx
|
|
4246
|
-
import { jsx as
|
|
4296
|
+
import { jsx as jsx97 } from "react/jsx-runtime";
|
|
4247
4297
|
function MessageCircleIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4248
|
-
return /* @__PURE__ */
|
|
4298
|
+
return /* @__PURE__ */ jsx97(
|
|
4249
4299
|
"svg",
|
|
4250
4300
|
{
|
|
4251
4301
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4259,15 +4309,15 @@ function MessageCircleIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4259
4309
|
strokeLinejoin: "round",
|
|
4260
4310
|
"aria-hidden": "true",
|
|
4261
4311
|
...rest,
|
|
4262
|
-
children: /* @__PURE__ */
|
|
4312
|
+
children: /* @__PURE__ */ jsx97("path", { d: "M7.9 20A9 9 0 1 0 4 16.1L2 22Z" })
|
|
4263
4313
|
}
|
|
4264
4314
|
);
|
|
4265
4315
|
}
|
|
4266
4316
|
|
|
4267
4317
|
// src/components/icons/message-square/index.tsx
|
|
4268
|
-
import { jsx as
|
|
4318
|
+
import { jsx as jsx98 } from "react/jsx-runtime";
|
|
4269
4319
|
function MessageSquareIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4270
|
-
return /* @__PURE__ */
|
|
4320
|
+
return /* @__PURE__ */ jsx98(
|
|
4271
4321
|
"svg",
|
|
4272
4322
|
{
|
|
4273
4323
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4281,13 +4331,13 @@ function MessageSquareIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4281
4331
|
strokeLinejoin: "round",
|
|
4282
4332
|
"aria-hidden": "true",
|
|
4283
4333
|
...rest,
|
|
4284
|
-
children: /* @__PURE__ */
|
|
4334
|
+
children: /* @__PURE__ */ jsx98("path", { d: "M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z" })
|
|
4285
4335
|
}
|
|
4286
4336
|
);
|
|
4287
4337
|
}
|
|
4288
4338
|
|
|
4289
4339
|
// src/components/icons/mic/index.tsx
|
|
4290
|
-
import { jsx as
|
|
4340
|
+
import { jsx as jsx99, jsxs as jsxs74 } from "react/jsx-runtime";
|
|
4291
4341
|
function MicIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4292
4342
|
return /* @__PURE__ */ jsxs74(
|
|
4293
4343
|
"svg",
|
|
@@ -4304,16 +4354,16 @@ function MicIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4304
4354
|
"aria-hidden": "true",
|
|
4305
4355
|
...rest,
|
|
4306
4356
|
children: [
|
|
4307
|
-
/* @__PURE__ */
|
|
4308
|
-
/* @__PURE__ */
|
|
4309
|
-
/* @__PURE__ */
|
|
4357
|
+
/* @__PURE__ */ jsx99("path", { d: "M12 2a3 3 0 0 0-3 3v7a3 3 0 0 0 6 0V5a3 3 0 0 0-3-3Z" }),
|
|
4358
|
+
/* @__PURE__ */ jsx99("path", { d: "M19 10v2a7 7 0 0 1-14 0v-2" }),
|
|
4359
|
+
/* @__PURE__ */ jsx99("line", { x1: "12", x2: "12", y1: "19", y2: "22" })
|
|
4310
4360
|
]
|
|
4311
4361
|
}
|
|
4312
4362
|
);
|
|
4313
4363
|
}
|
|
4314
4364
|
|
|
4315
4365
|
// src/components/icons/minimize/index.tsx
|
|
4316
|
-
import { jsx as
|
|
4366
|
+
import { jsx as jsx100, jsxs as jsxs75 } from "react/jsx-runtime";
|
|
4317
4367
|
function MinimizeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4318
4368
|
return /* @__PURE__ */ jsxs75(
|
|
4319
4369
|
"svg",
|
|
@@ -4330,19 +4380,19 @@ function MinimizeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4330
4380
|
"aria-hidden": "true",
|
|
4331
4381
|
...rest,
|
|
4332
4382
|
children: [
|
|
4333
|
-
/* @__PURE__ */
|
|
4334
|
-
/* @__PURE__ */
|
|
4335
|
-
/* @__PURE__ */
|
|
4336
|
-
/* @__PURE__ */
|
|
4383
|
+
/* @__PURE__ */ jsx100("path", { d: "M8 3v3a2 2 0 0 1-2 2H3" }),
|
|
4384
|
+
/* @__PURE__ */ jsx100("path", { d: "M21 8h-3a2 2 0 0 1-2-2V3" }),
|
|
4385
|
+
/* @__PURE__ */ jsx100("path", { d: "M3 16h3a2 2 0 0 1 2 2v3" }),
|
|
4386
|
+
/* @__PURE__ */ jsx100("path", { d: "M16 21v-3a2 2 0 0 1 2-2h3" })
|
|
4337
4387
|
]
|
|
4338
4388
|
}
|
|
4339
4389
|
);
|
|
4340
4390
|
}
|
|
4341
4391
|
|
|
4342
4392
|
// src/components/icons/minus/index.tsx
|
|
4343
|
-
import { jsx as
|
|
4393
|
+
import { jsx as jsx101 } from "react/jsx-runtime";
|
|
4344
4394
|
function MinusIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4345
|
-
return /* @__PURE__ */
|
|
4395
|
+
return /* @__PURE__ */ jsx101(
|
|
4346
4396
|
"svg",
|
|
4347
4397
|
{
|
|
4348
4398
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4356,15 +4406,15 @@ function MinusIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4356
4406
|
strokeLinejoin: "round",
|
|
4357
4407
|
"aria-hidden": "true",
|
|
4358
4408
|
...rest,
|
|
4359
|
-
children: /* @__PURE__ */
|
|
4409
|
+
children: /* @__PURE__ */ jsx101("path", { d: "M5 12h14" })
|
|
4360
4410
|
}
|
|
4361
4411
|
);
|
|
4362
4412
|
}
|
|
4363
4413
|
|
|
4364
4414
|
// src/components/icons/moon/index.tsx
|
|
4365
|
-
import { jsx as
|
|
4415
|
+
import { jsx as jsx102 } from "react/jsx-runtime";
|
|
4366
4416
|
function MoonIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4367
|
-
return /* @__PURE__ */
|
|
4417
|
+
return /* @__PURE__ */ jsx102(
|
|
4368
4418
|
"svg",
|
|
4369
4419
|
{
|
|
4370
4420
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4378,13 +4428,13 @@ function MoonIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4378
4428
|
strokeLinejoin: "round",
|
|
4379
4429
|
"aria-hidden": "true",
|
|
4380
4430
|
...rest,
|
|
4381
|
-
children: /* @__PURE__ */
|
|
4431
|
+
children: /* @__PURE__ */ jsx102("path", { d: "M12 3a6 6 0 0 0 9 9 9 9 0 1 1-9-9Z" })
|
|
4382
4432
|
}
|
|
4383
4433
|
);
|
|
4384
4434
|
}
|
|
4385
4435
|
|
|
4386
4436
|
// src/components/icons/more-horizontal/index.tsx
|
|
4387
|
-
import { jsx as
|
|
4437
|
+
import { jsx as jsx103, jsxs as jsxs76 } from "react/jsx-runtime";
|
|
4388
4438
|
function MoreHorizontalIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4389
4439
|
return /* @__PURE__ */ jsxs76(
|
|
4390
4440
|
"svg",
|
|
@@ -4401,16 +4451,16 @@ function MoreHorizontalIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4401
4451
|
"aria-hidden": "true",
|
|
4402
4452
|
...rest,
|
|
4403
4453
|
children: [
|
|
4404
|
-
/* @__PURE__ */
|
|
4405
|
-
/* @__PURE__ */
|
|
4406
|
-
/* @__PURE__ */
|
|
4454
|
+
/* @__PURE__ */ jsx103("circle", { cx: "12", cy: "12", r: "1" }),
|
|
4455
|
+
/* @__PURE__ */ jsx103("circle", { cx: "19", cy: "12", r: "1" }),
|
|
4456
|
+
/* @__PURE__ */ jsx103("circle", { cx: "5", cy: "12", r: "1" })
|
|
4407
4457
|
]
|
|
4408
4458
|
}
|
|
4409
4459
|
);
|
|
4410
4460
|
}
|
|
4411
4461
|
|
|
4412
4462
|
// src/components/icons/more-vertical/index.tsx
|
|
4413
|
-
import { jsx as
|
|
4463
|
+
import { jsx as jsx104, jsxs as jsxs77 } from "react/jsx-runtime";
|
|
4414
4464
|
function MoreVerticalIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4415
4465
|
return /* @__PURE__ */ jsxs77(
|
|
4416
4466
|
"svg",
|
|
@@ -4427,16 +4477,16 @@ function MoreVerticalIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4427
4477
|
"aria-hidden": "true",
|
|
4428
4478
|
...rest,
|
|
4429
4479
|
children: [
|
|
4430
|
-
/* @__PURE__ */
|
|
4431
|
-
/* @__PURE__ */
|
|
4432
|
-
/* @__PURE__ */
|
|
4480
|
+
/* @__PURE__ */ jsx104("circle", { cx: "12", cy: "12", r: "1" }),
|
|
4481
|
+
/* @__PURE__ */ jsx104("circle", { cx: "12", cy: "5", r: "1" }),
|
|
4482
|
+
/* @__PURE__ */ jsx104("circle", { cx: "12", cy: "19", r: "1" })
|
|
4433
4483
|
]
|
|
4434
4484
|
}
|
|
4435
4485
|
);
|
|
4436
4486
|
}
|
|
4437
4487
|
|
|
4438
4488
|
// src/components/icons/package/index.tsx
|
|
4439
|
-
import { jsx as
|
|
4489
|
+
import { jsx as jsx105, jsxs as jsxs78 } from "react/jsx-runtime";
|
|
4440
4490
|
function PackageIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4441
4491
|
return /* @__PURE__ */ jsxs78(
|
|
4442
4492
|
"svg",
|
|
@@ -4453,18 +4503,18 @@ function PackageIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4453
4503
|
"aria-hidden": "true",
|
|
4454
4504
|
...rest,
|
|
4455
4505
|
children: [
|
|
4456
|
-
/* @__PURE__ */
|
|
4457
|
-
/* @__PURE__ */
|
|
4458
|
-
/* @__PURE__ */
|
|
4506
|
+
/* @__PURE__ */ jsx105("path", { d: "M11 21.73a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73z" }),
|
|
4507
|
+
/* @__PURE__ */ jsx105("path", { d: "M3.3 7 12 12l8.7-5" }),
|
|
4508
|
+
/* @__PURE__ */ jsx105("path", { d: "M12 22V12" })
|
|
4459
4509
|
]
|
|
4460
4510
|
}
|
|
4461
4511
|
);
|
|
4462
4512
|
}
|
|
4463
4513
|
|
|
4464
4514
|
// src/components/icons/paperclip/index.tsx
|
|
4465
|
-
import { jsx as
|
|
4515
|
+
import { jsx as jsx106 } from "react/jsx-runtime";
|
|
4466
4516
|
function PaperclipIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4467
|
-
return /* @__PURE__ */
|
|
4517
|
+
return /* @__PURE__ */ jsx106(
|
|
4468
4518
|
"svg",
|
|
4469
4519
|
{
|
|
4470
4520
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4478,13 +4528,13 @@ function PaperclipIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4478
4528
|
strokeLinejoin: "round",
|
|
4479
4529
|
"aria-hidden": "true",
|
|
4480
4530
|
...rest,
|
|
4481
|
-
children: /* @__PURE__ */
|
|
4531
|
+
children: /* @__PURE__ */ jsx106("path", { d: "M21.44 11.05l-9.19 9.19a6 6 0 0 1-8.49-8.49l8.57-8.57A4 4 0 1 1 18 8.84l-8.59 8.57a2 2 0 0 1-2.83-2.83l8.49-8.48" })
|
|
4482
4532
|
}
|
|
4483
4533
|
);
|
|
4484
4534
|
}
|
|
4485
4535
|
|
|
4486
4536
|
// src/components/icons/pause/index.tsx
|
|
4487
|
-
import { jsx as
|
|
4537
|
+
import { jsx as jsx107, jsxs as jsxs79 } from "react/jsx-runtime";
|
|
4488
4538
|
function PauseIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4489
4539
|
return /* @__PURE__ */ jsxs79(
|
|
4490
4540
|
"svg",
|
|
@@ -4501,15 +4551,15 @@ function PauseIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4501
4551
|
"aria-hidden": "true",
|
|
4502
4552
|
...rest,
|
|
4503
4553
|
children: [
|
|
4504
|
-
/* @__PURE__ */
|
|
4505
|
-
/* @__PURE__ */
|
|
4554
|
+
/* @__PURE__ */ jsx107("rect", { x: "14", y: "4", width: "4", height: "16", rx: "1" }),
|
|
4555
|
+
/* @__PURE__ */ jsx107("rect", { x: "6", y: "4", width: "4", height: "16", rx: "1" })
|
|
4506
4556
|
]
|
|
4507
4557
|
}
|
|
4508
4558
|
);
|
|
4509
4559
|
}
|
|
4510
4560
|
|
|
4511
4561
|
// src/components/icons/pencil/index.tsx
|
|
4512
|
-
import { jsx as
|
|
4562
|
+
import { jsx as jsx108, jsxs as jsxs80 } from "react/jsx-runtime";
|
|
4513
4563
|
function PencilIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4514
4564
|
return /* @__PURE__ */ jsxs80(
|
|
4515
4565
|
"svg",
|
|
@@ -4526,17 +4576,17 @@ function PencilIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4526
4576
|
"aria-hidden": "true",
|
|
4527
4577
|
...rest,
|
|
4528
4578
|
children: [
|
|
4529
|
-
/* @__PURE__ */
|
|
4530
|
-
/* @__PURE__ */
|
|
4579
|
+
/* @__PURE__ */ jsx108("path", { d: "M17 3a2.85 2.83 0 1 1 4 4L7.5 20.5 2 22l1.5-5.5Z" }),
|
|
4580
|
+
/* @__PURE__ */ jsx108("path", { d: "m15 5 4 4" })
|
|
4531
4581
|
]
|
|
4532
4582
|
}
|
|
4533
4583
|
);
|
|
4534
4584
|
}
|
|
4535
4585
|
|
|
4536
4586
|
// src/components/icons/phone/index.tsx
|
|
4537
|
-
import { jsx as
|
|
4587
|
+
import { jsx as jsx109 } from "react/jsx-runtime";
|
|
4538
4588
|
function PhoneIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4539
|
-
return /* @__PURE__ */
|
|
4589
|
+
return /* @__PURE__ */ jsx109(
|
|
4540
4590
|
"svg",
|
|
4541
4591
|
{
|
|
4542
4592
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4550,15 +4600,15 @@ function PhoneIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4550
4600
|
strokeLinejoin: "round",
|
|
4551
4601
|
"aria-hidden": "true",
|
|
4552
4602
|
...rest,
|
|
4553
|
-
children: /* @__PURE__ */
|
|
4603
|
+
children: /* @__PURE__ */ jsx109("path", { d: "M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z" })
|
|
4554
4604
|
}
|
|
4555
4605
|
);
|
|
4556
4606
|
}
|
|
4557
4607
|
|
|
4558
4608
|
// src/components/icons/play/index.tsx
|
|
4559
|
-
import { jsx as
|
|
4609
|
+
import { jsx as jsx110 } from "react/jsx-runtime";
|
|
4560
4610
|
function PlayIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4561
|
-
return /* @__PURE__ */
|
|
4611
|
+
return /* @__PURE__ */ jsx110(
|
|
4562
4612
|
"svg",
|
|
4563
4613
|
{
|
|
4564
4614
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4572,13 +4622,13 @@ function PlayIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4572
4622
|
strokeLinejoin: "round",
|
|
4573
4623
|
"aria-hidden": "true",
|
|
4574
4624
|
...rest,
|
|
4575
|
-
children: /* @__PURE__ */
|
|
4625
|
+
children: /* @__PURE__ */ jsx110("polygon", { points: "6 3 20 12 6 21 6 3" })
|
|
4576
4626
|
}
|
|
4577
4627
|
);
|
|
4578
4628
|
}
|
|
4579
4629
|
|
|
4580
4630
|
// src/components/icons/plus/index.tsx
|
|
4581
|
-
import { jsx as
|
|
4631
|
+
import { jsx as jsx111, jsxs as jsxs81 } from "react/jsx-runtime";
|
|
4582
4632
|
function PlusIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4583
4633
|
return /* @__PURE__ */ jsxs81(
|
|
4584
4634
|
"svg",
|
|
@@ -4595,15 +4645,15 @@ function PlusIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4595
4645
|
"aria-hidden": "true",
|
|
4596
4646
|
...rest,
|
|
4597
4647
|
children: [
|
|
4598
|
-
/* @__PURE__ */
|
|
4599
|
-
/* @__PURE__ */
|
|
4648
|
+
/* @__PURE__ */ jsx111("path", { d: "M5 12h14" }),
|
|
4649
|
+
/* @__PURE__ */ jsx111("path", { d: "M12 5v14" })
|
|
4600
4650
|
]
|
|
4601
4651
|
}
|
|
4602
4652
|
);
|
|
4603
4653
|
}
|
|
4604
4654
|
|
|
4605
4655
|
// src/components/icons/printer/index.tsx
|
|
4606
|
-
import { jsx as
|
|
4656
|
+
import { jsx as jsx112, jsxs as jsxs82 } from "react/jsx-runtime";
|
|
4607
4657
|
function PrinterIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4608
4658
|
return /* @__PURE__ */ jsxs82(
|
|
4609
4659
|
"svg",
|
|
@@ -4620,16 +4670,16 @@ function PrinterIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4620
4670
|
"aria-hidden": "true",
|
|
4621
4671
|
...rest,
|
|
4622
4672
|
children: [
|
|
4623
|
-
/* @__PURE__ */
|
|
4624
|
-
/* @__PURE__ */
|
|
4625
|
-
/* @__PURE__ */
|
|
4673
|
+
/* @__PURE__ */ jsx112("polyline", { points: "6 9 6 2 18 2 18 9" }),
|
|
4674
|
+
/* @__PURE__ */ jsx112("path", { d: "M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2" }),
|
|
4675
|
+
/* @__PURE__ */ jsx112("rect", { width: "12", height: "8", x: "6", y: "14" })
|
|
4626
4676
|
]
|
|
4627
4677
|
}
|
|
4628
4678
|
);
|
|
4629
4679
|
}
|
|
4630
4680
|
|
|
4631
4681
|
// src/components/icons/redo/index.tsx
|
|
4632
|
-
import { jsx as
|
|
4682
|
+
import { jsx as jsx113, jsxs as jsxs83 } from "react/jsx-runtime";
|
|
4633
4683
|
function RedoIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4634
4684
|
return /* @__PURE__ */ jsxs83(
|
|
4635
4685
|
"svg",
|
|
@@ -4646,15 +4696,15 @@ function RedoIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4646
4696
|
"aria-hidden": "true",
|
|
4647
4697
|
...rest,
|
|
4648
4698
|
children: [
|
|
4649
|
-
/* @__PURE__ */
|
|
4650
|
-
/* @__PURE__ */
|
|
4699
|
+
/* @__PURE__ */ jsx113("path", { d: "M21 7v6h-6" }),
|
|
4700
|
+
/* @__PURE__ */ jsx113("path", { d: "M3 17a9 9 0 0 1 9-9 9 9 0 0 1 6 2.3l3 2.7" })
|
|
4651
4701
|
]
|
|
4652
4702
|
}
|
|
4653
4703
|
);
|
|
4654
4704
|
}
|
|
4655
4705
|
|
|
4656
4706
|
// src/components/icons/refresh-cw/index.tsx
|
|
4657
|
-
import { jsx as
|
|
4707
|
+
import { jsx as jsx114, jsxs as jsxs84 } from "react/jsx-runtime";
|
|
4658
4708
|
function RefreshCwIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4659
4709
|
return /* @__PURE__ */ jsxs84(
|
|
4660
4710
|
"svg",
|
|
@@ -4671,17 +4721,17 @@ function RefreshCwIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4671
4721
|
"aria-hidden": "true",
|
|
4672
4722
|
...rest,
|
|
4673
4723
|
children: [
|
|
4674
|
-
/* @__PURE__ */
|
|
4675
|
-
/* @__PURE__ */
|
|
4676
|
-
/* @__PURE__ */
|
|
4677
|
-
/* @__PURE__ */
|
|
4724
|
+
/* @__PURE__ */ jsx114("path", { d: "M3 12a9 9 0 0 1 9-9 9.75 9.75 0 0 1 6.74 2.74L21 8" }),
|
|
4725
|
+
/* @__PURE__ */ jsx114("path", { d: "M21 3v5h-5" }),
|
|
4726
|
+
/* @__PURE__ */ jsx114("path", { d: "M21 12a9 9 0 0 1-9 9 9.75 9.75 0 0 1-6.74-2.74L3 16" }),
|
|
4727
|
+
/* @__PURE__ */ jsx114("path", { d: "M3 21v-5h5" })
|
|
4678
4728
|
]
|
|
4679
4729
|
}
|
|
4680
4730
|
);
|
|
4681
4731
|
}
|
|
4682
4732
|
|
|
4683
4733
|
// src/components/icons/save/index.tsx
|
|
4684
|
-
import { jsx as
|
|
4734
|
+
import { jsx as jsx115, jsxs as jsxs85 } from "react/jsx-runtime";
|
|
4685
4735
|
function SaveIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4686
4736
|
return /* @__PURE__ */ jsxs85(
|
|
4687
4737
|
"svg",
|
|
@@ -4698,16 +4748,16 @@ function SaveIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4698
4748
|
"aria-hidden": "true",
|
|
4699
4749
|
...rest,
|
|
4700
4750
|
children: [
|
|
4701
|
-
/* @__PURE__ */
|
|
4702
|
-
/* @__PURE__ */
|
|
4703
|
-
/* @__PURE__ */
|
|
4751
|
+
/* @__PURE__ */ jsx115("path", { d: "M15.2 3a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z" }),
|
|
4752
|
+
/* @__PURE__ */ jsx115("path", { d: "M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7" }),
|
|
4753
|
+
/* @__PURE__ */ jsx115("path", { d: "M7 3v4a1 1 0 0 0 1 1h7" })
|
|
4704
4754
|
]
|
|
4705
4755
|
}
|
|
4706
4756
|
);
|
|
4707
4757
|
}
|
|
4708
4758
|
|
|
4709
4759
|
// src/components/icons/search/index.tsx
|
|
4710
|
-
import { jsx as
|
|
4760
|
+
import { jsx as jsx116, jsxs as jsxs86 } from "react/jsx-runtime";
|
|
4711
4761
|
function SearchIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4712
4762
|
return /* @__PURE__ */ jsxs86(
|
|
4713
4763
|
"svg",
|
|
@@ -4724,15 +4774,15 @@ function SearchIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4724
4774
|
"aria-hidden": "true",
|
|
4725
4775
|
...rest,
|
|
4726
4776
|
children: [
|
|
4727
|
-
/* @__PURE__ */
|
|
4728
|
-
/* @__PURE__ */
|
|
4777
|
+
/* @__PURE__ */ jsx116("circle", { cx: "11", cy: "11", r: "8" }),
|
|
4778
|
+
/* @__PURE__ */ jsx116("path", { d: "m21 21-4.3-4.3" })
|
|
4729
4779
|
]
|
|
4730
4780
|
}
|
|
4731
4781
|
);
|
|
4732
4782
|
}
|
|
4733
4783
|
|
|
4734
4784
|
// src/components/icons/send/index.tsx
|
|
4735
|
-
import { jsx as
|
|
4785
|
+
import { jsx as jsx117, jsxs as jsxs87 } from "react/jsx-runtime";
|
|
4736
4786
|
function SendIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4737
4787
|
return /* @__PURE__ */ jsxs87(
|
|
4738
4788
|
"svg",
|
|
@@ -4749,15 +4799,15 @@ function SendIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4749
4799
|
"aria-hidden": "true",
|
|
4750
4800
|
...rest,
|
|
4751
4801
|
children: [
|
|
4752
|
-
/* @__PURE__ */
|
|
4753
|
-
/* @__PURE__ */
|
|
4802
|
+
/* @__PURE__ */ jsx117("line", { x1: "22", x2: "11", y1: "2", y2: "13" }),
|
|
4803
|
+
/* @__PURE__ */ jsx117("polygon", { points: "22 2 15 22 11 13 2 9 22 2" })
|
|
4754
4804
|
]
|
|
4755
4805
|
}
|
|
4756
4806
|
);
|
|
4757
4807
|
}
|
|
4758
4808
|
|
|
4759
4809
|
// src/components/icons/settings/index.tsx
|
|
4760
|
-
import { jsx as
|
|
4810
|
+
import { jsx as jsx118, jsxs as jsxs88 } from "react/jsx-runtime";
|
|
4761
4811
|
function SettingsIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4762
4812
|
return /* @__PURE__ */ jsxs88(
|
|
4763
4813
|
"svg",
|
|
@@ -4774,15 +4824,15 @@ function SettingsIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4774
4824
|
"aria-hidden": "true",
|
|
4775
4825
|
...rest,
|
|
4776
4826
|
children: [
|
|
4777
|
-
/* @__PURE__ */
|
|
4778
|
-
/* @__PURE__ */
|
|
4827
|
+
/* @__PURE__ */ jsx118("path", { d: "M12.22 2h-.44a2 2 0 0 0-2 2v.18a2 2 0 0 1-1 1.73l-.43.25a2 2 0 0 1-2 0l-.15-.08a2 2 0 0 0-2.73.73l-.22.38a2 2 0 0 0 .73 2.73l.15.1a2 2 0 0 1 1 1.72v.51a2 2 0 0 1-1 1.74l-.15.09a2 2 0 0 0-.73 2.73l.22.38a2 2 0 0 0 2.73.73l.15-.08a2 2 0 0 1 2 0l.43.25a2 2 0 0 1 1 1.73V20a2 2 0 0 0 2 2h.44a2 2 0 0 0 2-2v-.18a2 2 0 0 1 1-1.73l.43-.25a2 2 0 0 1 2 0l.15.08a2 2 0 0 0 2.73-.73l.22-.39a2 2 0 0 0-.73-2.73l-.15-.08a2 2 0 0 1-1-1.74v-.5a2 2 0 0 1 1-1.74l.15-.09a2 2 0 0 0 .73-2.73l-.22-.38a2 2 0 0 0-2.73-.73l-.15.08a2 2 0 0 1-2 0l-.43-.25a2 2 0 0 1-1-1.73V4a2 2 0 0 0-2-2z" }),
|
|
4828
|
+
/* @__PURE__ */ jsx118("circle", { cx: "12", cy: "12", r: "3" })
|
|
4779
4829
|
]
|
|
4780
4830
|
}
|
|
4781
4831
|
);
|
|
4782
4832
|
}
|
|
4783
4833
|
|
|
4784
4834
|
// src/components/icons/share/index.tsx
|
|
4785
|
-
import { jsx as
|
|
4835
|
+
import { jsx as jsx119, jsxs as jsxs89 } from "react/jsx-runtime";
|
|
4786
4836
|
function ShareIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4787
4837
|
return /* @__PURE__ */ jsxs89(
|
|
4788
4838
|
"svg",
|
|
@@ -4799,18 +4849,18 @@ function ShareIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4799
4849
|
"aria-hidden": "true",
|
|
4800
4850
|
...rest,
|
|
4801
4851
|
children: [
|
|
4802
|
-
/* @__PURE__ */
|
|
4803
|
-
/* @__PURE__ */
|
|
4804
|
-
/* @__PURE__ */
|
|
4852
|
+
/* @__PURE__ */ jsx119("path", { d: "M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8" }),
|
|
4853
|
+
/* @__PURE__ */ jsx119("polyline", { points: "16 6 12 2 8 6" }),
|
|
4854
|
+
/* @__PURE__ */ jsx119("line", { x1: "12", x2: "12", y1: "2", y2: "15" })
|
|
4805
4855
|
]
|
|
4806
4856
|
}
|
|
4807
4857
|
);
|
|
4808
4858
|
}
|
|
4809
4859
|
|
|
4810
4860
|
// src/components/icons/shield/index.tsx
|
|
4811
|
-
import { jsx as
|
|
4861
|
+
import { jsx as jsx120 } from "react/jsx-runtime";
|
|
4812
4862
|
function ShieldIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4813
|
-
return /* @__PURE__ */
|
|
4863
|
+
return /* @__PURE__ */ jsx120(
|
|
4814
4864
|
"svg",
|
|
4815
4865
|
{
|
|
4816
4866
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4824,13 +4874,13 @@ function ShieldIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4824
4874
|
strokeLinejoin: "round",
|
|
4825
4875
|
"aria-hidden": "true",
|
|
4826
4876
|
...rest,
|
|
4827
|
-
children: /* @__PURE__ */
|
|
4877
|
+
children: /* @__PURE__ */ jsx120("path", { d: "M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z" })
|
|
4828
4878
|
}
|
|
4829
4879
|
);
|
|
4830
4880
|
}
|
|
4831
4881
|
|
|
4832
4882
|
// src/components/icons/shield-check/index.tsx
|
|
4833
|
-
import { jsx as
|
|
4883
|
+
import { jsx as jsx121, jsxs as jsxs90 } from "react/jsx-runtime";
|
|
4834
4884
|
function ShieldCheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4835
4885
|
return /* @__PURE__ */ jsxs90(
|
|
4836
4886
|
"svg",
|
|
@@ -4847,15 +4897,15 @@ function ShieldCheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4847
4897
|
"aria-hidden": "true",
|
|
4848
4898
|
...rest,
|
|
4849
4899
|
children: [
|
|
4850
|
-
/* @__PURE__ */
|
|
4851
|
-
/* @__PURE__ */
|
|
4900
|
+
/* @__PURE__ */ jsx121("path", { d: "M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z" }),
|
|
4901
|
+
/* @__PURE__ */ jsx121("path", { d: "m9 12 2 2 4-4" })
|
|
4852
4902
|
]
|
|
4853
4903
|
}
|
|
4854
4904
|
);
|
|
4855
4905
|
}
|
|
4856
4906
|
|
|
4857
4907
|
// src/components/icons/shopping-bag/index.tsx
|
|
4858
|
-
import { jsx as
|
|
4908
|
+
import { jsx as jsx122, jsxs as jsxs91 } from "react/jsx-runtime";
|
|
4859
4909
|
function ShoppingBagIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4860
4910
|
return /* @__PURE__ */ jsxs91(
|
|
4861
4911
|
"svg",
|
|
@@ -4872,16 +4922,16 @@ function ShoppingBagIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4872
4922
|
"aria-hidden": "true",
|
|
4873
4923
|
...rest,
|
|
4874
4924
|
children: [
|
|
4875
|
-
/* @__PURE__ */
|
|
4876
|
-
/* @__PURE__ */
|
|
4877
|
-
/* @__PURE__ */
|
|
4925
|
+
/* @__PURE__ */ jsx122("path", { d: "M6 2 3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4Z" }),
|
|
4926
|
+
/* @__PURE__ */ jsx122("path", { d: "M3 6h18" }),
|
|
4927
|
+
/* @__PURE__ */ jsx122("path", { d: "M16 10a4 4 0 0 1-8 0" })
|
|
4878
4928
|
]
|
|
4879
4929
|
}
|
|
4880
4930
|
);
|
|
4881
4931
|
}
|
|
4882
4932
|
|
|
4883
4933
|
// src/components/icons/shopping-cart/index.tsx
|
|
4884
|
-
import { jsx as
|
|
4934
|
+
import { jsx as jsx123, jsxs as jsxs92 } from "react/jsx-runtime";
|
|
4885
4935
|
function ShoppingCartIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4886
4936
|
return /* @__PURE__ */ jsxs92(
|
|
4887
4937
|
"svg",
|
|
@@ -4898,16 +4948,16 @@ function ShoppingCartIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4898
4948
|
"aria-hidden": "true",
|
|
4899
4949
|
...rest,
|
|
4900
4950
|
children: [
|
|
4901
|
-
/* @__PURE__ */
|
|
4902
|
-
/* @__PURE__ */
|
|
4903
|
-
/* @__PURE__ */
|
|
4951
|
+
/* @__PURE__ */ jsx123("circle", { cx: "8", cy: "21", r: "1" }),
|
|
4952
|
+
/* @__PURE__ */ jsx123("circle", { cx: "19", cy: "21", r: "1" }),
|
|
4953
|
+
/* @__PURE__ */ jsx123("path", { d: "M2.05 2.05h2l2.66 12.42a2 2 0 0 0 2 1.58h9.78a2 2 0 0 0 1.95-1.57l1.65-7.43H5.12" })
|
|
4904
4954
|
]
|
|
4905
4955
|
}
|
|
4906
4956
|
);
|
|
4907
4957
|
}
|
|
4908
4958
|
|
|
4909
4959
|
// src/components/icons/sidebar/index.tsx
|
|
4910
|
-
import { jsx as
|
|
4960
|
+
import { jsx as jsx124, jsxs as jsxs93 } from "react/jsx-runtime";
|
|
4911
4961
|
function SidebarIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4912
4962
|
return /* @__PURE__ */ jsxs93(
|
|
4913
4963
|
"svg",
|
|
@@ -4924,15 +4974,15 @@ function SidebarIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4924
4974
|
"aria-hidden": "true",
|
|
4925
4975
|
...rest,
|
|
4926
4976
|
children: [
|
|
4927
|
-
/* @__PURE__ */
|
|
4928
|
-
/* @__PURE__ */
|
|
4977
|
+
/* @__PURE__ */ jsx124("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }),
|
|
4978
|
+
/* @__PURE__ */ jsx124("path", { d: "M9 3v18" })
|
|
4929
4979
|
]
|
|
4930
4980
|
}
|
|
4931
4981
|
);
|
|
4932
4982
|
}
|
|
4933
4983
|
|
|
4934
4984
|
// src/components/icons/skip-back/index.tsx
|
|
4935
|
-
import { jsx as
|
|
4985
|
+
import { jsx as jsx125, jsxs as jsxs94 } from "react/jsx-runtime";
|
|
4936
4986
|
function SkipBackIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4937
4987
|
return /* @__PURE__ */ jsxs94(
|
|
4938
4988
|
"svg",
|
|
@@ -4949,15 +4999,15 @@ function SkipBackIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4949
4999
|
"aria-hidden": "true",
|
|
4950
5000
|
...rest,
|
|
4951
5001
|
children: [
|
|
4952
|
-
/* @__PURE__ */
|
|
4953
|
-
/* @__PURE__ */
|
|
5002
|
+
/* @__PURE__ */ jsx125("polygon", { points: "19 20 9 12 19 4 19 20" }),
|
|
5003
|
+
/* @__PURE__ */ jsx125("line", { x1: "5", x2: "5", y1: "19", y2: "5" })
|
|
4954
5004
|
]
|
|
4955
5005
|
}
|
|
4956
5006
|
);
|
|
4957
5007
|
}
|
|
4958
5008
|
|
|
4959
5009
|
// src/components/icons/skip-forward/index.tsx
|
|
4960
|
-
import { jsx as
|
|
5010
|
+
import { jsx as jsx126, jsxs as jsxs95 } from "react/jsx-runtime";
|
|
4961
5011
|
function SkipForwardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4962
5012
|
return /* @__PURE__ */ jsxs95(
|
|
4963
5013
|
"svg",
|
|
@@ -4974,15 +5024,15 @@ function SkipForwardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4974
5024
|
"aria-hidden": "true",
|
|
4975
5025
|
...rest,
|
|
4976
5026
|
children: [
|
|
4977
|
-
/* @__PURE__ */
|
|
4978
|
-
/* @__PURE__ */
|
|
5027
|
+
/* @__PURE__ */ jsx126("polygon", { points: "5 4 15 12 5 20 5 4" }),
|
|
5028
|
+
/* @__PURE__ */ jsx126("line", { x1: "19", x2: "19", y1: "5", y2: "19" })
|
|
4979
5029
|
]
|
|
4980
5030
|
}
|
|
4981
5031
|
);
|
|
4982
5032
|
}
|
|
4983
5033
|
|
|
4984
5034
|
// src/components/icons/sliders/index.tsx
|
|
4985
|
-
import { jsx as
|
|
5035
|
+
import { jsx as jsx127, jsxs as jsxs96 } from "react/jsx-runtime";
|
|
4986
5036
|
function SlidersIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4987
5037
|
return /* @__PURE__ */ jsxs96(
|
|
4988
5038
|
"svg",
|
|
@@ -4999,22 +5049,22 @@ function SlidersIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4999
5049
|
"aria-hidden": "true",
|
|
5000
5050
|
...rest,
|
|
5001
5051
|
children: [
|
|
5002
|
-
/* @__PURE__ */
|
|
5003
|
-
/* @__PURE__ */
|
|
5004
|
-
/* @__PURE__ */
|
|
5005
|
-
/* @__PURE__ */
|
|
5006
|
-
/* @__PURE__ */
|
|
5007
|
-
/* @__PURE__ */
|
|
5008
|
-
/* @__PURE__ */
|
|
5009
|
-
/* @__PURE__ */
|
|
5010
|
-
/* @__PURE__ */
|
|
5052
|
+
/* @__PURE__ */ jsx127("line", { x1: "21", x2: "14", y1: "4", y2: "4" }),
|
|
5053
|
+
/* @__PURE__ */ jsx127("line", { x1: "10", x2: "3", y1: "4", y2: "4" }),
|
|
5054
|
+
/* @__PURE__ */ jsx127("line", { x1: "21", x2: "12", y1: "12", y2: "12" }),
|
|
5055
|
+
/* @__PURE__ */ jsx127("line", { x1: "8", x2: "3", y1: "12", y2: "12" }),
|
|
5056
|
+
/* @__PURE__ */ jsx127("line", { x1: "21", x2: "16", y1: "20", y2: "20" }),
|
|
5057
|
+
/* @__PURE__ */ jsx127("line", { x1: "12", x2: "3", y1: "20", y2: "20" }),
|
|
5058
|
+
/* @__PURE__ */ jsx127("line", { x1: "14", x2: "14", y1: "2", y2: "6" }),
|
|
5059
|
+
/* @__PURE__ */ jsx127("line", { x1: "8", x2: "8", y1: "10", y2: "14" }),
|
|
5060
|
+
/* @__PURE__ */ jsx127("line", { x1: "16", x2: "16", y1: "18", y2: "22" })
|
|
5011
5061
|
]
|
|
5012
5062
|
}
|
|
5013
5063
|
);
|
|
5014
5064
|
}
|
|
5015
5065
|
|
|
5016
5066
|
// src/components/icons/smile/index.tsx
|
|
5017
|
-
import { jsx as
|
|
5067
|
+
import { jsx as jsx128, jsxs as jsxs97 } from "react/jsx-runtime";
|
|
5018
5068
|
function SmileIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5019
5069
|
return /* @__PURE__ */ jsxs97(
|
|
5020
5070
|
"svg",
|
|
@@ -5031,19 +5081,19 @@ function SmileIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5031
5081
|
"aria-hidden": "true",
|
|
5032
5082
|
...rest,
|
|
5033
5083
|
children: [
|
|
5034
|
-
/* @__PURE__ */
|
|
5035
|
-
/* @__PURE__ */
|
|
5036
|
-
/* @__PURE__ */
|
|
5037
|
-
/* @__PURE__ */
|
|
5084
|
+
/* @__PURE__ */ jsx128("circle", { cx: "12", cy: "12", r: "10" }),
|
|
5085
|
+
/* @__PURE__ */ jsx128("path", { d: "M8 14s1.5 2 4 2 4-2 4-2" }),
|
|
5086
|
+
/* @__PURE__ */ jsx128("line", { x1: "9", x2: "9.01", y1: "9", y2: "9" }),
|
|
5087
|
+
/* @__PURE__ */ jsx128("line", { x1: "15", x2: "15.01", y1: "9", y2: "9" })
|
|
5038
5088
|
]
|
|
5039
5089
|
}
|
|
5040
5090
|
);
|
|
5041
5091
|
}
|
|
5042
5092
|
|
|
5043
5093
|
// src/components/icons/star/index.tsx
|
|
5044
|
-
import { jsx as
|
|
5094
|
+
import { jsx as jsx129 } from "react/jsx-runtime";
|
|
5045
5095
|
function StarIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5046
|
-
return /* @__PURE__ */
|
|
5096
|
+
return /* @__PURE__ */ jsx129(
|
|
5047
5097
|
"svg",
|
|
5048
5098
|
{
|
|
5049
5099
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5057,13 +5107,13 @@ function StarIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5057
5107
|
strokeLinejoin: "round",
|
|
5058
5108
|
"aria-hidden": "true",
|
|
5059
5109
|
...rest,
|
|
5060
|
-
children: /* @__PURE__ */
|
|
5110
|
+
children: /* @__PURE__ */ jsx129("polygon", { points: "12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2" })
|
|
5061
5111
|
}
|
|
5062
5112
|
);
|
|
5063
5113
|
}
|
|
5064
5114
|
|
|
5065
5115
|
// src/components/icons/sun/index.tsx
|
|
5066
|
-
import { jsx as
|
|
5116
|
+
import { jsx as jsx130, jsxs as jsxs98 } from "react/jsx-runtime";
|
|
5067
5117
|
function SunIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5068
5118
|
return /* @__PURE__ */ jsxs98(
|
|
5069
5119
|
"svg",
|
|
@@ -5080,22 +5130,22 @@ function SunIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5080
5130
|
"aria-hidden": "true",
|
|
5081
5131
|
...rest,
|
|
5082
5132
|
children: [
|
|
5083
|
-
/* @__PURE__ */
|
|
5084
|
-
/* @__PURE__ */
|
|
5085
|
-
/* @__PURE__ */
|
|
5086
|
-
/* @__PURE__ */
|
|
5087
|
-
/* @__PURE__ */
|
|
5088
|
-
/* @__PURE__ */
|
|
5089
|
-
/* @__PURE__ */
|
|
5090
|
-
/* @__PURE__ */
|
|
5091
|
-
/* @__PURE__ */
|
|
5133
|
+
/* @__PURE__ */ jsx130("circle", { cx: "12", cy: "12", r: "4" }),
|
|
5134
|
+
/* @__PURE__ */ jsx130("path", { d: "M12 2v2" }),
|
|
5135
|
+
/* @__PURE__ */ jsx130("path", { d: "M12 20v2" }),
|
|
5136
|
+
/* @__PURE__ */ jsx130("path", { d: "m4.93 4.93 1.41 1.41" }),
|
|
5137
|
+
/* @__PURE__ */ jsx130("path", { d: "m17.66 17.66 1.41 1.41" }),
|
|
5138
|
+
/* @__PURE__ */ jsx130("path", { d: "M2 12h2" }),
|
|
5139
|
+
/* @__PURE__ */ jsx130("path", { d: "M20 12h2" }),
|
|
5140
|
+
/* @__PURE__ */ jsx130("path", { d: "m6.34 17.66-1.41 1.41" }),
|
|
5141
|
+
/* @__PURE__ */ jsx130("path", { d: "m19.07 4.93-1.41 1.41" })
|
|
5092
5142
|
]
|
|
5093
5143
|
}
|
|
5094
5144
|
);
|
|
5095
5145
|
}
|
|
5096
5146
|
|
|
5097
5147
|
// src/components/icons/tag/index.tsx
|
|
5098
|
-
import { jsx as
|
|
5148
|
+
import { jsx as jsx131, jsxs as jsxs99 } from "react/jsx-runtime";
|
|
5099
5149
|
function TagIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5100
5150
|
return /* @__PURE__ */ jsxs99(
|
|
5101
5151
|
"svg",
|
|
@@ -5112,15 +5162,15 @@ function TagIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5112
5162
|
"aria-hidden": "true",
|
|
5113
5163
|
...rest,
|
|
5114
5164
|
children: [
|
|
5115
|
-
/* @__PURE__ */
|
|
5116
|
-
/* @__PURE__ */
|
|
5165
|
+
/* @__PURE__ */ jsx131("path", { d: "M12.586 2.586A2 2 0 0 0 11.172 2H4a2 2 0 0 0-2 2v7.172a2 2 0 0 0 .586 1.414l8.704 8.704a2.426 2.426 0 0 0 3.42 0l6.58-6.58a2.426 2.426 0 0 0 0-3.42z" }),
|
|
5166
|
+
/* @__PURE__ */ jsx131("circle", { cx: "7.5", cy: "7.5", r: ".5", fill: "currentColor" })
|
|
5117
5167
|
]
|
|
5118
5168
|
}
|
|
5119
5169
|
);
|
|
5120
5170
|
}
|
|
5121
5171
|
|
|
5122
5172
|
// src/components/icons/thumbs-down/index.tsx
|
|
5123
|
-
import { jsx as
|
|
5173
|
+
import { jsx as jsx132, jsxs as jsxs100 } from "react/jsx-runtime";
|
|
5124
5174
|
function ThumbsDownIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5125
5175
|
return /* @__PURE__ */ jsxs100(
|
|
5126
5176
|
"svg",
|
|
@@ -5137,15 +5187,15 @@ function ThumbsDownIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5137
5187
|
"aria-hidden": "true",
|
|
5138
5188
|
...rest,
|
|
5139
5189
|
children: [
|
|
5140
|
-
/* @__PURE__ */
|
|
5141
|
-
/* @__PURE__ */
|
|
5190
|
+
/* @__PURE__ */ jsx132("path", { d: "M17 14V2" }),
|
|
5191
|
+
/* @__PURE__ */ jsx132("path", { d: "M9 18.12 10 14H4.17a2 2 0 0 1-1.92-2.56l2.33-8A2 2 0 0 1 6.5 2H20a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-2.76a2 2 0 0 0-1.79 1.11L12 22a3.13 3.13 0 0 1-3-3.88Z" })
|
|
5142
5192
|
]
|
|
5143
5193
|
}
|
|
5144
5194
|
);
|
|
5145
5195
|
}
|
|
5146
5196
|
|
|
5147
5197
|
// src/components/icons/thumbs-up/index.tsx
|
|
5148
|
-
import { jsx as
|
|
5198
|
+
import { jsx as jsx133, jsxs as jsxs101 } from "react/jsx-runtime";
|
|
5149
5199
|
function ThumbsUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5150
5200
|
return /* @__PURE__ */ jsxs101(
|
|
5151
5201
|
"svg",
|
|
@@ -5162,15 +5212,15 @@ function ThumbsUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5162
5212
|
"aria-hidden": "true",
|
|
5163
5213
|
...rest,
|
|
5164
5214
|
children: [
|
|
5165
|
-
/* @__PURE__ */
|
|
5166
|
-
/* @__PURE__ */
|
|
5215
|
+
/* @__PURE__ */ jsx133("path", { d: "M7 10v12" }),
|
|
5216
|
+
/* @__PURE__ */ jsx133("path", { d: "M15 5.88 14 10h5.83a2 2 0 0 1 1.92 2.56l-2.33 8A2 2 0 0 1 17.5 22H4a2 2 0 0 1-2-2v-8a2 2 0 0 1 2-2h2.76a2 2 0 0 0 1.79-1.11L12 2a3.13 3.13 0 0 1 3 3.88Z" })
|
|
5167
5217
|
]
|
|
5168
5218
|
}
|
|
5169
5219
|
);
|
|
5170
5220
|
}
|
|
5171
5221
|
|
|
5172
5222
|
// src/components/icons/trash/index.tsx
|
|
5173
|
-
import { jsx as
|
|
5223
|
+
import { jsx as jsx134, jsxs as jsxs102 } from "react/jsx-runtime";
|
|
5174
5224
|
function TrashIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5175
5225
|
return /* @__PURE__ */ jsxs102(
|
|
5176
5226
|
"svg",
|
|
@@ -5187,16 +5237,16 @@ function TrashIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5187
5237
|
"aria-hidden": "true",
|
|
5188
5238
|
...rest,
|
|
5189
5239
|
children: [
|
|
5190
|
-
/* @__PURE__ */
|
|
5191
|
-
/* @__PURE__ */
|
|
5192
|
-
/* @__PURE__ */
|
|
5240
|
+
/* @__PURE__ */ jsx134("path", { d: "M3 6h18" }),
|
|
5241
|
+
/* @__PURE__ */ jsx134("path", { d: "M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6" }),
|
|
5242
|
+
/* @__PURE__ */ jsx134("path", { d: "M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2" })
|
|
5193
5243
|
]
|
|
5194
5244
|
}
|
|
5195
5245
|
);
|
|
5196
5246
|
}
|
|
5197
5247
|
|
|
5198
5248
|
// src/components/icons/undo/index.tsx
|
|
5199
|
-
import { jsx as
|
|
5249
|
+
import { jsx as jsx135, jsxs as jsxs103 } from "react/jsx-runtime";
|
|
5200
5250
|
function UndoIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5201
5251
|
return /* @__PURE__ */ jsxs103(
|
|
5202
5252
|
"svg",
|
|
@@ -5213,15 +5263,15 @@ function UndoIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5213
5263
|
"aria-hidden": "true",
|
|
5214
5264
|
...rest,
|
|
5215
5265
|
children: [
|
|
5216
|
-
/* @__PURE__ */
|
|
5217
|
-
/* @__PURE__ */
|
|
5266
|
+
/* @__PURE__ */ jsx135("path", { d: "M3 7v6h6" }),
|
|
5267
|
+
/* @__PURE__ */ jsx135("path", { d: "M21 17a9 9 0 0 0-9-9 9 9 0 0 0-6 2.3L3 13" })
|
|
5218
5268
|
]
|
|
5219
5269
|
}
|
|
5220
5270
|
);
|
|
5221
5271
|
}
|
|
5222
5272
|
|
|
5223
5273
|
// src/components/icons/unlock/index.tsx
|
|
5224
|
-
import { jsx as
|
|
5274
|
+
import { jsx as jsx136, jsxs as jsxs104 } from "react/jsx-runtime";
|
|
5225
5275
|
function UnlockIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5226
5276
|
return /* @__PURE__ */ jsxs104(
|
|
5227
5277
|
"svg",
|
|
@@ -5238,15 +5288,15 @@ function UnlockIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5238
5288
|
"aria-hidden": "true",
|
|
5239
5289
|
...rest,
|
|
5240
5290
|
children: [
|
|
5241
|
-
/* @__PURE__ */
|
|
5242
|
-
/* @__PURE__ */
|
|
5291
|
+
/* @__PURE__ */ jsx136("rect", { width: "18", height: "11", x: "3", y: "11", rx: "2", ry: "2" }),
|
|
5292
|
+
/* @__PURE__ */ jsx136("path", { d: "M7 11V7a5 5 0 0 1 9.9-1" })
|
|
5243
5293
|
]
|
|
5244
5294
|
}
|
|
5245
5295
|
);
|
|
5246
5296
|
}
|
|
5247
5297
|
|
|
5248
5298
|
// src/components/icons/upload/index.tsx
|
|
5249
|
-
import { jsx as
|
|
5299
|
+
import { jsx as jsx137, jsxs as jsxs105 } from "react/jsx-runtime";
|
|
5250
5300
|
function UploadIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5251
5301
|
return /* @__PURE__ */ jsxs105(
|
|
5252
5302
|
"svg",
|
|
@@ -5263,16 +5313,16 @@ function UploadIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5263
5313
|
"aria-hidden": "true",
|
|
5264
5314
|
...rest,
|
|
5265
5315
|
children: [
|
|
5266
|
-
/* @__PURE__ */
|
|
5267
|
-
/* @__PURE__ */
|
|
5268
|
-
/* @__PURE__ */
|
|
5316
|
+
/* @__PURE__ */ jsx137("path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" }),
|
|
5317
|
+
/* @__PURE__ */ jsx137("polyline", { points: "17 8 12 3 7 8" }),
|
|
5318
|
+
/* @__PURE__ */ jsx137("line", { x1: "12", x2: "12", y1: "3", y2: "15" })
|
|
5269
5319
|
]
|
|
5270
5320
|
}
|
|
5271
5321
|
);
|
|
5272
5322
|
}
|
|
5273
5323
|
|
|
5274
5324
|
// src/components/icons/user/index.tsx
|
|
5275
|
-
import { jsx as
|
|
5325
|
+
import { jsx as jsx138, jsxs as jsxs106 } from "react/jsx-runtime";
|
|
5276
5326
|
function UserIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5277
5327
|
return /* @__PURE__ */ jsxs106(
|
|
5278
5328
|
"svg",
|
|
@@ -5289,15 +5339,15 @@ function UserIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5289
5339
|
"aria-hidden": "true",
|
|
5290
5340
|
...rest,
|
|
5291
5341
|
children: [
|
|
5292
|
-
/* @__PURE__ */
|
|
5293
|
-
/* @__PURE__ */
|
|
5342
|
+
/* @__PURE__ */ jsx138("path", { d: "M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2" }),
|
|
5343
|
+
/* @__PURE__ */ jsx138("circle", { cx: "12", cy: "7", r: "4" })
|
|
5294
5344
|
]
|
|
5295
5345
|
}
|
|
5296
5346
|
);
|
|
5297
5347
|
}
|
|
5298
5348
|
|
|
5299
5349
|
// src/components/icons/user-check/index.tsx
|
|
5300
|
-
import { jsx as
|
|
5350
|
+
import { jsx as jsx139, jsxs as jsxs107 } from "react/jsx-runtime";
|
|
5301
5351
|
function UserCheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5302
5352
|
return /* @__PURE__ */ jsxs107(
|
|
5303
5353
|
"svg",
|
|
@@ -5314,16 +5364,16 @@ function UserCheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5314
5364
|
"aria-hidden": "true",
|
|
5315
5365
|
...rest,
|
|
5316
5366
|
children: [
|
|
5317
|
-
/* @__PURE__ */
|
|
5318
|
-
/* @__PURE__ */
|
|
5319
|
-
/* @__PURE__ */
|
|
5367
|
+
/* @__PURE__ */ jsx139("path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }),
|
|
5368
|
+
/* @__PURE__ */ jsx139("circle", { cx: "9", cy: "7", r: "4" }),
|
|
5369
|
+
/* @__PURE__ */ jsx139("polyline", { points: "16 11 18 13 22 9" })
|
|
5320
5370
|
]
|
|
5321
5371
|
}
|
|
5322
5372
|
);
|
|
5323
5373
|
}
|
|
5324
5374
|
|
|
5325
5375
|
// src/components/icons/user-plus/index.tsx
|
|
5326
|
-
import { jsx as
|
|
5376
|
+
import { jsx as jsx140, jsxs as jsxs108 } from "react/jsx-runtime";
|
|
5327
5377
|
function UserPlusIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5328
5378
|
return /* @__PURE__ */ jsxs108(
|
|
5329
5379
|
"svg",
|
|
@@ -5340,17 +5390,17 @@ function UserPlusIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5340
5390
|
"aria-hidden": "true",
|
|
5341
5391
|
...rest,
|
|
5342
5392
|
children: [
|
|
5343
|
-
/* @__PURE__ */
|
|
5344
|
-
/* @__PURE__ */
|
|
5345
|
-
/* @__PURE__ */
|
|
5346
|
-
/* @__PURE__ */
|
|
5393
|
+
/* @__PURE__ */ jsx140("path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }),
|
|
5394
|
+
/* @__PURE__ */ jsx140("circle", { cx: "9", cy: "7", r: "4" }),
|
|
5395
|
+
/* @__PURE__ */ jsx140("line", { x1: "19", x2: "19", y1: "8", y2: "14" }),
|
|
5396
|
+
/* @__PURE__ */ jsx140("line", { x1: "22", x2: "16", y1: "11", y2: "11" })
|
|
5347
5397
|
]
|
|
5348
5398
|
}
|
|
5349
5399
|
);
|
|
5350
5400
|
}
|
|
5351
5401
|
|
|
5352
5402
|
// src/components/icons/users/index.tsx
|
|
5353
|
-
import { jsx as
|
|
5403
|
+
import { jsx as jsx141, jsxs as jsxs109 } from "react/jsx-runtime";
|
|
5354
5404
|
function UsersIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5355
5405
|
return /* @__PURE__ */ jsxs109(
|
|
5356
5406
|
"svg",
|
|
@@ -5367,17 +5417,17 @@ function UsersIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5367
5417
|
"aria-hidden": "true",
|
|
5368
5418
|
...rest,
|
|
5369
5419
|
children: [
|
|
5370
|
-
/* @__PURE__ */
|
|
5371
|
-
/* @__PURE__ */
|
|
5372
|
-
/* @__PURE__ */
|
|
5373
|
-
/* @__PURE__ */
|
|
5420
|
+
/* @__PURE__ */ jsx141("path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }),
|
|
5421
|
+
/* @__PURE__ */ jsx141("circle", { cx: "9", cy: "7", r: "4" }),
|
|
5422
|
+
/* @__PURE__ */ jsx141("path", { d: "M22 21v-2a4 4 0 0 0-3-3.87" }),
|
|
5423
|
+
/* @__PURE__ */ jsx141("path", { d: "M16 3.13a4 4 0 0 1 0 7.75" })
|
|
5374
5424
|
]
|
|
5375
5425
|
}
|
|
5376
5426
|
);
|
|
5377
5427
|
}
|
|
5378
5428
|
|
|
5379
5429
|
// src/components/icons/volume-2/index.tsx
|
|
5380
|
-
import { jsx as
|
|
5430
|
+
import { jsx as jsx142, jsxs as jsxs110 } from "react/jsx-runtime";
|
|
5381
5431
|
function Volume2Icon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5382
5432
|
return /* @__PURE__ */ jsxs110(
|
|
5383
5433
|
"svg",
|
|
@@ -5394,16 +5444,16 @@ function Volume2Icon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5394
5444
|
"aria-hidden": "true",
|
|
5395
5445
|
...rest,
|
|
5396
5446
|
children: [
|
|
5397
|
-
/* @__PURE__ */
|
|
5398
|
-
/* @__PURE__ */
|
|
5399
|
-
/* @__PURE__ */
|
|
5447
|
+
/* @__PURE__ */ jsx142("polygon", { points: "11 5 6 9 2 9 2 15 6 15 11 19 11 5" }),
|
|
5448
|
+
/* @__PURE__ */ jsx142("path", { d: "M15.54 8.46a5 5 0 0 1 0 7.07" }),
|
|
5449
|
+
/* @__PURE__ */ jsx142("path", { d: "M19.07 4.93a10 10 0 0 1 0 14.14" })
|
|
5400
5450
|
]
|
|
5401
5451
|
}
|
|
5402
5452
|
);
|
|
5403
5453
|
}
|
|
5404
5454
|
|
|
5405
5455
|
// src/components/icons/volume-x/index.tsx
|
|
5406
|
-
import { jsx as
|
|
5456
|
+
import { jsx as jsx143, jsxs as jsxs111 } from "react/jsx-runtime";
|
|
5407
5457
|
function VolumeXIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5408
5458
|
return /* @__PURE__ */ jsxs111(
|
|
5409
5459
|
"svg",
|
|
@@ -5420,16 +5470,16 @@ function VolumeXIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5420
5470
|
"aria-hidden": "true",
|
|
5421
5471
|
...rest,
|
|
5422
5472
|
children: [
|
|
5423
|
-
/* @__PURE__ */
|
|
5424
|
-
/* @__PURE__ */
|
|
5425
|
-
/* @__PURE__ */
|
|
5473
|
+
/* @__PURE__ */ jsx143("polygon", { points: "11 5 6 9 2 9 2 15 6 15 11 19 11 5" }),
|
|
5474
|
+
/* @__PURE__ */ jsx143("line", { x1: "22", x2: "16", y1: "9", y2: "15" }),
|
|
5475
|
+
/* @__PURE__ */ jsx143("line", { x1: "16", x2: "22", y1: "9", y2: "15" })
|
|
5426
5476
|
]
|
|
5427
5477
|
}
|
|
5428
5478
|
);
|
|
5429
5479
|
}
|
|
5430
5480
|
|
|
5431
5481
|
// src/components/icons/wifi/index.tsx
|
|
5432
|
-
import { jsx as
|
|
5482
|
+
import { jsx as jsx144, jsxs as jsxs112 } from "react/jsx-runtime";
|
|
5433
5483
|
function WifiIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5434
5484
|
return /* @__PURE__ */ jsxs112(
|
|
5435
5485
|
"svg",
|
|
@@ -5446,19 +5496,19 @@ function WifiIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5446
5496
|
"aria-hidden": "true",
|
|
5447
5497
|
...rest,
|
|
5448
5498
|
children: [
|
|
5449
|
-
/* @__PURE__ */
|
|
5450
|
-
/* @__PURE__ */
|
|
5451
|
-
/* @__PURE__ */
|
|
5452
|
-
/* @__PURE__ */
|
|
5499
|
+
/* @__PURE__ */ jsx144("path", { d: "M12 20h.01" }),
|
|
5500
|
+
/* @__PURE__ */ jsx144("path", { d: "M2 8.82a15 15 0 0 1 20 0" }),
|
|
5501
|
+
/* @__PURE__ */ jsx144("path", { d: "M5 12.859a10 10 0 0 1 14 0" }),
|
|
5502
|
+
/* @__PURE__ */ jsx144("path", { d: "M8.5 16.429a5 5 0 0 1 7 0" })
|
|
5453
5503
|
]
|
|
5454
5504
|
}
|
|
5455
5505
|
);
|
|
5456
5506
|
}
|
|
5457
5507
|
|
|
5458
5508
|
// src/components/icons/zap/index.tsx
|
|
5459
|
-
import { jsx as
|
|
5509
|
+
import { jsx as jsx145 } from "react/jsx-runtime";
|
|
5460
5510
|
function ZapIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5461
|
-
return /* @__PURE__ */
|
|
5511
|
+
return /* @__PURE__ */ jsx145(
|
|
5462
5512
|
"svg",
|
|
5463
5513
|
{
|
|
5464
5514
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5472,7 +5522,7 @@ function ZapIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5472
5522
|
strokeLinejoin: "round",
|
|
5473
5523
|
"aria-hidden": "true",
|
|
5474
5524
|
...rest,
|
|
5475
|
-
children: /* @__PURE__ */
|
|
5525
|
+
children: /* @__PURE__ */ jsx145("polygon", { points: "13 2 3 14 12 14 11 22 21 10 12 10 13 2" })
|
|
5476
5526
|
}
|
|
5477
5527
|
);
|
|
5478
5528
|
}
|
|
@@ -5709,6 +5759,7 @@ export {
|
|
|
5709
5759
|
StarIcon,
|
|
5710
5760
|
Stepper,
|
|
5711
5761
|
SunIcon,
|
|
5762
|
+
Surface,
|
|
5712
5763
|
Switch,
|
|
5713
5764
|
Table,
|
|
5714
5765
|
Tabs,
|