@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.cjs
CHANGED
|
@@ -138,6 +138,7 @@ __export(index_exports, {
|
|
|
138
138
|
StarIcon: () => StarIcon,
|
|
139
139
|
Stepper: () => Stepper,
|
|
140
140
|
SunIcon: () => SunIcon,
|
|
141
|
+
Surface: () => Surface,
|
|
141
142
|
Switch: () => Switch,
|
|
142
143
|
Table: () => Table,
|
|
143
144
|
Tabs: () => Tabs,
|
|
@@ -275,10 +276,10 @@ var ContainerForwarded = (0, import_react5.forwardRef)(ContainerImpl);
|
|
|
275
276
|
ContainerForwarded.displayName = "Container";
|
|
276
277
|
var Container = ContainerForwarded;
|
|
277
278
|
|
|
278
|
-
// src/components/
|
|
279
|
+
// src/components/surface/index.tsx
|
|
279
280
|
var import_react9 = require("react");
|
|
280
281
|
|
|
281
|
-
// src/components/
|
|
282
|
+
// src/components/surface/use-styles.ts
|
|
282
283
|
var import_react8 = require("react");
|
|
283
284
|
|
|
284
285
|
// ../core/dist/index.js
|
|
@@ -293,7 +294,13 @@ var tokens = {
|
|
|
293
294
|
// Roles tipográficos: tamaño/interlineado/peso/tracking listos para typography.css.ts.
|
|
294
295
|
text: {
|
|
295
296
|
eyebrow: { size: "0.694rem", lineHeight: "1.2", weight: "500", letterSpacing: "0.14em" },
|
|
296
|
-
|
|
297
|
+
// Escala fluida: ~43px en 375px (entra en móvil), cotea en 5.6rem (≈90px) desde ~1200px.
|
|
298
|
+
display: {
|
|
299
|
+
size: "clamp(2.75rem, 1.4rem + 5.6vw, 5.6rem)",
|
|
300
|
+
lineHeight: "1.05",
|
|
301
|
+
weight: "600",
|
|
302
|
+
letterSpacing: "-0.01em"
|
|
303
|
+
},
|
|
297
304
|
h1: { size: "2.9rem", lineHeight: "1.05", weight: "600", letterSpacing: "-0.01em" },
|
|
298
305
|
h2: { size: "2.1rem", lineHeight: "1.2", weight: "600", letterSpacing: "0" },
|
|
299
306
|
h3: { size: "1.563rem", lineHeight: "1.2", weight: "500", letterSpacing: "0" },
|
|
@@ -604,7 +611,8 @@ function ThemeProvider({
|
|
|
604
611
|
defaultSchema = "tinta",
|
|
605
612
|
defaultMode = "light",
|
|
606
613
|
storageKey = "ds-theme",
|
|
607
|
-
persist = true
|
|
614
|
+
persist = true,
|
|
615
|
+
paintRoot = false
|
|
608
616
|
}) {
|
|
609
617
|
const storage = (0, import_react7.useMemo)(
|
|
610
618
|
() => createWebStorageAdapter(storageKey, persist),
|
|
@@ -612,6 +620,15 @@ function ThemeProvider({
|
|
|
612
620
|
);
|
|
613
621
|
const system = (0, import_react7.useMemo)(() => createWebSystemModeAdapter(), []);
|
|
614
622
|
const store = useThemeStore({ defaultSchema, defaultMode }, storage, system);
|
|
623
|
+
(0, import_react7.useEffect)(() => {
|
|
624
|
+
if (!paintRoot) return;
|
|
625
|
+
const { style } = document.body;
|
|
626
|
+
const prev = style.backgroundColor;
|
|
627
|
+
style.backgroundColor = store.colorTokens.bg1;
|
|
628
|
+
return () => {
|
|
629
|
+
style.backgroundColor = prev;
|
|
630
|
+
};
|
|
631
|
+
}, [paintRoot, store.colorTokens.bg1]);
|
|
615
632
|
const value = (0, import_react7.useMemo)(
|
|
616
633
|
() => ({
|
|
617
634
|
schema: store.schema,
|
|
@@ -625,12 +642,46 @@ function ThemeProvider({
|
|
|
625
642
|
}),
|
|
626
643
|
[store]
|
|
627
644
|
);
|
|
628
|
-
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(ThemeContext.Provider, { value, children });
|
|
645
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(ThemeContext.Provider, { value, children: paintRoot ? /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(Surface, { fill: true, children }) : children });
|
|
629
646
|
}
|
|
630
647
|
function useTheme() {
|
|
631
648
|
return (0, import_react7.useContext)(ThemeContext) ?? DEFAULT_VALUE;
|
|
632
649
|
}
|
|
633
650
|
|
|
651
|
+
// src/components/surface/use-styles.css.ts
|
|
652
|
+
var fill = "use-styles_fill__6vwa9y1";
|
|
653
|
+
var surface = "use-styles_surface__6vwa9y0";
|
|
654
|
+
|
|
655
|
+
// src/components/surface/use-styles.ts
|
|
656
|
+
function useStyles2({ fill: fill2 }) {
|
|
657
|
+
const { themeClass } = useTheme();
|
|
658
|
+
const className = (0, import_react8.useMemo)(
|
|
659
|
+
() => [themeClass, surface, fill2 && fill].filter(Boolean).join(" "),
|
|
660
|
+
[themeClass, fill2]
|
|
661
|
+
);
|
|
662
|
+
return { surface: className };
|
|
663
|
+
}
|
|
664
|
+
|
|
665
|
+
// src/components/surface/index.tsx
|
|
666
|
+
var import_jsx_runtime4 = require("react/jsx-runtime");
|
|
667
|
+
function SurfaceInner({ as, fill: fill2, testId, ...rest }, ref) {
|
|
668
|
+
const Component = as ?? "div";
|
|
669
|
+
const { surface: surface3 } = useStyles2({ fill: fill2 });
|
|
670
|
+
const { testId: dataTestId } = useTestId("surface", testId);
|
|
671
|
+
return /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(Component, { ref, "data-testid": dataTestId, ...rest, className: surface3 });
|
|
672
|
+
}
|
|
673
|
+
var SurfaceForwarded = (0, import_react9.forwardRef)(
|
|
674
|
+
SurfaceInner
|
|
675
|
+
);
|
|
676
|
+
SurfaceForwarded.displayName = "Surface";
|
|
677
|
+
var Surface = SurfaceForwarded;
|
|
678
|
+
|
|
679
|
+
// src/components/typography/index.tsx
|
|
680
|
+
var import_react11 = require("react");
|
|
681
|
+
|
|
682
|
+
// src/components/typography/use-styles.ts
|
|
683
|
+
var import_react10 = require("react");
|
|
684
|
+
|
|
634
685
|
// src/theme/typography.css.ts
|
|
635
686
|
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" };
|
|
636
687
|
|
|
@@ -640,13 +691,13 @@ var base = "use-styles_base__d74jf60";
|
|
|
640
691
|
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" };
|
|
641
692
|
|
|
642
693
|
// src/components/typography/use-styles.ts
|
|
643
|
-
function
|
|
694
|
+
function useStyles3({
|
|
644
695
|
variant: variant2,
|
|
645
696
|
color: color2,
|
|
646
697
|
align: align2
|
|
647
698
|
}) {
|
|
648
699
|
const { themeClass } = useTheme();
|
|
649
|
-
const className = (0,
|
|
700
|
+
const className = (0, import_react10.useMemo)(
|
|
650
701
|
() => [
|
|
651
702
|
themeClass,
|
|
652
703
|
base,
|
|
@@ -660,7 +711,7 @@ function useStyles2({
|
|
|
660
711
|
}
|
|
661
712
|
|
|
662
713
|
// src/components/typography/index.tsx
|
|
663
|
-
var
|
|
714
|
+
var import_jsx_runtime5 = require("react/jsx-runtime");
|
|
664
715
|
var defaultElement = {
|
|
665
716
|
display: "h1",
|
|
666
717
|
h1: "h1",
|
|
@@ -677,18 +728,18 @@ var defaultElement = {
|
|
|
677
728
|
};
|
|
678
729
|
function TypographyInner({ variant: variant2, as, color: color2, align: align2, testId, ...rest }, ref) {
|
|
679
730
|
const Component = as ?? defaultElement[variant2];
|
|
680
|
-
const { text: text2 } =
|
|
731
|
+
const { text: text2 } = useStyles3({ variant: variant2, color: color2, align: align2 });
|
|
681
732
|
const { testId: dataTestId } = useTestId("text", testId);
|
|
682
|
-
return /* @__PURE__ */ (0,
|
|
733
|
+
return /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(Component, { ref, "data-testid": dataTestId, ...rest, className: text2 });
|
|
683
734
|
}
|
|
684
|
-
var TypographyForwarded = (0,
|
|
735
|
+
var TypographyForwarded = (0, import_react11.forwardRef)(
|
|
685
736
|
TypographyInner
|
|
686
737
|
);
|
|
687
738
|
TypographyForwarded.displayName = "Typography";
|
|
688
739
|
var Typography = TypographyForwarded;
|
|
689
740
|
|
|
690
741
|
// src/components/button/index.tsx
|
|
691
|
-
var
|
|
742
|
+
var import_react13 = require("react");
|
|
692
743
|
|
|
693
744
|
// src/testing/states.ts
|
|
694
745
|
function states(map) {
|
|
@@ -697,7 +748,7 @@ function states(map) {
|
|
|
697
748
|
}
|
|
698
749
|
|
|
699
750
|
// src/components/button/use-styles.ts
|
|
700
|
-
var
|
|
751
|
+
var import_react12 = require("react");
|
|
701
752
|
|
|
702
753
|
// src/components/button/use-styles.css.ts
|
|
703
754
|
var full = "use-styles_full__1pbtill4";
|
|
@@ -710,7 +761,7 @@ function toneKey(variant2, tone4) {
|
|
|
710
761
|
const Tone = `${tone4.charAt(0).toUpperCase()}${tone4.slice(1)}`;
|
|
711
762
|
return `${variant2}${Tone}`;
|
|
712
763
|
}
|
|
713
|
-
function
|
|
764
|
+
function useStyles4({
|
|
714
765
|
variant: variant2 = "filled",
|
|
715
766
|
tone: tone4 = "ink",
|
|
716
767
|
size: size3 = "md",
|
|
@@ -718,7 +769,7 @@ function useStyles3({
|
|
|
718
769
|
className
|
|
719
770
|
}) {
|
|
720
771
|
const { themeClass } = useTheme();
|
|
721
|
-
const container = (0,
|
|
772
|
+
const container = (0, import_react12.useMemo)(
|
|
722
773
|
() => [
|
|
723
774
|
themeClass,
|
|
724
775
|
root,
|
|
@@ -733,9 +784,9 @@ function useStyles3({
|
|
|
733
784
|
}
|
|
734
785
|
|
|
735
786
|
// src/components/button/index.tsx
|
|
736
|
-
var
|
|
787
|
+
var import_jsx_runtime6 = require("react/jsx-runtime");
|
|
737
788
|
var ICON_SIZE = { sm: 14, md: 16, lg: 18 };
|
|
738
|
-
var Button = (0,
|
|
789
|
+
var Button = (0, import_react13.forwardRef)(function Button2({
|
|
739
790
|
variant: variant2,
|
|
740
791
|
tone: tone4,
|
|
741
792
|
size: size3 = "md",
|
|
@@ -748,10 +799,10 @@ var Button = (0, import_react11.forwardRef)(function Button2({
|
|
|
748
799
|
children,
|
|
749
800
|
...rest
|
|
750
801
|
}, ref) {
|
|
751
|
-
const { container } =
|
|
802
|
+
const { container } = useStyles4({ variant: variant2, tone: tone4, size: size3, full: full2, className });
|
|
752
803
|
const { testId: dataTestId } = useTestId("button", testId);
|
|
753
804
|
const iconSize = ICON_SIZE[size3];
|
|
754
|
-
return /* @__PURE__ */ (0,
|
|
805
|
+
return /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(
|
|
755
806
|
"button",
|
|
756
807
|
{
|
|
757
808
|
ref,
|
|
@@ -761,19 +812,19 @@ var Button = (0, import_react11.forwardRef)(function Button2({
|
|
|
761
812
|
"data-state": states({ disabled: rest.disabled }),
|
|
762
813
|
...rest,
|
|
763
814
|
children: [
|
|
764
|
-
StartIcon && /* @__PURE__ */ (0,
|
|
815
|
+
StartIcon && /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(StartIcon, { size: iconSize }),
|
|
765
816
|
children,
|
|
766
|
-
EndIcon && /* @__PURE__ */ (0,
|
|
817
|
+
EndIcon && /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(EndIcon, { size: iconSize })
|
|
767
818
|
]
|
|
768
819
|
}
|
|
769
820
|
);
|
|
770
821
|
});
|
|
771
822
|
|
|
772
823
|
// src/components/divider/index.tsx
|
|
773
|
-
var
|
|
824
|
+
var import_react15 = require("react");
|
|
774
825
|
|
|
775
826
|
// src/components/divider/use-styles.ts
|
|
776
|
-
var
|
|
827
|
+
var import_react14 = require("react");
|
|
777
828
|
|
|
778
829
|
// src/components/divider/use-styles.css.ts
|
|
779
830
|
var horizontal = "use-styles_horizontal__1n7v7yj1";
|
|
@@ -784,9 +835,9 @@ var root2 = "use-styles_root__1n7v7yj0";
|
|
|
784
835
|
var vertical = "use-styles_vertical__1n7v7yj2";
|
|
785
836
|
|
|
786
837
|
// src/components/divider/use-styles.ts
|
|
787
|
-
function
|
|
838
|
+
function useStyles5({ vertical: vertical2, hasLabel }) {
|
|
788
839
|
const { themeClass } = useTheme();
|
|
789
|
-
const root24 = (0,
|
|
840
|
+
const root24 = (0, import_react14.useMemo)(
|
|
790
841
|
() => [
|
|
791
842
|
themeClass,
|
|
792
843
|
root2,
|
|
@@ -798,26 +849,26 @@ function useStyles4({ vertical: vertical2, hasLabel }) {
|
|
|
798
849
|
}
|
|
799
850
|
|
|
800
851
|
// src/components/divider/index.tsx
|
|
801
|
-
var
|
|
802
|
-
var Divider = (0,
|
|
852
|
+
var import_jsx_runtime7 = require("react/jsx-runtime");
|
|
853
|
+
var Divider = (0, import_react15.forwardRef)(function Divider2({ vertical: vertical2, label: label7, testId, ...rest }, ref) {
|
|
803
854
|
const hasLabel = label7 != null;
|
|
804
|
-
const { root: root24, line: line2, label: labelClass } =
|
|
855
|
+
const { root: root24, line: line2, label: labelClass } = useStyles5({ vertical: vertical2, hasLabel });
|
|
805
856
|
const { testId: dataTestId, slot } = useTestId("layout", testId);
|
|
806
857
|
if (hasLabel) {
|
|
807
|
-
return /* @__PURE__ */ (0,
|
|
808
|
-
/* @__PURE__ */ (0,
|
|
809
|
-
/* @__PURE__ */ (0,
|
|
810
|
-
/* @__PURE__ */ (0,
|
|
858
|
+
return /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("div", { ref, role: "separator", className: root24, "data-testid": dataTestId, ...rest, children: [
|
|
859
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)("span", { className: line2 }),
|
|
860
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)("span", { className: labelClass, "data-testid": slot("label"), children: label7 }),
|
|
861
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)("span", { className: line2 })
|
|
811
862
|
] });
|
|
812
863
|
}
|
|
813
|
-
return /* @__PURE__ */ (0,
|
|
864
|
+
return /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("div", { ref, role: "separator", className: root24, "data-testid": dataTestId, ...rest });
|
|
814
865
|
});
|
|
815
866
|
|
|
816
867
|
// src/components/avatar/index.tsx
|
|
817
|
-
var
|
|
868
|
+
var import_react17 = require("react");
|
|
818
869
|
|
|
819
870
|
// src/components/avatar/use-styles.ts
|
|
820
|
-
var
|
|
871
|
+
var import_react16 = require("react");
|
|
821
872
|
|
|
822
873
|
// src/components/avatar/use-styles.css.ts
|
|
823
874
|
var root3 = "use-styles_root__1mn1rmu0";
|
|
@@ -825,13 +876,13 @@ var size2 = { sm: "use-styles_size_sm__1mn1rmu1", md: "use-styles_size_md__1mn1r
|
|
|
825
876
|
var variant = { "default": "use-styles_variant_default__1mn1rmu4", filled: "use-styles_variant_filled__1mn1rmu5" };
|
|
826
877
|
|
|
827
878
|
// src/components/avatar/use-styles.ts
|
|
828
|
-
function
|
|
879
|
+
function useStyles6({
|
|
829
880
|
size: size3 = "md",
|
|
830
881
|
filled,
|
|
831
882
|
className
|
|
832
883
|
}) {
|
|
833
884
|
const { themeClass } = useTheme();
|
|
834
|
-
const root24 = (0,
|
|
885
|
+
const root24 = (0, import_react16.useMemo)(
|
|
835
886
|
() => [
|
|
836
887
|
themeClass,
|
|
837
888
|
root3,
|
|
@@ -845,18 +896,18 @@ function useStyles5({
|
|
|
845
896
|
}
|
|
846
897
|
|
|
847
898
|
// src/components/avatar/index.tsx
|
|
848
|
-
var
|
|
849
|
-
var Avatar = (0,
|
|
850
|
-
const { root: root24 } =
|
|
899
|
+
var import_jsx_runtime8 = require("react/jsx-runtime");
|
|
900
|
+
var Avatar = (0, import_react17.forwardRef)(function Avatar2({ size: size3, filled, className, children, testId, ...rest }, ref) {
|
|
901
|
+
const { root: root24 } = useStyles6({ size: size3, filled, className });
|
|
851
902
|
const { testId: dataTestId } = useTestId("media", testId);
|
|
852
|
-
return /* @__PURE__ */ (0,
|
|
903
|
+
return /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { ref, className: root24, "data-testid": dataTestId, ...rest, children });
|
|
853
904
|
});
|
|
854
905
|
|
|
855
906
|
// src/components/badge/index.tsx
|
|
856
|
-
var
|
|
907
|
+
var import_react19 = require("react");
|
|
857
908
|
|
|
858
909
|
// src/components/badge/use-styles.ts
|
|
859
|
-
var
|
|
910
|
+
var import_react18 = require("react");
|
|
860
911
|
|
|
861
912
|
// src/components/badge/use-styles.css.ts
|
|
862
913
|
var dot = "use-styles_dot__1wpei6p1";
|
|
@@ -864,35 +915,35 @@ var root4 = "use-styles_root__1wpei6p0";
|
|
|
864
915
|
var tone2 = { ink: "use-styles_tone_ink__1wpei6p2", accent: "use-styles_tone_accent__1wpei6p3" };
|
|
865
916
|
|
|
866
917
|
// src/components/badge/use-styles.ts
|
|
867
|
-
function
|
|
918
|
+
function useStyles7({
|
|
868
919
|
tone: tone4 = "ink",
|
|
869
920
|
className
|
|
870
921
|
}) {
|
|
871
922
|
const { themeClass } = useTheme();
|
|
872
|
-
const root24 = (0,
|
|
923
|
+
const root24 = (0, import_react18.useMemo)(
|
|
873
924
|
() => [themeClass, root4, className].filter(Boolean).join(" "),
|
|
874
925
|
[themeClass, className]
|
|
875
926
|
);
|
|
876
|
-
const dot3 = (0,
|
|
927
|
+
const dot3 = (0, import_react18.useMemo)(() => [dot, tone2[tone4]].join(" "), [tone4]);
|
|
877
928
|
return { root: root24, dot: dot3 };
|
|
878
929
|
}
|
|
879
930
|
|
|
880
931
|
// src/components/badge/index.tsx
|
|
881
|
-
var
|
|
882
|
-
var Badge = (0,
|
|
883
|
-
const { root: root24, dot: dot3 } =
|
|
932
|
+
var import_jsx_runtime9 = require("react/jsx-runtime");
|
|
933
|
+
var Badge = (0, import_react19.forwardRef)(function Badge2({ count, tone: tone4, className, children, testId, ...rest }, ref) {
|
|
934
|
+
const { root: root24, dot: dot3 } = useStyles7({ tone: tone4, className });
|
|
884
935
|
const { testId: dataTestId, slot } = useTestId("media", testId);
|
|
885
|
-
return /* @__PURE__ */ (0,
|
|
936
|
+
return /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("span", { ref, className: root24, "data-testid": dataTestId, ...rest, children: [
|
|
886
937
|
children,
|
|
887
|
-
count != null && /* @__PURE__ */ (0,
|
|
938
|
+
count != null && /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: dot3, "data-testid": slot("dot"), children: count })
|
|
888
939
|
] });
|
|
889
940
|
});
|
|
890
941
|
|
|
891
942
|
// src/components/progress/index.tsx
|
|
892
|
-
var
|
|
943
|
+
var import_react21 = require("react");
|
|
893
944
|
|
|
894
945
|
// src/components/progress/use-styles.ts
|
|
895
|
-
var
|
|
946
|
+
var import_react20 = require("react");
|
|
896
947
|
|
|
897
948
|
// src/components/progress/use-styles.css.ts
|
|
898
949
|
var bar = "use-styles_bar__kbop7v3";
|
|
@@ -901,14 +952,14 @@ var spinner = "use-styles_spinner__kbop7v5";
|
|
|
901
952
|
var track = "use-styles_track__kbop7v2";
|
|
902
953
|
|
|
903
954
|
// src/components/progress/use-styles.ts
|
|
904
|
-
function
|
|
955
|
+
function useStyles8({
|
|
905
956
|
variant: variant2 = "linear",
|
|
906
957
|
value,
|
|
907
958
|
className
|
|
908
959
|
}) {
|
|
909
960
|
const { themeClass } = useTheme();
|
|
910
961
|
const indeterminate2 = value === void 0;
|
|
911
|
-
return (0,
|
|
962
|
+
return (0, import_react20.useMemo)(() => {
|
|
912
963
|
const root24 = (...classes) => [themeClass, ...classes, className].filter(Boolean).join(" ");
|
|
913
964
|
if (variant2 === "circular") {
|
|
914
965
|
return { track: "", bar: "", spinner: root24(spinner) };
|
|
@@ -922,13 +973,13 @@ function useStyles7({
|
|
|
922
973
|
}
|
|
923
974
|
|
|
924
975
|
// src/components/progress/index.tsx
|
|
925
|
-
var
|
|
926
|
-
var Progress = (0,
|
|
927
|
-
const { track: track4, bar: bar2, spinner: spinner2 } =
|
|
976
|
+
var import_jsx_runtime10 = require("react/jsx-runtime");
|
|
977
|
+
var Progress = (0, import_react21.forwardRef)(function Progress2({ variant: variant2 = "linear", value, size: size3 = 20, className, testId, ...rest }, ref) {
|
|
978
|
+
const { track: track4, bar: bar2, spinner: spinner2 } = useStyles8({ variant: variant2, value, className });
|
|
928
979
|
const indeterminate2 = value === void 0;
|
|
929
980
|
const { testId: dataTestId, slot } = useTestId("media", testId);
|
|
930
981
|
if (variant2 === "circular") {
|
|
931
|
-
return /* @__PURE__ */ (0,
|
|
982
|
+
return /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
|
|
932
983
|
"span",
|
|
933
984
|
{
|
|
934
985
|
ref,
|
|
@@ -944,7 +995,7 @@ var Progress = (0, import_react19.forwardRef)(function Progress2({ variant: vari
|
|
|
944
995
|
}
|
|
945
996
|
);
|
|
946
997
|
}
|
|
947
|
-
return /* @__PURE__ */ (0,
|
|
998
|
+
return /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
|
|
948
999
|
"div",
|
|
949
1000
|
{
|
|
950
1001
|
ref,
|
|
@@ -956,7 +1007,7 @@ var Progress = (0, import_react19.forwardRef)(function Progress2({ variant: vari
|
|
|
956
1007
|
"data-testid": dataTestId,
|
|
957
1008
|
"data-state": states({ indeterminate: indeterminate2 }),
|
|
958
1009
|
...rest,
|
|
959
|
-
children: /* @__PURE__ */ (0,
|
|
1010
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
|
|
960
1011
|
"div",
|
|
961
1012
|
{
|
|
962
1013
|
className: bar2,
|
|
@@ -969,12 +1020,12 @@ var Progress = (0, import_react19.forwardRef)(function Progress2({ variant: vari
|
|
|
969
1020
|
});
|
|
970
1021
|
|
|
971
1022
|
// src/components/chip/index.tsx
|
|
972
|
-
var
|
|
1023
|
+
var import_react23 = require("react");
|
|
973
1024
|
|
|
974
1025
|
// src/components/icons/x/index.tsx
|
|
975
|
-
var
|
|
1026
|
+
var import_jsx_runtime11 = require("react/jsx-runtime");
|
|
976
1027
|
function XIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
977
|
-
return /* @__PURE__ */ (0,
|
|
1028
|
+
return /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)(
|
|
978
1029
|
"svg",
|
|
979
1030
|
{
|
|
980
1031
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -989,15 +1040,15 @@ function XIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
989
1040
|
"aria-hidden": "true",
|
|
990
1041
|
...rest,
|
|
991
1042
|
children: [
|
|
992
|
-
/* @__PURE__ */ (0,
|
|
993
|
-
/* @__PURE__ */ (0,
|
|
1043
|
+
/* @__PURE__ */ (0, import_jsx_runtime11.jsx)("path", { d: "M18 6 6 18" }),
|
|
1044
|
+
/* @__PURE__ */ (0, import_jsx_runtime11.jsx)("path", { d: "m6 6 12 12" })
|
|
994
1045
|
]
|
|
995
1046
|
}
|
|
996
1047
|
);
|
|
997
1048
|
}
|
|
998
1049
|
|
|
999
1050
|
// src/components/chip/use-styles.ts
|
|
1000
|
-
var
|
|
1051
|
+
var import_react22 = require("react");
|
|
1001
1052
|
|
|
1002
1053
|
// src/components/chip/use-styles.css.ts
|
|
1003
1054
|
var clickable = "use-styles_clickable__1axilf44";
|
|
@@ -1007,13 +1058,13 @@ var selected = "use-styles_selected__1axilf43";
|
|
|
1007
1058
|
var tone3 = { ink: "use-styles_tone_ink__1axilf41", accent: "use-styles_tone_accent__1axilf42" };
|
|
1008
1059
|
|
|
1009
1060
|
// src/components/chip/use-styles.ts
|
|
1010
|
-
function
|
|
1061
|
+
function useStyles9({
|
|
1011
1062
|
selected: selected3,
|
|
1012
1063
|
tone: tone4 = "ink",
|
|
1013
1064
|
clickable: clickable2
|
|
1014
1065
|
}) {
|
|
1015
1066
|
const { themeClass } = useTheme();
|
|
1016
|
-
const root24 = (0,
|
|
1067
|
+
const root24 = (0, import_react22.useMemo)(
|
|
1017
1068
|
() => [
|
|
1018
1069
|
themeClass,
|
|
1019
1070
|
root5,
|
|
@@ -1026,17 +1077,17 @@ function useStyles8({
|
|
|
1026
1077
|
}
|
|
1027
1078
|
|
|
1028
1079
|
// src/components/chip/index.tsx
|
|
1029
|
-
var
|
|
1080
|
+
var import_jsx_runtime12 = require("react/jsx-runtime");
|
|
1030
1081
|
var ICON_SIZE2 = 13;
|
|
1031
|
-
var Chip = (0,
|
|
1082
|
+
var Chip = (0, import_react23.forwardRef)(function Chip2({ selected: selected3, tone: tone4, onDelete, onClick, startIcon: StartIcon, children, testId, ...rest }, ref) {
|
|
1032
1083
|
const clickable2 = Boolean(onClick);
|
|
1033
|
-
const { root: root24, deleteBtn: deleteBtn2 } =
|
|
1084
|
+
const { root: root24, deleteBtn: deleteBtn2 } = useStyles9({ selected: selected3, tone: tone4, clickable: clickable2 });
|
|
1034
1085
|
const { testId: dataTestId, slot } = useTestId("media", testId);
|
|
1035
1086
|
const handleDelete = (event) => {
|
|
1036
1087
|
event.stopPropagation();
|
|
1037
1088
|
onDelete?.();
|
|
1038
1089
|
};
|
|
1039
|
-
return /* @__PURE__ */ (0,
|
|
1090
|
+
return /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)(
|
|
1040
1091
|
"span",
|
|
1041
1092
|
{
|
|
1042
1093
|
ref,
|
|
@@ -1046,9 +1097,9 @@ var Chip = (0, import_react21.forwardRef)(function Chip2({ selected: selected3,
|
|
|
1046
1097
|
"data-state": states({ selected: selected3 }),
|
|
1047
1098
|
...rest,
|
|
1048
1099
|
children: [
|
|
1049
|
-
StartIcon ? /* @__PURE__ */ (0,
|
|
1100
|
+
StartIcon ? /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(StartIcon, { size: ICON_SIZE2 }) : null,
|
|
1050
1101
|
children,
|
|
1051
|
-
onDelete && /* @__PURE__ */ (0,
|
|
1102
|
+
onDelete && /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
|
|
1052
1103
|
"button",
|
|
1053
1104
|
{
|
|
1054
1105
|
type: "button",
|
|
@@ -1056,7 +1107,7 @@ var Chip = (0, import_react21.forwardRef)(function Chip2({ selected: selected3,
|
|
|
1056
1107
|
"aria-label": "Remove",
|
|
1057
1108
|
onClick: handleDelete,
|
|
1058
1109
|
"data-testid": slot("delete"),
|
|
1059
|
-
children: /* @__PURE__ */ (0,
|
|
1110
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(XIcon, { size: ICON_SIZE2 })
|
|
1060
1111
|
}
|
|
1061
1112
|
)
|
|
1062
1113
|
]
|
|
@@ -1065,12 +1116,12 @@ var Chip = (0, import_react21.forwardRef)(function Chip2({ selected: selected3,
|
|
|
1065
1116
|
});
|
|
1066
1117
|
|
|
1067
1118
|
// src/components/checkbox/index.tsx
|
|
1068
|
-
var
|
|
1119
|
+
var import_react25 = require("react");
|
|
1069
1120
|
|
|
1070
1121
|
// src/components/icons/check/index.tsx
|
|
1071
|
-
var
|
|
1122
|
+
var import_jsx_runtime13 = require("react/jsx-runtime");
|
|
1072
1123
|
function CheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
1073
|
-
return /* @__PURE__ */ (0,
|
|
1124
|
+
return /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
|
|
1074
1125
|
"svg",
|
|
1075
1126
|
{
|
|
1076
1127
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1084,13 +1135,13 @@ function CheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
1084
1135
|
strokeLinejoin: "round",
|
|
1085
1136
|
"aria-hidden": "true",
|
|
1086
1137
|
...rest,
|
|
1087
|
-
children: /* @__PURE__ */ (0,
|
|
1138
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("path", { d: "M20 6 9 17l-5-5" })
|
|
1088
1139
|
}
|
|
1089
1140
|
);
|
|
1090
1141
|
}
|
|
1091
1142
|
|
|
1092
1143
|
// src/components/checkbox/use-styles.ts
|
|
1093
|
-
var
|
|
1144
|
+
var import_react24 = require("react");
|
|
1094
1145
|
|
|
1095
1146
|
// src/components/checkbox/use-styles.css.ts
|
|
1096
1147
|
var box = "use-styles_box__9zoga91";
|
|
@@ -1101,13 +1152,13 @@ var input = "surfaces_srOnly__1qa7atn0";
|
|
|
1101
1152
|
var root6 = "use-styles_root__9zoga90";
|
|
1102
1153
|
|
|
1103
1154
|
// src/components/checkbox/use-styles.ts
|
|
1104
|
-
function
|
|
1155
|
+
function useStyles10({ checked, disabled: disabled3 }) {
|
|
1105
1156
|
const { themeClass } = useTheme();
|
|
1106
|
-
const root24 = (0,
|
|
1157
|
+
const root24 = (0, import_react24.useMemo)(
|
|
1107
1158
|
() => [themeClass, root6, disabled3 && disabled].filter(Boolean).join(" "),
|
|
1108
1159
|
[themeClass, disabled3]
|
|
1109
1160
|
);
|
|
1110
|
-
const box2 = (0,
|
|
1161
|
+
const box2 = (0, import_react24.useMemo)(
|
|
1111
1162
|
() => [box, checked && boxChecked].filter(Boolean).join(" "),
|
|
1112
1163
|
[checked]
|
|
1113
1164
|
);
|
|
@@ -1115,16 +1166,16 @@ function useStyles9({ checked, disabled: disabled3 }) {
|
|
|
1115
1166
|
}
|
|
1116
1167
|
|
|
1117
1168
|
// src/components/checkbox/index.tsx
|
|
1118
|
-
var
|
|
1119
|
-
var Checkbox = (0,
|
|
1120
|
-
const { root: root24, input: input6, box: box2, check: check2 } =
|
|
1169
|
+
var import_jsx_runtime14 = require("react/jsx-runtime");
|
|
1170
|
+
var Checkbox = (0, import_react25.forwardRef)(function Checkbox2({ checked = false, onChange, label: label7, disabled: disabled3 = false, id, testId, ...rest }, ref) {
|
|
1171
|
+
const { root: root24, input: input6, box: box2, check: check2 } = useStyles10({ checked, disabled: disabled3 });
|
|
1121
1172
|
const { testId: dataTestId } = useTestId("toggle", testId);
|
|
1122
1173
|
const handleChange = (e) => {
|
|
1123
1174
|
if (disabled3) return;
|
|
1124
1175
|
onChange?.(e.target.checked);
|
|
1125
1176
|
};
|
|
1126
|
-
return /* @__PURE__ */ (0,
|
|
1127
|
-
/* @__PURE__ */ (0,
|
|
1177
|
+
return /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("label", { className: root24, "data-testid": dataTestId, "data-state": states({ checked, disabled: disabled3 }), children: [
|
|
1178
|
+
/* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
|
|
1128
1179
|
"input",
|
|
1129
1180
|
{
|
|
1130
1181
|
ref,
|
|
@@ -1137,16 +1188,16 @@ var Checkbox = (0, import_react23.forwardRef)(function Checkbox2({ checked = fal
|
|
|
1137
1188
|
...rest
|
|
1138
1189
|
}
|
|
1139
1190
|
),
|
|
1140
|
-
/* @__PURE__ */ (0,
|
|
1191
|
+
/* @__PURE__ */ (0, import_jsx_runtime14.jsx)("span", { className: box2, children: checked && /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(CheckIcon, { size: 12, className: check2 }) }),
|
|
1141
1192
|
label7
|
|
1142
1193
|
] });
|
|
1143
1194
|
});
|
|
1144
1195
|
|
|
1145
1196
|
// src/components/radio/index.tsx
|
|
1146
|
-
var
|
|
1197
|
+
var import_react27 = require("react");
|
|
1147
1198
|
|
|
1148
1199
|
// src/components/radio/use-styles.ts
|
|
1149
|
-
var
|
|
1200
|
+
var import_react26 = require("react");
|
|
1150
1201
|
|
|
1151
1202
|
// src/components/radio/use-styles.css.ts
|
|
1152
1203
|
var circle = "use-styles_circle__vy61b42";
|
|
@@ -1157,12 +1208,12 @@ var label2 = "use-styles_label__vy61b44";
|
|
|
1157
1208
|
var root7 = "use-styles_root__vy61b40";
|
|
1158
1209
|
|
|
1159
1210
|
// src/components/radio/use-styles.ts
|
|
1160
|
-
function
|
|
1211
|
+
function useStyles11({
|
|
1161
1212
|
disabled: disabled3,
|
|
1162
1213
|
className
|
|
1163
1214
|
}) {
|
|
1164
1215
|
const { themeClass } = useTheme();
|
|
1165
|
-
const root24 = (0,
|
|
1216
|
+
const root24 = (0, import_react26.useMemo)(
|
|
1166
1217
|
() => [themeClass, root7, disabled3 && disabled2, className].filter(Boolean).join(" "),
|
|
1167
1218
|
[themeClass, disabled3, className]
|
|
1168
1219
|
);
|
|
@@ -1176,12 +1227,12 @@ function useStyles10({
|
|
|
1176
1227
|
}
|
|
1177
1228
|
|
|
1178
1229
|
// src/components/radio/index.tsx
|
|
1179
|
-
var
|
|
1180
|
-
var Radio = (0,
|
|
1181
|
-
const { root: root24, input: input6, circle: circle2, dot: dot3, label: labelClass } =
|
|
1230
|
+
var import_jsx_runtime15 = require("react/jsx-runtime");
|
|
1231
|
+
var Radio = (0, import_react27.forwardRef)(function Radio2({ checked, onChange, label: label7, name, value, disabled: disabled3, testId, ...rest }, ref) {
|
|
1232
|
+
const { root: root24, input: input6, circle: circle2, dot: dot3, label: labelClass } = useStyles11({ disabled: disabled3 });
|
|
1182
1233
|
const { testId: dataTestId } = useTestId("toggle", testId);
|
|
1183
|
-
return /* @__PURE__ */ (0,
|
|
1184
|
-
/* @__PURE__ */ (0,
|
|
1234
|
+
return /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("label", { className: root24, "data-testid": dataTestId, "data-state": states({ checked, disabled: disabled3 }), children: [
|
|
1235
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
|
|
1185
1236
|
"input",
|
|
1186
1237
|
{
|
|
1187
1238
|
ref,
|
|
@@ -1195,16 +1246,16 @@ var Radio = (0, import_react25.forwardRef)(function Radio2({ checked, onChange,
|
|
|
1195
1246
|
...rest
|
|
1196
1247
|
}
|
|
1197
1248
|
),
|
|
1198
|
-
/* @__PURE__ */ (0,
|
|
1199
|
-
label7 != null && /* @__PURE__ */ (0,
|
|
1249
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: circle2, children: checked && /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: dot3 }) }),
|
|
1250
|
+
label7 != null && /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: labelClass, children: label7 })
|
|
1200
1251
|
] });
|
|
1201
1252
|
});
|
|
1202
1253
|
|
|
1203
1254
|
// src/components/switch/index.tsx
|
|
1204
|
-
var
|
|
1255
|
+
var import_react29 = require("react");
|
|
1205
1256
|
|
|
1206
1257
|
// src/components/switch/use-styles.ts
|
|
1207
|
-
var
|
|
1258
|
+
var import_react28 = require("react");
|
|
1208
1259
|
|
|
1209
1260
|
// src/components/switch/use-styles.css.ts
|
|
1210
1261
|
var input3 = "surfaces_srOnly__1qa7atn0";
|
|
@@ -1216,9 +1267,9 @@ var track2 = "use-styles_track__1r6kem71";
|
|
|
1216
1267
|
var trackChecked = "use-styles_trackChecked__1r6kem72";
|
|
1217
1268
|
|
|
1218
1269
|
// src/components/switch/use-styles.ts
|
|
1219
|
-
function
|
|
1270
|
+
function useStyles12({ checked }) {
|
|
1220
1271
|
const { themeClass } = useTheme();
|
|
1221
|
-
return (0,
|
|
1272
|
+
return (0, import_react28.useMemo)(
|
|
1222
1273
|
() => ({
|
|
1223
1274
|
root: [themeClass, root8].filter(Boolean).join(" "),
|
|
1224
1275
|
input: input3,
|
|
@@ -1231,12 +1282,12 @@ function useStyles11({ checked }) {
|
|
|
1231
1282
|
}
|
|
1232
1283
|
|
|
1233
1284
|
// src/components/switch/index.tsx
|
|
1234
|
-
var
|
|
1235
|
-
var Switch = (0,
|
|
1236
|
-
const { root: root24, input: input6, track: track4, knob: knob2, label: labelClass } =
|
|
1285
|
+
var import_jsx_runtime16 = require("react/jsx-runtime");
|
|
1286
|
+
var Switch = (0, import_react29.forwardRef)(function Switch2({ checked = false, onChange, label: label7, disabled: disabled3, testId, ...rest }, ref) {
|
|
1287
|
+
const { root: root24, input: input6, track: track4, knob: knob2, label: labelClass } = useStyles12({ checked });
|
|
1237
1288
|
const { testId: dataTestId } = useTestId("toggle", testId);
|
|
1238
|
-
return /* @__PURE__ */ (0,
|
|
1239
|
-
/* @__PURE__ */ (0,
|
|
1289
|
+
return /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("label", { className: root24, "data-testid": dataTestId, "data-state": states({ checked, disabled: disabled3 }), children: [
|
|
1290
|
+
/* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
|
|
1240
1291
|
"input",
|
|
1241
1292
|
{
|
|
1242
1293
|
ref,
|
|
@@ -1253,19 +1304,19 @@ var Switch = (0, import_react27.forwardRef)(function Switch2({ checked = false,
|
|
|
1253
1304
|
...rest
|
|
1254
1305
|
}
|
|
1255
1306
|
),
|
|
1256
|
-
/* @__PURE__ */ (0,
|
|
1257
|
-
label7 != null && /* @__PURE__ */ (0,
|
|
1307
|
+
/* @__PURE__ */ (0, import_jsx_runtime16.jsx)("span", { className: track4, children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("span", { className: knob2 }) }),
|
|
1308
|
+
label7 != null && /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("span", { className: labelClass, children: label7 })
|
|
1258
1309
|
] });
|
|
1259
1310
|
});
|
|
1260
1311
|
|
|
1261
1312
|
// src/components/text-field/index.tsx
|
|
1262
|
-
var
|
|
1313
|
+
var import_react32 = require("react");
|
|
1263
1314
|
|
|
1264
1315
|
// src/components/base-field/index.tsx
|
|
1265
|
-
var
|
|
1316
|
+
var import_react31 = require("react");
|
|
1266
1317
|
|
|
1267
1318
|
// src/components/base-field/use-styles.ts
|
|
1268
|
-
var
|
|
1319
|
+
var import_react30 = require("react");
|
|
1269
1320
|
|
|
1270
1321
|
// src/components/base-field/use-styles.css.ts
|
|
1271
1322
|
var field = "use-styles_field__1c3cgd3";
|
|
@@ -1282,9 +1333,9 @@ var startIconSlot = "use-styles_startIconSlot__1c3cgda";
|
|
|
1282
1333
|
var trailingSlot = "use-styles_trailingSlot__1c3cgdb";
|
|
1283
1334
|
|
|
1284
1335
|
// src/components/base-field/use-styles.ts
|
|
1285
|
-
function
|
|
1336
|
+
function useStyles13({ error, hasStartIcon, hasTrailing, className }) {
|
|
1286
1337
|
const { themeClass } = useTheme();
|
|
1287
|
-
return (0,
|
|
1338
|
+
return (0, import_react30.useMemo)(() => {
|
|
1288
1339
|
const root24 = [themeClass, root9].filter(Boolean).join(" ");
|
|
1289
1340
|
const labelText2 = [labelText, error && labelTextError].filter(Boolean).join(" ");
|
|
1290
1341
|
const input6 = [
|
|
@@ -1308,15 +1359,15 @@ function useStyles12({ error, hasStartIcon, hasTrailing, className }) {
|
|
|
1308
1359
|
}
|
|
1309
1360
|
|
|
1310
1361
|
// src/components/base-field/index.tsx
|
|
1311
|
-
var
|
|
1312
|
-
var BaseField = (0,
|
|
1313
|
-
const autoId = (0,
|
|
1362
|
+
var import_jsx_runtime17 = require("react/jsx-runtime");
|
|
1363
|
+
var BaseField = (0, import_react31.forwardRef)(function BaseField2({ label: label7, help, error, startIcon: StartIcon, trailing: trailing2, id, className, testId, children }, ref) {
|
|
1364
|
+
const autoId = (0, import_react31.useId)();
|
|
1314
1365
|
const controlId = id ?? autoId;
|
|
1315
1366
|
const errorMessage = error != null && error !== false && error !== true && error !== "" ? error : null;
|
|
1316
1367
|
const hasError = error === true || errorMessage != null;
|
|
1317
1368
|
const message2 = errorMessage ?? help;
|
|
1318
1369
|
const messageId = message2 != null ? `${controlId}-msg` : void 0;
|
|
1319
|
-
const classes =
|
|
1370
|
+
const classes = useStyles13({
|
|
1320
1371
|
error: hasError,
|
|
1321
1372
|
hasStartIcon: StartIcon != null,
|
|
1322
1373
|
hasTrailing: trailing2 != null,
|
|
@@ -1331,15 +1382,15 @@ var BaseField = (0, import_react29.forwardRef)(function BaseField2({ label: labe
|
|
|
1331
1382
|
"aria-invalid": hasError ? true : void 0,
|
|
1332
1383
|
"data-testid": slot("input")
|
|
1333
1384
|
};
|
|
1334
|
-
return /* @__PURE__ */ (0,
|
|
1335
|
-
label7 != null && /* @__PURE__ */ (0,
|
|
1336
|
-
/* @__PURE__ */ (0,
|
|
1337
|
-
StartIcon != null && /* @__PURE__ */ (0,
|
|
1385
|
+
return /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { className: classes.root, "data-testid": rootTestId, "data-state": states({ error: hasError }), children: [
|
|
1386
|
+
label7 != null && /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("label", { htmlFor: controlId, className: classes.labelText, "data-testid": slot("label"), children: label7 }),
|
|
1387
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { className: classes.field, children: [
|
|
1388
|
+
StartIcon != null && /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("span", { className: classes.startIconSlot, children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(StartIcon, { size: 18 }) }),
|
|
1338
1389
|
children(control),
|
|
1339
|
-
trailing2 != null && /* @__PURE__ */ (0,
|
|
1390
|
+
trailing2 != null && /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("span", { className: classes.trailingSlot, children: trailing2 })
|
|
1340
1391
|
] }),
|
|
1341
1392
|
message2 != null && // `aria-live` solo cuando el mensaje es un error: anuncia la validación al aparecer.
|
|
1342
|
-
/* @__PURE__ */ (0,
|
|
1393
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
1343
1394
|
"span",
|
|
1344
1395
|
{
|
|
1345
1396
|
id: messageId,
|
|
@@ -1353,12 +1404,12 @@ var BaseField = (0, import_react29.forwardRef)(function BaseField2({ label: labe
|
|
|
1353
1404
|
});
|
|
1354
1405
|
|
|
1355
1406
|
// src/components/text-field/index.tsx
|
|
1356
|
-
var
|
|
1407
|
+
var import_jsx_runtime18 = (
|
|
1357
1408
|
// En multiline el control es un <textarea>: no reenviamos `controlRef` porque el
|
|
1358
1409
|
// tipo público de la ref es HTMLInputElement (la ref aplica solo a la rama <input>).
|
|
1359
1410
|
require("react/jsx-runtime")
|
|
1360
1411
|
);
|
|
1361
|
-
var TextField = (0,
|
|
1412
|
+
var TextField = (0, import_react32.forwardRef)(function TextField2({
|
|
1362
1413
|
label: label7,
|
|
1363
1414
|
help,
|
|
1364
1415
|
error,
|
|
@@ -1373,7 +1424,7 @@ var TextField = (0, import_react30.forwardRef)(function TextField2({
|
|
|
1373
1424
|
...rest
|
|
1374
1425
|
}, ref) {
|
|
1375
1426
|
const rawTestId = rest["data-testid"];
|
|
1376
|
-
return /* @__PURE__ */ (0,
|
|
1427
|
+
return /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
|
|
1377
1428
|
BaseField,
|
|
1378
1429
|
{
|
|
1379
1430
|
ref,
|
|
@@ -1384,7 +1435,7 @@ var TextField = (0, import_react30.forwardRef)(function TextField2({
|
|
|
1384
1435
|
id,
|
|
1385
1436
|
className,
|
|
1386
1437
|
testId,
|
|
1387
|
-
children: ({ ref: controlRef, ...control }) => multiline ? /* @__PURE__ */ (0,
|
|
1438
|
+
children: ({ ref: controlRef, ...control }) => multiline ? /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
|
|
1388
1439
|
"textarea",
|
|
1389
1440
|
{
|
|
1390
1441
|
...rest,
|
|
@@ -1393,7 +1444,7 @@ var TextField = (0, import_react30.forwardRef)(function TextField2({
|
|
|
1393
1444
|
rows: rows ?? 4,
|
|
1394
1445
|
onChange: (e) => onChange?.(e.target.value)
|
|
1395
1446
|
}
|
|
1396
|
-
) : /* @__PURE__ */ (0,
|
|
1447
|
+
) : /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
|
|
1397
1448
|
"input",
|
|
1398
1449
|
{
|
|
1399
1450
|
...rest,
|
|
@@ -1409,12 +1460,12 @@ var TextField = (0, import_react30.forwardRef)(function TextField2({
|
|
|
1409
1460
|
});
|
|
1410
1461
|
|
|
1411
1462
|
// src/components/password-field/index.tsx
|
|
1412
|
-
var
|
|
1463
|
+
var import_react34 = require("react");
|
|
1413
1464
|
|
|
1414
1465
|
// src/components/icons/eye/index.tsx
|
|
1415
|
-
var
|
|
1466
|
+
var import_jsx_runtime19 = require("react/jsx-runtime");
|
|
1416
1467
|
function EyeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
1417
|
-
return /* @__PURE__ */ (0,
|
|
1468
|
+
return /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)(
|
|
1418
1469
|
"svg",
|
|
1419
1470
|
{
|
|
1420
1471
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1429,17 +1480,17 @@ function EyeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
1429
1480
|
"aria-hidden": "true",
|
|
1430
1481
|
...rest,
|
|
1431
1482
|
children: [
|
|
1432
|
-
/* @__PURE__ */ (0,
|
|
1433
|
-
/* @__PURE__ */ (0,
|
|
1483
|
+
/* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", { d: "M2 12s3-7 10-7 10 7 10 7-3 7-10 7-10-7-10-7Z" }),
|
|
1484
|
+
/* @__PURE__ */ (0, import_jsx_runtime19.jsx)("circle", { cx: "12", cy: "12", r: "3" })
|
|
1434
1485
|
]
|
|
1435
1486
|
}
|
|
1436
1487
|
);
|
|
1437
1488
|
}
|
|
1438
1489
|
|
|
1439
1490
|
// src/components/icons/eye-off/index.tsx
|
|
1440
|
-
var
|
|
1491
|
+
var import_jsx_runtime20 = require("react/jsx-runtime");
|
|
1441
1492
|
function EyeOffIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
1442
|
-
return /* @__PURE__ */ (0,
|
|
1493
|
+
return /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(
|
|
1443
1494
|
"svg",
|
|
1444
1495
|
{
|
|
1445
1496
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1454,39 +1505,39 @@ function EyeOffIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
1454
1505
|
"aria-hidden": "true",
|
|
1455
1506
|
...rest,
|
|
1456
1507
|
children: [
|
|
1457
|
-
/* @__PURE__ */ (0,
|
|
1458
|
-
/* @__PURE__ */ (0,
|
|
1459
|
-
/* @__PURE__ */ (0,
|
|
1460
|
-
/* @__PURE__ */ (0,
|
|
1508
|
+
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { d: "M9.88 9.88a3 3 0 1 0 4.24 4.24" }),
|
|
1509
|
+
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)("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" }),
|
|
1510
|
+
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)("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" }),
|
|
1511
|
+
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { d: "m2 2 20 20" })
|
|
1461
1512
|
]
|
|
1462
1513
|
}
|
|
1463
1514
|
);
|
|
1464
1515
|
}
|
|
1465
1516
|
|
|
1466
1517
|
// src/components/password-field/use-styles.ts
|
|
1467
|
-
var
|
|
1518
|
+
var import_react33 = require("react");
|
|
1468
1519
|
|
|
1469
1520
|
// src/components/password-field/use-styles.css.ts
|
|
1470
1521
|
var revealButton = "use-styles_revealButton__rsu9d50";
|
|
1471
1522
|
|
|
1472
1523
|
// src/components/password-field/use-styles.ts
|
|
1473
|
-
function
|
|
1474
|
-
return (0,
|
|
1524
|
+
function useStyles14() {
|
|
1525
|
+
return (0, import_react33.useMemo)(() => ({ revealButton }), []);
|
|
1475
1526
|
}
|
|
1476
1527
|
|
|
1477
1528
|
// src/components/password-field/index.tsx
|
|
1478
|
-
var
|
|
1479
|
-
var PasswordField = (0,
|
|
1529
|
+
var import_jsx_runtime21 = require("react/jsx-runtime");
|
|
1530
|
+
var PasswordField = (0, import_react34.forwardRef)(
|
|
1480
1531
|
function PasswordField2({ label: label7, help, error, startIcon, onChange, id, className, ...rest }, ref) {
|
|
1481
|
-
const [reveal, setReveal] = (0,
|
|
1482
|
-
const classes =
|
|
1532
|
+
const [reveal, setReveal] = (0, import_react34.useState)(false);
|
|
1533
|
+
const classes = useStyles14();
|
|
1483
1534
|
const handleChange = (e) => {
|
|
1484
1535
|
onChange?.(e.target.value);
|
|
1485
1536
|
};
|
|
1486
1537
|
const handleToggleMouseDown = (e) => {
|
|
1487
1538
|
e.preventDefault();
|
|
1488
1539
|
};
|
|
1489
|
-
const toggleButton = /* @__PURE__ */ (0,
|
|
1540
|
+
const toggleButton = /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
|
|
1490
1541
|
"button",
|
|
1491
1542
|
{
|
|
1492
1543
|
type: "button",
|
|
@@ -1495,10 +1546,10 @@ var PasswordField = (0, import_react32.forwardRef)(
|
|
|
1495
1546
|
"aria-label": reveal ? "Ocultar contrase\xF1a" : "Mostrar contrase\xF1a",
|
|
1496
1547
|
onMouseDown: handleToggleMouseDown,
|
|
1497
1548
|
onClick: () => setReveal((r) => !r),
|
|
1498
|
-
children: reveal ? /* @__PURE__ */ (0,
|
|
1549
|
+
children: reveal ? /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(EyeOffIcon, { size: 18 }) : /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(EyeIcon, { size: 18 })
|
|
1499
1550
|
}
|
|
1500
1551
|
);
|
|
1501
|
-
return /* @__PURE__ */ (0,
|
|
1552
|
+
return /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
|
|
1502
1553
|
BaseField,
|
|
1503
1554
|
{
|
|
1504
1555
|
ref,
|
|
@@ -1509,7 +1560,7 @@ var PasswordField = (0, import_react32.forwardRef)(
|
|
|
1509
1560
|
trailing: toggleButton,
|
|
1510
1561
|
id,
|
|
1511
1562
|
className,
|
|
1512
|
-
children: (control) => /* @__PURE__ */ (0,
|
|
1563
|
+
children: (control) => /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
|
|
1513
1564
|
"input",
|
|
1514
1565
|
{
|
|
1515
1566
|
...rest,
|
|
@@ -1524,15 +1575,15 @@ var PasswordField = (0, import_react32.forwardRef)(
|
|
|
1524
1575
|
);
|
|
1525
1576
|
|
|
1526
1577
|
// src/components/money-field/index.tsx
|
|
1527
|
-
var
|
|
1528
|
-
var
|
|
1578
|
+
var import_react35 = require("react");
|
|
1579
|
+
var import_jsx_runtime22 = require("react/jsx-runtime");
|
|
1529
1580
|
function parseAmount(raw) {
|
|
1530
1581
|
const cleaned = raw.replace(/[^0-9.-]/g, "");
|
|
1531
1582
|
if (cleaned === "" || cleaned === "-" || cleaned === ".") return null;
|
|
1532
1583
|
const n = Number.parseFloat(cleaned);
|
|
1533
1584
|
return Number.isNaN(n) ? null : n;
|
|
1534
1585
|
}
|
|
1535
|
-
var MoneyField = (0,
|
|
1586
|
+
var MoneyField = (0, import_react35.forwardRef)(function MoneyField2({
|
|
1536
1587
|
value,
|
|
1537
1588
|
onChange,
|
|
1538
1589
|
currency = "USD",
|
|
@@ -1547,9 +1598,9 @@ var MoneyField = (0, import_react33.forwardRef)(function MoneyField2({
|
|
|
1547
1598
|
onBlur,
|
|
1548
1599
|
...rest
|
|
1549
1600
|
}, ref) {
|
|
1550
|
-
const [focused, setFocused] = (0,
|
|
1551
|
-
const [draft, setDraft] = (0,
|
|
1552
|
-
const formatter = (0,
|
|
1601
|
+
const [focused, setFocused] = (0, import_react35.useState)(false);
|
|
1602
|
+
const [draft, setDraft] = (0, import_react35.useState)("");
|
|
1603
|
+
const formatter = (0, import_react35.useMemo)(
|
|
1553
1604
|
() => new Intl.NumberFormat(locale, { style: "currency", currency }),
|
|
1554
1605
|
[locale, currency]
|
|
1555
1606
|
);
|
|
@@ -1565,7 +1616,7 @@ var MoneyField = (0, import_react33.forwardRef)(function MoneyField2({
|
|
|
1565
1616
|
onChange?.(parseAmount(draft));
|
|
1566
1617
|
onBlur?.(e);
|
|
1567
1618
|
};
|
|
1568
|
-
return /* @__PURE__ */ (0,
|
|
1619
|
+
return /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|
|
1569
1620
|
BaseField,
|
|
1570
1621
|
{
|
|
1571
1622
|
ref,
|
|
@@ -1575,7 +1626,7 @@ var MoneyField = (0, import_react33.forwardRef)(function MoneyField2({
|
|
|
1575
1626
|
startIcon,
|
|
1576
1627
|
id,
|
|
1577
1628
|
className,
|
|
1578
|
-
children: (control) => /* @__PURE__ */ (0,
|
|
1629
|
+
children: (control) => /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|
|
1579
1630
|
"input",
|
|
1580
1631
|
{
|
|
1581
1632
|
...rest,
|
|
@@ -1592,10 +1643,10 @@ var MoneyField = (0, import_react33.forwardRef)(function MoneyField2({
|
|
|
1592
1643
|
});
|
|
1593
1644
|
|
|
1594
1645
|
// src/components/icon-button/index.tsx
|
|
1595
|
-
var
|
|
1646
|
+
var import_react37 = require("react");
|
|
1596
1647
|
|
|
1597
1648
|
// src/components/icon-button/use-styles.ts
|
|
1598
|
-
var
|
|
1649
|
+
var import_react36 = require("react");
|
|
1599
1650
|
|
|
1600
1651
|
// src/components/icon-button/use-styles.css.ts
|
|
1601
1652
|
var accent = "use-styles_accent__18np0q02";
|
|
@@ -1603,12 +1654,12 @@ var active = "use-styles_active__18np0q01";
|
|
|
1603
1654
|
var root10 = "use-styles_root__18np0q00";
|
|
1604
1655
|
|
|
1605
1656
|
// src/components/icon-button/use-styles.ts
|
|
1606
|
-
function
|
|
1657
|
+
function useStyles15({
|
|
1607
1658
|
active: active2 = false,
|
|
1608
1659
|
tone: tone4 = "ink"
|
|
1609
1660
|
}) {
|
|
1610
1661
|
const { themeClass } = useTheme();
|
|
1611
|
-
const root24 = (0,
|
|
1662
|
+
const root24 = (0, import_react36.useMemo)(
|
|
1612
1663
|
() => [themeClass, root10, tone4 === "accent" && accent, active2 && active].filter(Boolean).join(" "),
|
|
1613
1664
|
[themeClass, active2, tone4]
|
|
1614
1665
|
);
|
|
@@ -1616,8 +1667,8 @@ function useStyles14({
|
|
|
1616
1667
|
}
|
|
1617
1668
|
|
|
1618
1669
|
// src/components/icon-button/index.tsx
|
|
1619
|
-
var
|
|
1620
|
-
var IconButton = (0,
|
|
1670
|
+
var import_jsx_runtime23 = require("react/jsx-runtime");
|
|
1671
|
+
var IconButton = (0, import_react37.forwardRef)(function IconButton2({ icon: Icon, active: active2, tone: tone4, title, type = "button", testId, ...rest }, ref) {
|
|
1621
1672
|
if (typeof process !== "undefined" && process.env.NODE_ENV !== "production") {
|
|
1622
1673
|
const restProps = rest;
|
|
1623
1674
|
const hasName = title.trim() !== "" || restProps["aria-label"] != null || restProps["aria-labelledby"] != null;
|
|
@@ -1625,9 +1676,9 @@ var IconButton = (0, import_react35.forwardRef)(function IconButton2({ icon: Ico
|
|
|
1625
1676
|
console.warn("IconButton: falta un nombre accesible (`title` o `aria-label`).");
|
|
1626
1677
|
}
|
|
1627
1678
|
}
|
|
1628
|
-
const { root: root24 } =
|
|
1679
|
+
const { root: root24 } = useStyles15({ active: active2, tone: tone4 });
|
|
1629
1680
|
const { testId: dataTestId } = useTestId("button", testId);
|
|
1630
|
-
return /* @__PURE__ */ (0,
|
|
1681
|
+
return /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
|
|
1631
1682
|
"button",
|
|
1632
1683
|
{
|
|
1633
1684
|
ref,
|
|
@@ -1638,16 +1689,16 @@ var IconButton = (0, import_react35.forwardRef)(function IconButton2({ icon: Ico
|
|
|
1638
1689
|
"data-testid": dataTestId,
|
|
1639
1690
|
"data-state": states({ active: active2, disabled: rest.disabled }),
|
|
1640
1691
|
...rest,
|
|
1641
|
-
children: /* @__PURE__ */ (0,
|
|
1692
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(Icon, { size: 18 })
|
|
1642
1693
|
}
|
|
1643
1694
|
);
|
|
1644
1695
|
});
|
|
1645
1696
|
|
|
1646
1697
|
// src/components/card/index.tsx
|
|
1647
|
-
var
|
|
1698
|
+
var import_react39 = require("react");
|
|
1648
1699
|
|
|
1649
1700
|
// src/components/card/use-styles.ts
|
|
1650
|
-
var
|
|
1701
|
+
var import_react38 = require("react");
|
|
1651
1702
|
|
|
1652
1703
|
// src/components/card/use-styles.css.ts
|
|
1653
1704
|
var body = "use-styles_body__1fuvd022";
|
|
@@ -1656,30 +1707,30 @@ var header = "use-styles_header__1fuvd021";
|
|
|
1656
1707
|
var root11 = "use-styles_root__1fuvd020";
|
|
1657
1708
|
|
|
1658
1709
|
// src/components/card/use-styles.ts
|
|
1659
|
-
function
|
|
1710
|
+
function useStyles16() {
|
|
1660
1711
|
const { themeClass } = useTheme();
|
|
1661
|
-
const root24 = (0,
|
|
1712
|
+
const root24 = (0, import_react38.useMemo)(() => `${themeClass} ${root11}`, [themeClass]);
|
|
1662
1713
|
return { root: root24, header, body, footer };
|
|
1663
1714
|
}
|
|
1664
1715
|
|
|
1665
1716
|
// src/components/card/index.tsx
|
|
1666
|
-
var
|
|
1667
|
-
var CardRoot = (0,
|
|
1668
|
-
const { root: root24 } =
|
|
1717
|
+
var import_jsx_runtime24 = require("react/jsx-runtime");
|
|
1718
|
+
var CardRoot = (0, import_react39.forwardRef)(function Card({ children, testId, ...rest }, ref) {
|
|
1719
|
+
const { root: root24 } = useStyles16();
|
|
1669
1720
|
const { testId: dataTestId } = useTestId("layout", testId);
|
|
1670
|
-
return /* @__PURE__ */ (0,
|
|
1721
|
+
return /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("div", { ref, className: root24, "data-testid": dataTestId, ...rest, children });
|
|
1671
1722
|
});
|
|
1672
1723
|
function CardHeader({ children, ...rest }) {
|
|
1673
|
-
const { header: header3 } =
|
|
1674
|
-
return /* @__PURE__ */ (0,
|
|
1724
|
+
const { header: header3 } = useStyles16();
|
|
1725
|
+
return /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("div", { className: header3, ...rest, children });
|
|
1675
1726
|
}
|
|
1676
1727
|
function CardBody({ children, ...rest }) {
|
|
1677
|
-
const { body: body3 } =
|
|
1678
|
-
return /* @__PURE__ */ (0,
|
|
1728
|
+
const { body: body3 } = useStyles16();
|
|
1729
|
+
return /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("div", { className: body3, ...rest, children });
|
|
1679
1730
|
}
|
|
1680
1731
|
function CardFooter({ children, ...rest }) {
|
|
1681
|
-
const { footer: footer2 } =
|
|
1682
|
-
return /* @__PURE__ */ (0,
|
|
1732
|
+
const { footer: footer2 } = useStyles16();
|
|
1733
|
+
return /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("div", { className: footer2, ...rest, children });
|
|
1683
1734
|
}
|
|
1684
1735
|
CardRoot.displayName = "Card";
|
|
1685
1736
|
CardHeader.displayName = "Card.Header";
|
|
@@ -1692,12 +1743,12 @@ var Card2 = Object.assign(CardRoot, {
|
|
|
1692
1743
|
});
|
|
1693
1744
|
|
|
1694
1745
|
// src/components/alert/index.tsx
|
|
1695
|
-
var
|
|
1746
|
+
var import_react41 = require("react");
|
|
1696
1747
|
|
|
1697
1748
|
// src/components/icons/circle-check/index.tsx
|
|
1698
|
-
var
|
|
1749
|
+
var import_jsx_runtime25 = require("react/jsx-runtime");
|
|
1699
1750
|
function CircleCheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
1700
|
-
return /* @__PURE__ */ (0,
|
|
1751
|
+
return /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)(
|
|
1701
1752
|
"svg",
|
|
1702
1753
|
{
|
|
1703
1754
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1712,17 +1763,17 @@ function CircleCheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
1712
1763
|
"aria-hidden": "true",
|
|
1713
1764
|
...rest,
|
|
1714
1765
|
children: [
|
|
1715
|
-
/* @__PURE__ */ (0,
|
|
1716
|
-
/* @__PURE__ */ (0,
|
|
1766
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
|
|
1767
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)("path", { d: "m9 12 2 2 4-4" })
|
|
1717
1768
|
]
|
|
1718
1769
|
}
|
|
1719
1770
|
);
|
|
1720
1771
|
}
|
|
1721
1772
|
|
|
1722
1773
|
// src/components/icons/circle-x/index.tsx
|
|
1723
|
-
var
|
|
1774
|
+
var import_jsx_runtime26 = require("react/jsx-runtime");
|
|
1724
1775
|
function CircleXIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
1725
|
-
return /* @__PURE__ */ (0,
|
|
1776
|
+
return /* @__PURE__ */ (0, import_jsx_runtime26.jsxs)(
|
|
1726
1777
|
"svg",
|
|
1727
1778
|
{
|
|
1728
1779
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1737,18 +1788,18 @@ function CircleXIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
1737
1788
|
"aria-hidden": "true",
|
|
1738
1789
|
...rest,
|
|
1739
1790
|
children: [
|
|
1740
|
-
/* @__PURE__ */ (0,
|
|
1741
|
-
/* @__PURE__ */ (0,
|
|
1742
|
-
/* @__PURE__ */ (0,
|
|
1791
|
+
/* @__PURE__ */ (0, import_jsx_runtime26.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
|
|
1792
|
+
/* @__PURE__ */ (0, import_jsx_runtime26.jsx)("path", { d: "m15 9-6 6" }),
|
|
1793
|
+
/* @__PURE__ */ (0, import_jsx_runtime26.jsx)("path", { d: "m9 9 6 6" })
|
|
1743
1794
|
]
|
|
1744
1795
|
}
|
|
1745
1796
|
);
|
|
1746
1797
|
}
|
|
1747
1798
|
|
|
1748
1799
|
// src/components/icons/info/index.tsx
|
|
1749
|
-
var
|
|
1800
|
+
var import_jsx_runtime27 = require("react/jsx-runtime");
|
|
1750
1801
|
function InfoIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
1751
|
-
return /* @__PURE__ */ (0,
|
|
1802
|
+
return /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)(
|
|
1752
1803
|
"svg",
|
|
1753
1804
|
{
|
|
1754
1805
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1763,18 +1814,18 @@ function InfoIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
1763
1814
|
"aria-hidden": "true",
|
|
1764
1815
|
...rest,
|
|
1765
1816
|
children: [
|
|
1766
|
-
/* @__PURE__ */ (0,
|
|
1767
|
-
/* @__PURE__ */ (0,
|
|
1768
|
-
/* @__PURE__ */ (0,
|
|
1817
|
+
/* @__PURE__ */ (0, import_jsx_runtime27.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
|
|
1818
|
+
/* @__PURE__ */ (0, import_jsx_runtime27.jsx)("path", { d: "M12 16v-4" }),
|
|
1819
|
+
/* @__PURE__ */ (0, import_jsx_runtime27.jsx)("path", { d: "M12 8h.01" })
|
|
1769
1820
|
]
|
|
1770
1821
|
}
|
|
1771
1822
|
);
|
|
1772
1823
|
}
|
|
1773
1824
|
|
|
1774
1825
|
// src/components/icons/triangle-alert/index.tsx
|
|
1775
|
-
var
|
|
1826
|
+
var import_jsx_runtime28 = require("react/jsx-runtime");
|
|
1776
1827
|
function TriangleAlertIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
1777
|
-
return /* @__PURE__ */ (0,
|
|
1828
|
+
return /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)(
|
|
1778
1829
|
"svg",
|
|
1779
1830
|
{
|
|
1780
1831
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1789,16 +1840,16 @@ function TriangleAlertIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
1789
1840
|
"aria-hidden": "true",
|
|
1790
1841
|
...rest,
|
|
1791
1842
|
children: [
|
|
1792
|
-
/* @__PURE__ */ (0,
|
|
1793
|
-
/* @__PURE__ */ (0,
|
|
1794
|
-
/* @__PURE__ */ (0,
|
|
1843
|
+
/* @__PURE__ */ (0, import_jsx_runtime28.jsx)("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" }),
|
|
1844
|
+
/* @__PURE__ */ (0, import_jsx_runtime28.jsx)("path", { d: "M12 9v4" }),
|
|
1845
|
+
/* @__PURE__ */ (0, import_jsx_runtime28.jsx)("path", { d: "M12 17h.01" })
|
|
1795
1846
|
]
|
|
1796
1847
|
}
|
|
1797
1848
|
);
|
|
1798
1849
|
}
|
|
1799
1850
|
|
|
1800
1851
|
// src/components/alert/use-styles.ts
|
|
1801
|
-
var
|
|
1852
|
+
var import_react40 = require("react");
|
|
1802
1853
|
|
|
1803
1854
|
// src/components/alert/use-styles.css.ts
|
|
1804
1855
|
var content = "use-styles_content__ivsh6u6";
|
|
@@ -1807,12 +1858,12 @@ var root12 = "use-styles_root__ivsh6u0";
|
|
|
1807
1858
|
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" };
|
|
1808
1859
|
|
|
1809
1860
|
// src/components/alert/use-styles.ts
|
|
1810
|
-
function
|
|
1861
|
+
function useStyles17({
|
|
1811
1862
|
severity: severity2 = "info",
|
|
1812
1863
|
className
|
|
1813
1864
|
}) {
|
|
1814
1865
|
const { themeClass } = useTheme();
|
|
1815
|
-
const root24 = (0,
|
|
1866
|
+
const root24 = (0, import_react40.useMemo)(
|
|
1816
1867
|
() => [themeClass, root12, severity[severity2], className].filter(Boolean).join(" "),
|
|
1817
1868
|
[themeClass, severity2, className]
|
|
1818
1869
|
);
|
|
@@ -1824,31 +1875,31 @@ function useStyles16({
|
|
|
1824
1875
|
}
|
|
1825
1876
|
|
|
1826
1877
|
// src/components/alert/index.tsx
|
|
1827
|
-
var
|
|
1878
|
+
var import_jsx_runtime29 = require("react/jsx-runtime");
|
|
1828
1879
|
var defaultIcons = {
|
|
1829
1880
|
info: InfoIcon,
|
|
1830
1881
|
ok: CircleCheckIcon,
|
|
1831
1882
|
warn: TriangleAlertIcon,
|
|
1832
1883
|
danger: CircleXIcon
|
|
1833
1884
|
};
|
|
1834
|
-
var Alert = (0,
|
|
1835
|
-
const styles =
|
|
1885
|
+
var Alert = (0, import_react41.forwardRef)(function Alert2({ severity: severity2 = "info", title, icon, className, testId, children, ...rest }, ref) {
|
|
1886
|
+
const styles = useStyles17({ severity: severity2, className });
|
|
1836
1887
|
const { testId: dataTestId, slot } = useTestId("feedback", testId);
|
|
1837
1888
|
const IconComponent = icon ?? defaultIcons[severity2];
|
|
1838
|
-
return /* @__PURE__ */ (0,
|
|
1839
|
-
/* @__PURE__ */ (0,
|
|
1840
|
-
/* @__PURE__ */ (0,
|
|
1841
|
-
title != null && /* @__PURE__ */ (0,
|
|
1842
|
-
children != null && /* @__PURE__ */ (0,
|
|
1889
|
+
return /* @__PURE__ */ (0, import_jsx_runtime29.jsxs)("div", { ref, role: "alert", className: styles.root, "data-testid": dataTestId, ...rest, children: [
|
|
1890
|
+
/* @__PURE__ */ (0, import_jsx_runtime29.jsx)("span", { className: styles.iconSlot, "data-testid": slot("icon"), children: /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(IconComponent, {}) }),
|
|
1891
|
+
/* @__PURE__ */ (0, import_jsx_runtime29.jsxs)("div", { className: styles.content, "data-testid": slot("content"), children: [
|
|
1892
|
+
title != null && /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(Typography, { variant: "h4", children: title }),
|
|
1893
|
+
children != null && /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(Typography, { variant: "body", color: "fg2", children })
|
|
1843
1894
|
] })
|
|
1844
1895
|
] });
|
|
1845
1896
|
});
|
|
1846
1897
|
|
|
1847
1898
|
// src/components/tooltip/index.tsx
|
|
1848
|
-
var
|
|
1899
|
+
var import_react43 = require("react");
|
|
1849
1900
|
|
|
1850
1901
|
// src/components/tooltip/use-styles.ts
|
|
1851
|
-
var
|
|
1902
|
+
var import_react42 = require("react");
|
|
1852
1903
|
|
|
1853
1904
|
// src/components/tooltip/use-styles.css.ts
|
|
1854
1905
|
var bubble = "use-styles_bubble__h9kvh1 surfaces_inkySurface__1qa7atn2";
|
|
@@ -1856,15 +1907,15 @@ var placement = { top: "use-styles_placement_top__h9kvh2", bottom: "use-styles_p
|
|
|
1856
1907
|
var wrapper = "use-styles_wrapper__h9kvh0";
|
|
1857
1908
|
|
|
1858
1909
|
// src/components/tooltip/use-styles.ts
|
|
1859
|
-
function
|
|
1910
|
+
function useStyles18({
|
|
1860
1911
|
placement: placement2 = "top"
|
|
1861
1912
|
}) {
|
|
1862
1913
|
const { themeClass } = useTheme();
|
|
1863
|
-
const wrapper4 = (0,
|
|
1914
|
+
const wrapper4 = (0, import_react42.useMemo)(
|
|
1864
1915
|
() => [themeClass, wrapper].filter(Boolean).join(" "),
|
|
1865
1916
|
[themeClass]
|
|
1866
1917
|
);
|
|
1867
|
-
const bubble2 = (0,
|
|
1918
|
+
const bubble2 = (0, import_react42.useMemo)(
|
|
1868
1919
|
() => [bubble, placement[placement2]].filter(Boolean).join(" "),
|
|
1869
1920
|
[placement2]
|
|
1870
1921
|
);
|
|
@@ -1872,14 +1923,14 @@ function useStyles17({
|
|
|
1872
1923
|
}
|
|
1873
1924
|
|
|
1874
1925
|
// src/components/tooltip/index.tsx
|
|
1875
|
-
var
|
|
1926
|
+
var import_jsx_runtime30 = require("react/jsx-runtime");
|
|
1876
1927
|
var HIDE_DELAY = 120;
|
|
1877
|
-
var Tooltip = (0,
|
|
1878
|
-
const [open, setOpen] = (0,
|
|
1879
|
-
const tooltipId = (0,
|
|
1880
|
-
const { wrapper: wrapper4, bubble: bubble2 } =
|
|
1928
|
+
var Tooltip = (0, import_react43.forwardRef)(function Tooltip2({ label: label7, children, placement: placement2, testId }, ref) {
|
|
1929
|
+
const [open, setOpen] = (0, import_react43.useState)(false);
|
|
1930
|
+
const tooltipId = (0, import_react43.useId)();
|
|
1931
|
+
const { wrapper: wrapper4, bubble: bubble2 } = useStyles18({ placement: placement2 });
|
|
1881
1932
|
const { testId: dataTestId, slot } = useTestId("feedback", testId);
|
|
1882
|
-
const hideTimer = (0,
|
|
1933
|
+
const hideTimer = (0, import_react43.useRef)(null);
|
|
1883
1934
|
const clearHide = () => {
|
|
1884
1935
|
if (hideTimer.current) {
|
|
1885
1936
|
clearTimeout(hideTimer.current);
|
|
@@ -1898,7 +1949,7 @@ var Tooltip = (0, import_react41.forwardRef)(function Tooltip2({ label: label7,
|
|
|
1898
1949
|
clearHide();
|
|
1899
1950
|
setOpen(false);
|
|
1900
1951
|
};
|
|
1901
|
-
(0,
|
|
1952
|
+
(0, import_react43.useEffect)(() => {
|
|
1902
1953
|
return () => {
|
|
1903
1954
|
if (hideTimer.current) clearTimeout(hideTimer.current);
|
|
1904
1955
|
};
|
|
@@ -1911,8 +1962,8 @@ var Tooltip = (0, import_react41.forwardRef)(function Tooltip2({ label: label7,
|
|
|
1911
1962
|
};
|
|
1912
1963
|
const previousDescribedBy = children.props["aria-describedby"];
|
|
1913
1964
|
const describedBy = open ? [previousDescribedBy, tooltipId].filter(Boolean).join(" ") : previousDescribedBy;
|
|
1914
|
-
const trigger2 = (0,
|
|
1915
|
-
return /* @__PURE__ */ (0,
|
|
1965
|
+
const trigger2 = (0, import_react43.cloneElement)(children, { "aria-describedby": describedBy });
|
|
1966
|
+
return /* @__PURE__ */ (0, import_jsx_runtime30.jsxs)(
|
|
1916
1967
|
"span",
|
|
1917
1968
|
{
|
|
1918
1969
|
ref,
|
|
@@ -1925,7 +1976,7 @@ var Tooltip = (0, import_react41.forwardRef)(function Tooltip2({ label: label7,
|
|
|
1925
1976
|
onKeyDown: handleKeyDown,
|
|
1926
1977
|
children: [
|
|
1927
1978
|
trigger2,
|
|
1928
|
-
open && /* @__PURE__ */ (0,
|
|
1979
|
+
open && /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
|
|
1929
1980
|
"span",
|
|
1930
1981
|
{
|
|
1931
1982
|
id: tooltipId,
|
|
@@ -1943,12 +1994,12 @@ var Tooltip = (0, import_react41.forwardRef)(function Tooltip2({ label: label7,
|
|
|
1943
1994
|
});
|
|
1944
1995
|
|
|
1945
1996
|
// src/components/select/index.tsx
|
|
1946
|
-
var
|
|
1997
|
+
var import_react45 = require("react");
|
|
1947
1998
|
|
|
1948
1999
|
// src/components/icons/chevron-down/index.tsx
|
|
1949
|
-
var
|
|
2000
|
+
var import_jsx_runtime31 = require("react/jsx-runtime");
|
|
1950
2001
|
function ChevronDownIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
1951
|
-
return /* @__PURE__ */ (0,
|
|
2002
|
+
return /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
|
|
1952
2003
|
"svg",
|
|
1953
2004
|
{
|
|
1954
2005
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1962,13 +2013,13 @@ function ChevronDownIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
1962
2013
|
strokeLinejoin: "round",
|
|
1963
2014
|
"aria-hidden": "true",
|
|
1964
2015
|
...rest,
|
|
1965
|
-
children: /* @__PURE__ */ (0,
|
|
2016
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime31.jsx)("path", { d: "m6 9 6 6 6-6" })
|
|
1966
2017
|
}
|
|
1967
2018
|
);
|
|
1968
2019
|
}
|
|
1969
2020
|
|
|
1970
2021
|
// src/components/select/use-styles.ts
|
|
1971
|
-
var
|
|
2022
|
+
var import_react44 = require("react");
|
|
1972
2023
|
|
|
1973
2024
|
// src/components/select/use-styles.css.ts
|
|
1974
2025
|
var chevron = "use-styles_chevron__1w1czpb4";
|
|
@@ -1983,11 +2034,11 @@ var root13 = "use-styles_root__1w1czpb0";
|
|
|
1983
2034
|
var trigger = "use-styles_trigger__1w1czpb2";
|
|
1984
2035
|
|
|
1985
2036
|
// src/components/select/use-styles.ts
|
|
1986
|
-
function
|
|
2037
|
+
function useStyles19({
|
|
1987
2038
|
open = false
|
|
1988
2039
|
}) {
|
|
1989
2040
|
const { themeClass } = useTheme();
|
|
1990
|
-
return (0,
|
|
2041
|
+
return (0, import_react44.useMemo)(() => {
|
|
1991
2042
|
const chevron3 = [chevron, open && chevronOpen].filter(Boolean).join(" ");
|
|
1992
2043
|
return {
|
|
1993
2044
|
root: [themeClass, root13].filter(Boolean).join(" "),
|
|
@@ -2002,8 +2053,8 @@ function useStyles18({
|
|
|
2002
2053
|
}
|
|
2003
2054
|
|
|
2004
2055
|
// src/components/select/index.tsx
|
|
2005
|
-
var
|
|
2006
|
-
var Select = (0,
|
|
2056
|
+
var import_jsx_runtime32 = require("react/jsx-runtime");
|
|
2057
|
+
var Select = (0, import_react45.forwardRef)(function Select2({
|
|
2007
2058
|
options,
|
|
2008
2059
|
value,
|
|
2009
2060
|
onChange,
|
|
@@ -2014,15 +2065,15 @@ var Select = (0, import_react43.forwardRef)(function Select2({
|
|
|
2014
2065
|
"aria-labelledby": ariaLabelledBy,
|
|
2015
2066
|
...rest
|
|
2016
2067
|
}, ref) {
|
|
2017
|
-
const [open, setOpen] = (0,
|
|
2018
|
-
const [activeIndex, setActiveIndex] = (0,
|
|
2019
|
-
const rootRef = (0,
|
|
2068
|
+
const [open, setOpen] = (0, import_react45.useState)(false);
|
|
2069
|
+
const [activeIndex, setActiveIndex] = (0, import_react45.useState)(0);
|
|
2070
|
+
const rootRef = (0, import_react45.useRef)(null);
|
|
2020
2071
|
const setRootRef = (node) => {
|
|
2021
2072
|
rootRef.current = node;
|
|
2022
2073
|
if (typeof ref === "function") ref(node);
|
|
2023
2074
|
else if (ref) ref.current = node;
|
|
2024
2075
|
};
|
|
2025
|
-
const baseId = (0,
|
|
2076
|
+
const baseId = (0, import_react45.useId)();
|
|
2026
2077
|
const labelId = `${baseId}-label`;
|
|
2027
2078
|
const optionId = (index) => `${baseId}-option-${index}`;
|
|
2028
2079
|
const triggerLabelledBy = [label7 ? labelId : null, ariaLabelledBy].filter(Boolean).join(" ") || void 0;
|
|
@@ -2034,8 +2085,8 @@ var Select = (0, import_react43.forwardRef)(function Select2({
|
|
|
2034
2085
|
chevron: chevron3,
|
|
2035
2086
|
menu: menu2,
|
|
2036
2087
|
optionClass
|
|
2037
|
-
} =
|
|
2038
|
-
(0,
|
|
2088
|
+
} = useStyles19({ open });
|
|
2089
|
+
(0, import_react45.useEffect)(() => {
|
|
2039
2090
|
if (!open) return;
|
|
2040
2091
|
const onPointerDown = (event) => {
|
|
2041
2092
|
if (rootRef.current && !rootRef.current.contains(event.target)) {
|
|
@@ -2095,9 +2146,9 @@ var Select = (0, import_react43.forwardRef)(function Select2({
|
|
|
2095
2146
|
break;
|
|
2096
2147
|
}
|
|
2097
2148
|
};
|
|
2098
|
-
return /* @__PURE__ */ (0,
|
|
2099
|
-
label7 && /* @__PURE__ */ (0,
|
|
2100
|
-
/* @__PURE__ */ (0,
|
|
2149
|
+
return /* @__PURE__ */ (0, import_jsx_runtime32.jsxs)("div", { ref: setRootRef, className: root24, ...rest, children: [
|
|
2150
|
+
label7 && /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("span", { id: labelId, className: labelClass, children: label7 }),
|
|
2151
|
+
/* @__PURE__ */ (0, import_jsx_runtime32.jsxs)(
|
|
2101
2152
|
"button",
|
|
2102
2153
|
{
|
|
2103
2154
|
type: "button",
|
|
@@ -2118,17 +2169,17 @@ var Select = (0, import_react43.forwardRef)(function Select2({
|
|
|
2118
2169
|
},
|
|
2119
2170
|
onKeyDown: handleKeyDown,
|
|
2120
2171
|
children: [
|
|
2121
|
-
selected3 ? selected3.label : /* @__PURE__ */ (0,
|
|
2122
|
-
/* @__PURE__ */ (0,
|
|
2172
|
+
selected3 ? selected3.label : /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("span", { className: placeholderClass, children: placeholder2 }),
|
|
2173
|
+
/* @__PURE__ */ (0, import_jsx_runtime32.jsx)("span", { className: chevron3, children: /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(ChevronDownIcon, { size: 18 }) })
|
|
2123
2174
|
]
|
|
2124
2175
|
}
|
|
2125
2176
|
),
|
|
2126
|
-
open && /* @__PURE__ */ (0,
|
|
2177
|
+
open && /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("div", { className: menu2, role: "listbox", children: options.map((option2, index) => {
|
|
2127
2178
|
const isSelected = option2.value === value;
|
|
2128
2179
|
const isActive = index === activeIndex;
|
|
2129
2180
|
return (
|
|
2130
2181
|
// biome-ignore lint/a11y/useKeyWithClickEvents: keyboard nav lives on the trigger via aria-activedescendant; options are not focusable.
|
|
2131
|
-
/* @__PURE__ */ (0,
|
|
2182
|
+
/* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
|
|
2132
2183
|
"div",
|
|
2133
2184
|
{
|
|
2134
2185
|
id: optionId(index),
|
|
@@ -2147,10 +2198,10 @@ var Select = (0, import_react43.forwardRef)(function Select2({
|
|
|
2147
2198
|
});
|
|
2148
2199
|
|
|
2149
2200
|
// src/components/slider/index.tsx
|
|
2150
|
-
var
|
|
2201
|
+
var import_react47 = require("react");
|
|
2151
2202
|
|
|
2152
2203
|
// src/components/slider/use-styles.ts
|
|
2153
|
-
var
|
|
2204
|
+
var import_react46 = require("react");
|
|
2154
2205
|
|
|
2155
2206
|
// src/components/slider/use-styles.css.ts
|
|
2156
2207
|
var input5 = "use-styles_input__okw59n3";
|
|
@@ -2162,9 +2213,9 @@ var track3 = "use-styles_track__okw59n1";
|
|
|
2162
2213
|
var wrapper2 = "use-styles_wrapper__okw59n6";
|
|
2163
2214
|
|
|
2164
2215
|
// src/components/slider/use-styles.ts
|
|
2165
|
-
function
|
|
2216
|
+
function useStyles20() {
|
|
2166
2217
|
const { themeClass } = useTheme();
|
|
2167
|
-
return (0,
|
|
2218
|
+
return (0, import_react46.useMemo)(() => {
|
|
2168
2219
|
const root24 = [themeClass, root14].filter(Boolean).join(" ");
|
|
2169
2220
|
return {
|
|
2170
2221
|
wrapper: wrapper2,
|
|
@@ -2179,21 +2230,21 @@ function useStyles19() {
|
|
|
2179
2230
|
}
|
|
2180
2231
|
|
|
2181
2232
|
// src/components/slider/index.tsx
|
|
2182
|
-
var
|
|
2183
|
-
var Slider = (0,
|
|
2184
|
-
const { wrapper: wrapper4, label: labelClass, root: root24, track: track4, range: range2, thumb: thumb2, input: input6 } =
|
|
2233
|
+
var import_jsx_runtime33 = require("react/jsx-runtime");
|
|
2234
|
+
var Slider = (0, import_react47.forwardRef)(function Slider2({ value = 0, onChange, min = 0, max = 100, step: step2 = 1, disabled: disabled3, label: label7, ...rest }, ref) {
|
|
2235
|
+
const { wrapper: wrapper4, label: labelClass, root: root24, track: track4, range: range2, thumb: thumb2, input: input6 } = useStyles20();
|
|
2185
2236
|
const span = max - min;
|
|
2186
2237
|
const percent = span > 0 ? (value - min) / span * 100 : 0;
|
|
2187
2238
|
const clamped = Math.max(0, Math.min(100, percent));
|
|
2188
2239
|
const handleChange = (e) => {
|
|
2189
2240
|
onChange?.(Number(e.target.value));
|
|
2190
2241
|
};
|
|
2191
|
-
return /* @__PURE__ */ (0,
|
|
2192
|
-
label7 ? /* @__PURE__ */ (0,
|
|
2193
|
-
/* @__PURE__ */ (0,
|
|
2194
|
-
/* @__PURE__ */ (0,
|
|
2195
|
-
/* @__PURE__ */ (0,
|
|
2196
|
-
/* @__PURE__ */ (0,
|
|
2242
|
+
return /* @__PURE__ */ (0, import_jsx_runtime33.jsxs)("span", { className: wrapper4, children: [
|
|
2243
|
+
label7 ? /* @__PURE__ */ (0, import_jsx_runtime33.jsx)("span", { className: labelClass, children: label7 }) : null,
|
|
2244
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsxs)("span", { className: root24, children: [
|
|
2245
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)("span", { className: track4 }),
|
|
2246
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)("span", { className: range2, style: { width: `${clamped}%` } }),
|
|
2247
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
|
|
2197
2248
|
"input",
|
|
2198
2249
|
{
|
|
2199
2250
|
ref,
|
|
@@ -2208,16 +2259,16 @@ var Slider = (0, import_react45.forwardRef)(function Slider2({ value = 0, onChan
|
|
|
2208
2259
|
...rest
|
|
2209
2260
|
}
|
|
2210
2261
|
),
|
|
2211
|
-
/* @__PURE__ */ (0,
|
|
2262
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)("span", { className: thumb2, style: { left: `${clamped}%` } })
|
|
2212
2263
|
] })
|
|
2213
2264
|
] });
|
|
2214
2265
|
});
|
|
2215
2266
|
|
|
2216
2267
|
// src/components/accordion/index.tsx
|
|
2217
|
-
var
|
|
2268
|
+
var import_react49 = require("react");
|
|
2218
2269
|
|
|
2219
2270
|
// src/components/accordion/use-styles.ts
|
|
2220
|
-
var
|
|
2271
|
+
var import_react48 = require("react");
|
|
2221
2272
|
|
|
2222
2273
|
// src/components/accordion/use-styles.css.ts
|
|
2223
2274
|
var chevron2 = "use-styles_chevron__1cjrdh93";
|
|
@@ -2228,9 +2279,9 @@ var panel = "use-styles_panel__1cjrdh95";
|
|
|
2228
2279
|
var root15 = "use-styles_root__1cjrdh90";
|
|
2229
2280
|
|
|
2230
2281
|
// src/components/accordion/use-styles.ts
|
|
2231
|
-
function
|
|
2282
|
+
function useStyles21({ className }) {
|
|
2232
2283
|
const { themeClass } = useTheme();
|
|
2233
|
-
return (0,
|
|
2284
|
+
return (0, import_react48.useMemo)(
|
|
2234
2285
|
() => ({
|
|
2235
2286
|
root: [themeClass, root15, className].filter(Boolean).join(" "),
|
|
2236
2287
|
item,
|
|
@@ -2243,10 +2294,10 @@ function useStyles20({ className }) {
|
|
|
2243
2294
|
}
|
|
2244
2295
|
|
|
2245
2296
|
// src/components/accordion/index.tsx
|
|
2246
|
-
var
|
|
2247
|
-
var Accordion = (0,
|
|
2248
|
-
const [open, setOpen] = (0,
|
|
2249
|
-
const { root: root24, item: item3, header: header3, chevronFor, panel: panel3 } =
|
|
2297
|
+
var import_jsx_runtime34 = require("react/jsx-runtime");
|
|
2298
|
+
var Accordion = (0, import_react49.forwardRef)(function Accordion2({ items, multiple = false, defaultOpen = [], className, testId }, ref) {
|
|
2299
|
+
const [open, setOpen] = (0, import_react49.useState)(defaultOpen);
|
|
2300
|
+
const { root: root24, item: item3, header: header3, chevronFor, panel: panel3 } = useStyles21({ className });
|
|
2250
2301
|
const { testId: dataTestId, slot } = useTestId("layout", testId);
|
|
2251
2302
|
const toggle = (id) => {
|
|
2252
2303
|
setOpen((current2) => {
|
|
@@ -2255,19 +2306,19 @@ var Accordion = (0, import_react47.forwardRef)(function Accordion2({ items, mult
|
|
|
2255
2306
|
return multiple ? [...current2, id] : [id];
|
|
2256
2307
|
});
|
|
2257
2308
|
};
|
|
2258
|
-
return /* @__PURE__ */ (0,
|
|
2309
|
+
return /* @__PURE__ */ (0, import_jsx_runtime34.jsx)("div", { ref, className: root24, "data-testid": dataTestId, children: items.map((it) => {
|
|
2259
2310
|
const isOpen = open.includes(it.id);
|
|
2260
2311
|
const panelId = `accordion-panel-${it.id}`;
|
|
2261
2312
|
const headerId = `accordion-header-${it.id}`;
|
|
2262
2313
|
const itemSlot = slot(`item-${it.id}`);
|
|
2263
|
-
return /* @__PURE__ */ (0,
|
|
2314
|
+
return /* @__PURE__ */ (0, import_jsx_runtime34.jsxs)(
|
|
2264
2315
|
"div",
|
|
2265
2316
|
{
|
|
2266
2317
|
className: item3,
|
|
2267
2318
|
"data-testid": itemSlot,
|
|
2268
2319
|
"data-state": states({ expanded: isOpen }),
|
|
2269
2320
|
children: [
|
|
2270
|
-
/* @__PURE__ */ (0,
|
|
2321
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsxs)(
|
|
2271
2322
|
"button",
|
|
2272
2323
|
{
|
|
2273
2324
|
type: "button",
|
|
@@ -2279,11 +2330,11 @@ var Accordion = (0, import_react47.forwardRef)(function Accordion2({ items, mult
|
|
|
2279
2330
|
onClick: () => toggle(it.id),
|
|
2280
2331
|
children: [
|
|
2281
2332
|
it.title,
|
|
2282
|
-
/* @__PURE__ */ (0,
|
|
2333
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)(ChevronDownIcon, { className: chevronFor(isOpen) })
|
|
2283
2334
|
]
|
|
2284
2335
|
}
|
|
2285
2336
|
),
|
|
2286
|
-
isOpen && /* @__PURE__ */ (0,
|
|
2337
|
+
isOpen && /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
|
|
2287
2338
|
"div",
|
|
2288
2339
|
{
|
|
2289
2340
|
id: panelId,
|
|
@@ -2302,12 +2353,12 @@ var Accordion = (0, import_react47.forwardRef)(function Accordion2({ items, mult
|
|
|
2302
2353
|
});
|
|
2303
2354
|
|
|
2304
2355
|
// src/components/breadcrumbs/index.tsx
|
|
2305
|
-
var
|
|
2356
|
+
var import_react51 = require("react");
|
|
2306
2357
|
|
|
2307
2358
|
// src/components/icons/chevron-right/index.tsx
|
|
2308
|
-
var
|
|
2359
|
+
var import_jsx_runtime35 = require("react/jsx-runtime");
|
|
2309
2360
|
function ChevronRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
2310
|
-
return /* @__PURE__ */ (0,
|
|
2361
|
+
return /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
|
|
2311
2362
|
"svg",
|
|
2312
2363
|
{
|
|
2313
2364
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2321,13 +2372,13 @@ function ChevronRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
2321
2372
|
strokeLinejoin: "round",
|
|
2322
2373
|
"aria-hidden": "true",
|
|
2323
2374
|
...rest,
|
|
2324
|
-
children: /* @__PURE__ */ (0,
|
|
2375
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime35.jsx)("path", { d: "m9 18 6-6-6-6" })
|
|
2325
2376
|
}
|
|
2326
2377
|
);
|
|
2327
2378
|
}
|
|
2328
2379
|
|
|
2329
2380
|
// src/components/breadcrumbs/use-styles.ts
|
|
2330
|
-
var
|
|
2381
|
+
var import_react50 = require("react");
|
|
2331
2382
|
|
|
2332
2383
|
// src/components/breadcrumbs/use-styles.css.ts
|
|
2333
2384
|
var crumb = "use-styles_crumb__7u0du61";
|
|
@@ -2336,9 +2387,9 @@ var root16 = "use-styles_root__7u0du60";
|
|
|
2336
2387
|
var separator = "use-styles_separator__7u0du63";
|
|
2337
2388
|
|
|
2338
2389
|
// src/components/breadcrumbs/use-styles.ts
|
|
2339
|
-
function
|
|
2390
|
+
function useStyles22({ className }) {
|
|
2340
2391
|
const { themeClass } = useTheme();
|
|
2341
|
-
const root24 = (0,
|
|
2392
|
+
const root24 = (0, import_react50.useMemo)(
|
|
2342
2393
|
() => [themeClass, root16, className].filter(Boolean).join(" "),
|
|
2343
2394
|
[themeClass, className]
|
|
2344
2395
|
);
|
|
@@ -2346,27 +2397,27 @@ function useStyles21({ className }) {
|
|
|
2346
2397
|
}
|
|
2347
2398
|
|
|
2348
2399
|
// src/components/breadcrumbs/index.tsx
|
|
2349
|
-
var
|
|
2350
|
-
var Breadcrumbs = (0,
|
|
2351
|
-
const { root: root24, crumb: crumb2, current: current2, separator: separator2 } =
|
|
2400
|
+
var import_jsx_runtime36 = require("react/jsx-runtime");
|
|
2401
|
+
var Breadcrumbs = (0, import_react51.forwardRef)(function Breadcrumbs2({ items, className, testId, ...rest }, ref) {
|
|
2402
|
+
const { root: root24, crumb: crumb2, current: current2, separator: separator2 } = useStyles22({ className });
|
|
2352
2403
|
const { testId: dataTestId, slot } = useTestId("nav", testId);
|
|
2353
|
-
return /* @__PURE__ */ (0,
|
|
2404
|
+
return /* @__PURE__ */ (0, import_jsx_runtime36.jsx)("nav", { ref, "aria-label": "Breadcrumb", className: root24, "data-testid": dataTestId, ...rest, children: items.map((item3, index) => {
|
|
2354
2405
|
const isLast = index === items.length - 1;
|
|
2355
2406
|
const key = index;
|
|
2356
|
-
return /* @__PURE__ */ (0,
|
|
2357
|
-
isLast ? /* @__PURE__ */ (0,
|
|
2358
|
-
!isLast && /* @__PURE__ */ (0,
|
|
2407
|
+
return /* @__PURE__ */ (0, import_jsx_runtime36.jsxs)(import_react51.Fragment, { children: [
|
|
2408
|
+
isLast ? /* @__PURE__ */ (0, import_jsx_runtime36.jsx)("span", { className: current2, "aria-current": "page", "data-testid": slot(`crumb-${index}`), children: item3.label }) : item3.href ? /* @__PURE__ */ (0, import_jsx_runtime36.jsx)("a", { className: crumb2, href: item3.href, "data-testid": slot(`crumb-${index}`), children: item3.label }) : /* @__PURE__ */ (0, import_jsx_runtime36.jsx)("span", { className: crumb2, "data-testid": slot(`crumb-${index}`), children: item3.label }),
|
|
2409
|
+
!isLast && /* @__PURE__ */ (0, import_jsx_runtime36.jsx)("span", { className: separator2, children: /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(ChevronRightIcon, { size: 14 }) })
|
|
2359
2410
|
] }, key);
|
|
2360
2411
|
}) });
|
|
2361
2412
|
});
|
|
2362
2413
|
|
|
2363
2414
|
// src/components/pagination/index.tsx
|
|
2364
|
-
var
|
|
2415
|
+
var import_react53 = require("react");
|
|
2365
2416
|
|
|
2366
2417
|
// src/components/icons/chevron-left/index.tsx
|
|
2367
|
-
var
|
|
2418
|
+
var import_jsx_runtime37 = require("react/jsx-runtime");
|
|
2368
2419
|
function ChevronLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
2369
|
-
return /* @__PURE__ */ (0,
|
|
2420
|
+
return /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
|
|
2370
2421
|
"svg",
|
|
2371
2422
|
{
|
|
2372
2423
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2380,13 +2431,13 @@ function ChevronLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
2380
2431
|
strokeLinejoin: "round",
|
|
2381
2432
|
"aria-hidden": "true",
|
|
2382
2433
|
...rest,
|
|
2383
|
-
children: /* @__PURE__ */ (0,
|
|
2434
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("path", { d: "m15 18-6-6 6-6" })
|
|
2384
2435
|
}
|
|
2385
2436
|
);
|
|
2386
2437
|
}
|
|
2387
2438
|
|
|
2388
2439
|
// src/components/pagination/use-styles.ts
|
|
2389
|
-
var
|
|
2440
|
+
var import_react52 = require("react");
|
|
2390
2441
|
|
|
2391
2442
|
// src/components/pagination/use-styles.css.ts
|
|
2392
2443
|
var ellipsis = "use-styles_ellipsis__1azgzoh3";
|
|
@@ -2396,9 +2447,9 @@ var pageBtn = "use-styles_pageBtn__1azgzoh1";
|
|
|
2396
2447
|
var root17 = "use-styles_root__1azgzoh0";
|
|
2397
2448
|
|
|
2398
2449
|
// src/components/pagination/use-styles.ts
|
|
2399
|
-
function
|
|
2450
|
+
function useStyles23() {
|
|
2400
2451
|
const { themeClass } = useTheme();
|
|
2401
|
-
return (0,
|
|
2452
|
+
return (0, import_react52.useMemo)(
|
|
2402
2453
|
() => ({
|
|
2403
2454
|
root: [themeClass, root17].filter(Boolean).join(" "),
|
|
2404
2455
|
pageBtnFor: (active2) => [pageBtn, active2 && pageActive].filter(Boolean).join(" "),
|
|
@@ -2410,7 +2461,7 @@ function useStyles22() {
|
|
|
2410
2461
|
}
|
|
2411
2462
|
|
|
2412
2463
|
// src/components/pagination/index.tsx
|
|
2413
|
-
var
|
|
2464
|
+
var import_jsx_runtime38 = require("react/jsx-runtime");
|
|
2414
2465
|
function buildItems(count, page, siblingCount) {
|
|
2415
2466
|
const total = Math.max(1, count);
|
|
2416
2467
|
const first = 1;
|
|
@@ -2424,15 +2475,15 @@ function buildItems(count, page, siblingCount) {
|
|
|
2424
2475
|
if (last > first) items.push(last);
|
|
2425
2476
|
return items;
|
|
2426
2477
|
}
|
|
2427
|
-
var Pagination = (0,
|
|
2428
|
-
const { root: root24, pageBtnFor, ellipsis: ellipsis2, nav: nav2 } =
|
|
2478
|
+
var Pagination = (0, import_react53.forwardRef)(function Pagination2({ count, page = 1, onChange, siblingCount = 1, testId, ...rest }, ref) {
|
|
2479
|
+
const { root: root24, pageBtnFor, ellipsis: ellipsis2, nav: nav2 } = useStyles23();
|
|
2429
2480
|
const { testId: dataTestId, slot } = useTestId("nav", testId);
|
|
2430
2481
|
const total = Math.max(1, count);
|
|
2431
2482
|
const current2 = Math.min(Math.max(1, page), total);
|
|
2432
2483
|
const items = buildItems(total, current2, siblingCount);
|
|
2433
2484
|
const go = (n) => onChange?.(Math.min(Math.max(1, n), total));
|
|
2434
|
-
return /* @__PURE__ */ (0,
|
|
2435
|
-
/* @__PURE__ */ (0,
|
|
2485
|
+
return /* @__PURE__ */ (0, import_jsx_runtime38.jsxs)("nav", { ref, className: root24, "aria-label": "Pagination", "data-testid": dataTestId, ...rest, children: [
|
|
2486
|
+
/* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
|
|
2436
2487
|
"button",
|
|
2437
2488
|
{
|
|
2438
2489
|
type: "button",
|
|
@@ -2441,11 +2492,11 @@ var Pagination = (0, import_react51.forwardRef)(function Pagination2({ count, pa
|
|
|
2441
2492
|
disabled: current2 <= 1,
|
|
2442
2493
|
"data-testid": slot("prev"),
|
|
2443
2494
|
onClick: () => go(current2 - 1),
|
|
2444
|
-
children: /* @__PURE__ */ (0,
|
|
2495
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(ChevronLeftIcon, { size: 18 })
|
|
2445
2496
|
}
|
|
2446
2497
|
),
|
|
2447
2498
|
items.map(
|
|
2448
|
-
(item3, index) => item3 === "ellipsis" ? /* @__PURE__ */ (0,
|
|
2499
|
+
(item3, index) => item3 === "ellipsis" ? /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
|
|
2449
2500
|
"span",
|
|
2450
2501
|
{
|
|
2451
2502
|
className: ellipsis2,
|
|
@@ -2453,7 +2504,7 @@ var Pagination = (0, import_react51.forwardRef)(function Pagination2({ count, pa
|
|
|
2453
2504
|
children: "\u2026"
|
|
2454
2505
|
},
|
|
2455
2506
|
`ellipsis-${index}`
|
|
2456
|
-
) : /* @__PURE__ */ (0,
|
|
2507
|
+
) : /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
|
|
2457
2508
|
"button",
|
|
2458
2509
|
{
|
|
2459
2510
|
type: "button",
|
|
@@ -2466,7 +2517,7 @@ var Pagination = (0, import_react51.forwardRef)(function Pagination2({ count, pa
|
|
|
2466
2517
|
item3
|
|
2467
2518
|
)
|
|
2468
2519
|
),
|
|
2469
|
-
/* @__PURE__ */ (0,
|
|
2520
|
+
/* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
|
|
2470
2521
|
"button",
|
|
2471
2522
|
{
|
|
2472
2523
|
type: "button",
|
|
@@ -2475,17 +2526,17 @@ var Pagination = (0, import_react51.forwardRef)(function Pagination2({ count, pa
|
|
|
2475
2526
|
disabled: current2 >= total,
|
|
2476
2527
|
"data-testid": slot("next"),
|
|
2477
2528
|
onClick: () => go(current2 + 1),
|
|
2478
|
-
children: /* @__PURE__ */ (0,
|
|
2529
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(ChevronRightIcon, { size: 18 })
|
|
2479
2530
|
}
|
|
2480
2531
|
)
|
|
2481
2532
|
] });
|
|
2482
2533
|
});
|
|
2483
2534
|
|
|
2484
2535
|
// src/components/stepper/index.tsx
|
|
2485
|
-
var
|
|
2536
|
+
var import_react55 = require("react");
|
|
2486
2537
|
|
|
2487
2538
|
// src/components/stepper/use-styles.ts
|
|
2488
|
-
var
|
|
2539
|
+
var import_react54 = require("react");
|
|
2489
2540
|
|
|
2490
2541
|
// src/components/stepper/use-styles.css.ts
|
|
2491
2542
|
var connector = "use-styles_connector__79pt4e7";
|
|
@@ -2498,9 +2549,9 @@ var root18 = "use-styles_root__79pt4e0";
|
|
|
2498
2549
|
var step = "use-styles_step__79pt4e1";
|
|
2499
2550
|
|
|
2500
2551
|
// src/components/stepper/use-styles.ts
|
|
2501
|
-
function
|
|
2552
|
+
function useStyles24({ className }) {
|
|
2502
2553
|
const { themeClass } = useTheme();
|
|
2503
|
-
return (0,
|
|
2554
|
+
return (0, import_react54.useMemo)(() => {
|
|
2504
2555
|
const root24 = [themeClass, root18, className].filter(Boolean).join(" ");
|
|
2505
2556
|
const markerFor = (state) => [
|
|
2506
2557
|
marker,
|
|
@@ -2513,17 +2564,17 @@ function useStyles23({ className }) {
|
|
|
2513
2564
|
}
|
|
2514
2565
|
|
|
2515
2566
|
// src/components/stepper/index.tsx
|
|
2516
|
-
var
|
|
2517
|
-
var Stepper = (0,
|
|
2518
|
-
const { root: root24, step: step2, connector: connector2, markerFor, labelFor } =
|
|
2567
|
+
var import_jsx_runtime39 = require("react/jsx-runtime");
|
|
2568
|
+
var Stepper = (0, import_react55.forwardRef)(function Stepper2({ steps, active: active2 = 0, className, testId, ...rest }, ref) {
|
|
2569
|
+
const { root: root24, step: step2, connector: connector2, markerFor, labelFor } = useStyles24({ className });
|
|
2519
2570
|
const { testId: dataTestId, slot } = useTestId("nav", testId);
|
|
2520
|
-
return /* @__PURE__ */ (0,
|
|
2571
|
+
return /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("div", { ref, className: root24, "data-testid": dataTestId, ...rest, children: steps.map((s, index) => {
|
|
2521
2572
|
const state = index < active2 ? "done" : index === active2 ? "active" : "upcoming";
|
|
2522
2573
|
const isActive = state === "active";
|
|
2523
2574
|
return (
|
|
2524
2575
|
// biome-ignore lint/suspicious/noArrayIndexKey: steps are a static, ordered list with no stable id.
|
|
2525
|
-
/* @__PURE__ */ (0,
|
|
2526
|
-
/* @__PURE__ */ (0,
|
|
2576
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsxs)(import_react55.Fragment, { children: [
|
|
2577
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsxs)(
|
|
2527
2578
|
"div",
|
|
2528
2579
|
{
|
|
2529
2580
|
className: step2,
|
|
@@ -2531,22 +2582,22 @@ var Stepper = (0, import_react53.forwardRef)(function Stepper2({ steps, active:
|
|
|
2531
2582
|
"data-testid": slot(`step-${index}`),
|
|
2532
2583
|
"data-state": states({ done: state === "done", active: isActive }),
|
|
2533
2584
|
children: [
|
|
2534
|
-
/* @__PURE__ */ (0,
|
|
2535
|
-
/* @__PURE__ */ (0,
|
|
2585
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)("span", { className: markerFor(state), children: state === "done" ? /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(CheckIcon, { size: 14 }) : index + 1 }),
|
|
2586
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)("span", { className: labelFor(isActive), children: s.label })
|
|
2536
2587
|
]
|
|
2537
2588
|
}
|
|
2538
2589
|
),
|
|
2539
|
-
index < steps.length - 1 && /* @__PURE__ */ (0,
|
|
2590
|
+
index < steps.length - 1 && /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("span", { "data-part": "connector", className: connector2 })
|
|
2540
2591
|
] }, index)
|
|
2541
2592
|
);
|
|
2542
2593
|
}) });
|
|
2543
2594
|
});
|
|
2544
2595
|
|
|
2545
2596
|
// src/components/tabs/index.tsx
|
|
2546
|
-
var
|
|
2597
|
+
var import_react57 = require("react");
|
|
2547
2598
|
|
|
2548
2599
|
// src/components/tabs/use-styles.ts
|
|
2549
|
-
var
|
|
2600
|
+
var import_react56 = require("react");
|
|
2550
2601
|
|
|
2551
2602
|
// src/components/tabs/use-styles.css.ts
|
|
2552
2603
|
var panel2 = "use-styles_panel__1l4m7t43";
|
|
@@ -2555,9 +2606,9 @@ var tab = "use-styles_tab__1l4m7t41";
|
|
|
2555
2606
|
var tabActive = "use-styles_tabActive__1l4m7t42";
|
|
2556
2607
|
|
|
2557
2608
|
// src/components/tabs/use-styles.ts
|
|
2558
|
-
function
|
|
2609
|
+
function useStyles25() {
|
|
2559
2610
|
const { themeClass } = useTheme();
|
|
2560
|
-
return (0,
|
|
2611
|
+
return (0, import_react56.useMemo)(() => {
|
|
2561
2612
|
const root24 = [themeClass, root19].filter(Boolean).join(" ");
|
|
2562
2613
|
const tabClass = (active2) => [tab, active2 && tabActive].filter(Boolean).join(" ");
|
|
2563
2614
|
return { root: root24, tab, tabClass, panel: panel2 };
|
|
@@ -2565,13 +2616,13 @@ function useStyles24() {
|
|
|
2565
2616
|
}
|
|
2566
2617
|
|
|
2567
2618
|
// src/components/tabs/index.tsx
|
|
2568
|
-
var
|
|
2619
|
+
var import_jsx_runtime40 = require("react/jsx-runtime");
|
|
2569
2620
|
var ICON_SIZE3 = 16;
|
|
2570
|
-
var Tabs = (0,
|
|
2571
|
-
const { root: root24, tabClass, panel: panel3 } =
|
|
2621
|
+
var Tabs = (0, import_react57.forwardRef)(function Tabs2({ items, value, onChange, testId, ...rest }, ref) {
|
|
2622
|
+
const { root: root24, tabClass, panel: panel3 } = useStyles25();
|
|
2572
2623
|
const { testId: dataTestId, slot } = useTestId("nav", testId);
|
|
2573
|
-
const baseId = (0,
|
|
2574
|
-
const tabRefs = (0,
|
|
2624
|
+
const baseId = (0, import_react57.useId)();
|
|
2625
|
+
const tabRefs = (0, import_react57.useRef)([]);
|
|
2575
2626
|
const hasPanels = items.some((item3) => item3.content !== void 0);
|
|
2576
2627
|
const activeIndex = items.findIndex((item3) => item3.value === value);
|
|
2577
2628
|
const tabId = (v) => `${baseId}-tab-${v}`;
|
|
@@ -2603,12 +2654,12 @@ var Tabs = (0, import_react55.forwardRef)(function Tabs2({ items, value, onChang
|
|
|
2603
2654
|
break;
|
|
2604
2655
|
}
|
|
2605
2656
|
};
|
|
2606
|
-
return /* @__PURE__ */ (0,
|
|
2607
|
-
/* @__PURE__ */ (0,
|
|
2657
|
+
return /* @__PURE__ */ (0, import_jsx_runtime40.jsxs)(import_jsx_runtime40.Fragment, { children: [
|
|
2658
|
+
/* @__PURE__ */ (0, import_jsx_runtime40.jsx)("div", { ref, role: "tablist", className: root24, "data-testid": dataTestId, ...rest, children: items.map((item3, index) => {
|
|
2608
2659
|
const active2 = item3.value === value;
|
|
2609
2660
|
const tabbable = active2 || activeIndex === -1 && index === 0;
|
|
2610
2661
|
const ItemIcon = item3.icon;
|
|
2611
|
-
return /* @__PURE__ */ (0,
|
|
2662
|
+
return /* @__PURE__ */ (0, import_jsx_runtime40.jsxs)(
|
|
2612
2663
|
"button",
|
|
2613
2664
|
{
|
|
2614
2665
|
ref: (el) => {
|
|
@@ -2626,14 +2677,14 @@ var Tabs = (0, import_react55.forwardRef)(function Tabs2({ items, value, onChang
|
|
|
2626
2677
|
onClick: () => onChange?.(item3.value),
|
|
2627
2678
|
onKeyDown: (event) => onKeyDown(event, index),
|
|
2628
2679
|
children: [
|
|
2629
|
-
ItemIcon ? /* @__PURE__ */ (0,
|
|
2680
|
+
ItemIcon ? /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(ItemIcon, { size: ICON_SIZE3 }) : null,
|
|
2630
2681
|
item3.label
|
|
2631
2682
|
]
|
|
2632
2683
|
},
|
|
2633
2684
|
item3.value
|
|
2634
2685
|
);
|
|
2635
2686
|
}) }),
|
|
2636
|
-
hasPanels && items.map((item3) => /* @__PURE__ */ (0,
|
|
2687
|
+
hasPanels && items.map((item3) => /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
|
|
2637
2688
|
"div",
|
|
2638
2689
|
{
|
|
2639
2690
|
role: "tabpanel",
|
|
@@ -2651,10 +2702,10 @@ var Tabs = (0, import_react55.forwardRef)(function Tabs2({ items, value, onChang
|
|
|
2651
2702
|
});
|
|
2652
2703
|
|
|
2653
2704
|
// src/components/menu/index.tsx
|
|
2654
|
-
var
|
|
2705
|
+
var import_react59 = require("react");
|
|
2655
2706
|
|
|
2656
2707
|
// src/components/menu/use-styles.ts
|
|
2657
|
-
var
|
|
2708
|
+
var import_react58 = require("react");
|
|
2658
2709
|
|
|
2659
2710
|
// src/components/menu/use-styles.css.ts
|
|
2660
2711
|
var danger = "use-styles_danger__1uyxaj3";
|
|
@@ -2663,9 +2714,9 @@ var list = "use-styles_list__1uyxaj1 surfaces_panelSurface__1qa7atn1";
|
|
|
2663
2714
|
var wrapper3 = "use-styles_wrapper__1uyxaj0";
|
|
2664
2715
|
|
|
2665
2716
|
// src/components/menu/use-styles.ts
|
|
2666
|
-
function
|
|
2717
|
+
function useStyles26() {
|
|
2667
2718
|
const { themeClass } = useTheme();
|
|
2668
|
-
return (0,
|
|
2719
|
+
return (0, import_react58.useMemo)(
|
|
2669
2720
|
() => ({
|
|
2670
2721
|
wrapper: [themeClass, wrapper3].filter(Boolean).join(" "),
|
|
2671
2722
|
list,
|
|
@@ -2677,24 +2728,24 @@ function useStyles25() {
|
|
|
2677
2728
|
}
|
|
2678
2729
|
|
|
2679
2730
|
// src/components/menu/index.tsx
|
|
2680
|
-
var
|
|
2731
|
+
var import_jsx_runtime41 = require("react/jsx-runtime");
|
|
2681
2732
|
var ICON_SIZE4 = 16;
|
|
2682
2733
|
function assignRef(ref, value) {
|
|
2683
2734
|
if (typeof ref === "function") ref(value);
|
|
2684
2735
|
else if (ref) ref.current = value;
|
|
2685
2736
|
}
|
|
2686
|
-
var Menu = (0,
|
|
2687
|
-
const { wrapper: wrapper4, list: list2, item: item3, dangerItem } =
|
|
2737
|
+
var Menu = (0, import_react59.forwardRef)(function Menu2({ trigger: trigger2, items, testId }, ref) {
|
|
2738
|
+
const { wrapper: wrapper4, list: list2, item: item3, dangerItem } = useStyles26();
|
|
2688
2739
|
const { testId: rootTestId, slot } = useTestId("menu", testId);
|
|
2689
|
-
const [open, setOpen] = (0,
|
|
2690
|
-
const [alignEnd, setAlignEnd] = (0,
|
|
2691
|
-
const rootRef = (0,
|
|
2740
|
+
const [open, setOpen] = (0, import_react59.useState)(false);
|
|
2741
|
+
const [alignEnd, setAlignEnd] = (0, import_react59.useState)(false);
|
|
2742
|
+
const rootRef = (0, import_react59.useRef)(null);
|
|
2692
2743
|
const setRootRef = (node) => {
|
|
2693
2744
|
rootRef.current = node;
|
|
2694
2745
|
assignRef(ref, node);
|
|
2695
2746
|
};
|
|
2696
|
-
const listRef = (0,
|
|
2697
|
-
const triggerRef = (0,
|
|
2747
|
+
const listRef = (0, import_react59.useRef)(null);
|
|
2748
|
+
const triggerRef = (0, import_react59.useRef)(null);
|
|
2698
2749
|
const getMenuItems = () => Array.from(listRef.current?.querySelectorAll('[role="menuitem"]') ?? []);
|
|
2699
2750
|
const focusItemAt = (index) => {
|
|
2700
2751
|
const menuItems = getMenuItems();
|
|
@@ -2706,7 +2757,7 @@ var Menu = (0, import_react57.forwardRef)(function Menu2({ trigger: trigger2, it
|
|
|
2706
2757
|
setOpen(false);
|
|
2707
2758
|
triggerRef.current?.focus();
|
|
2708
2759
|
};
|
|
2709
|
-
(0,
|
|
2760
|
+
(0, import_react59.useLayoutEffect)(() => {
|
|
2710
2761
|
if (!open) {
|
|
2711
2762
|
setAlignEnd(false);
|
|
2712
2763
|
return;
|
|
@@ -2718,7 +2769,7 @@ var Menu = (0, import_react57.forwardRef)(function Menu2({ trigger: trigger2, it
|
|
|
2718
2769
|
const viewport = document.documentElement.clientWidth;
|
|
2719
2770
|
setAlignEnd(rootLeft + listEl.offsetWidth > viewport);
|
|
2720
2771
|
}, [open]);
|
|
2721
|
-
(0,
|
|
2772
|
+
(0, import_react59.useEffect)(() => {
|
|
2722
2773
|
if (!open) return;
|
|
2723
2774
|
listRef.current?.querySelector('[role="menuitem"]')?.focus();
|
|
2724
2775
|
const onDocMouseDown = (event) => {
|
|
@@ -2774,7 +2825,7 @@ var Menu = (0, import_react57.forwardRef)(function Menu2({ trigger: trigger2, it
|
|
|
2774
2825
|
triggerRef.current = node;
|
|
2775
2826
|
assignRef(consumerRef, node);
|
|
2776
2827
|
};
|
|
2777
|
-
const clonedTrigger = (0,
|
|
2828
|
+
const clonedTrigger = (0, import_react59.cloneElement)(trigger2, {
|
|
2778
2829
|
ref: mergedTriggerRef,
|
|
2779
2830
|
"aria-haspopup": "menu",
|
|
2780
2831
|
"aria-expanded": open,
|
|
@@ -2783,7 +2834,7 @@ var Menu = (0, import_react57.forwardRef)(function Menu2({ trigger: trigger2, it
|
|
|
2783
2834
|
setOpen((prev) => !prev);
|
|
2784
2835
|
}
|
|
2785
2836
|
});
|
|
2786
|
-
return /* @__PURE__ */ (0,
|
|
2837
|
+
return /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)(
|
|
2787
2838
|
"div",
|
|
2788
2839
|
{
|
|
2789
2840
|
ref: setRootRef,
|
|
@@ -2792,7 +2843,7 @@ var Menu = (0, import_react57.forwardRef)(function Menu2({ trigger: trigger2, it
|
|
|
2792
2843
|
"data-state": open ? "open" : "closed",
|
|
2793
2844
|
children: [
|
|
2794
2845
|
clonedTrigger,
|
|
2795
|
-
open && /* @__PURE__ */ (0,
|
|
2846
|
+
open && /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
|
|
2796
2847
|
"div",
|
|
2797
2848
|
{
|
|
2798
2849
|
ref: listRef,
|
|
@@ -2803,7 +2854,7 @@ var Menu = (0, import_react57.forwardRef)(function Menu2({ trigger: trigger2, it
|
|
|
2803
2854
|
onKeyDown: onMenuKeyDown,
|
|
2804
2855
|
children: items.map((entry, index) => {
|
|
2805
2856
|
const ItemIcon = entry.icon;
|
|
2806
|
-
return /* @__PURE__ */ (0,
|
|
2857
|
+
return /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)(
|
|
2807
2858
|
"button",
|
|
2808
2859
|
{
|
|
2809
2860
|
type: "button",
|
|
@@ -2816,7 +2867,7 @@ var Menu = (0, import_react57.forwardRef)(function Menu2({ trigger: trigger2, it
|
|
|
2816
2867
|
setOpen(false);
|
|
2817
2868
|
},
|
|
2818
2869
|
children: [
|
|
2819
|
-
ItemIcon ? /* @__PURE__ */ (0,
|
|
2870
|
+
ItemIcon ? /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(ItemIcon, { size: ICON_SIZE4 }) : null,
|
|
2820
2871
|
entry.label
|
|
2821
2872
|
]
|
|
2822
2873
|
},
|
|
@@ -2831,25 +2882,25 @@ var Menu = (0, import_react57.forwardRef)(function Menu2({ trigger: trigger2, it
|
|
|
2831
2882
|
});
|
|
2832
2883
|
|
|
2833
2884
|
// src/components/dialog/index.tsx
|
|
2834
|
-
var
|
|
2885
|
+
var import_react61 = require("react");
|
|
2835
2886
|
var import_react_dom = require("react-dom");
|
|
2836
2887
|
|
|
2837
2888
|
// src/components/dialog/use-styles.ts
|
|
2838
|
-
var
|
|
2889
|
+
var import_react60 = require("react");
|
|
2839
2890
|
|
|
2840
2891
|
// src/components/dialog/use-styles.css.ts
|
|
2841
2892
|
var actions = "use-styles_actions__5tstu83";
|
|
2842
2893
|
var body2 = "use-styles_body__5tstu82";
|
|
2843
2894
|
var overlay = "use-styles_overlay__5tstu80";
|
|
2844
|
-
var
|
|
2895
|
+
var surface2 = "use-styles_surface__5tstu81";
|
|
2845
2896
|
|
|
2846
2897
|
// src/components/dialog/use-styles.ts
|
|
2847
|
-
function
|
|
2898
|
+
function useStyles27() {
|
|
2848
2899
|
const { themeClass } = useTheme();
|
|
2849
|
-
return (0,
|
|
2900
|
+
return (0, import_react60.useMemo)(
|
|
2850
2901
|
() => ({
|
|
2851
2902
|
overlay: [themeClass, overlay].filter(Boolean).join(" "),
|
|
2852
|
-
surface,
|
|
2903
|
+
surface: surface2,
|
|
2853
2904
|
body: body2,
|
|
2854
2905
|
actions
|
|
2855
2906
|
}),
|
|
@@ -2858,24 +2909,24 @@ function useStyles26() {
|
|
|
2858
2909
|
}
|
|
2859
2910
|
|
|
2860
2911
|
// src/components/dialog/index.tsx
|
|
2861
|
-
var
|
|
2912
|
+
var import_jsx_runtime42 = require("react/jsx-runtime");
|
|
2862
2913
|
var FOCUSABLE = 'a[href], button:not([disabled]), textarea:not([disabled]), input:not([disabled]), select:not([disabled]), [tabindex]:not([tabindex="-1"])';
|
|
2863
2914
|
function assignRef2(ref, value) {
|
|
2864
2915
|
if (typeof ref === "function") ref(value);
|
|
2865
2916
|
else if (ref) ref.current = value;
|
|
2866
2917
|
}
|
|
2867
|
-
var Dialog = (0,
|
|
2868
|
-
const { overlay: overlay2, surface:
|
|
2918
|
+
var Dialog = (0, import_react61.forwardRef)(function Dialog2({ open, onClose, title, actions: actions3, children, testId }, ref) {
|
|
2919
|
+
const { overlay: overlay2, surface: surface3, body: body3, actions: actionsClass } = useStyles27();
|
|
2869
2920
|
const { testId: rootTestId, slot } = useTestId("dialog", testId);
|
|
2870
|
-
const surfaceRef = (0,
|
|
2921
|
+
const surfaceRef = (0, import_react61.useRef)(null);
|
|
2871
2922
|
const setSurfaceRef = (node) => {
|
|
2872
2923
|
surfaceRef.current = node;
|
|
2873
2924
|
assignRef2(ref, node);
|
|
2874
2925
|
};
|
|
2875
|
-
const previouslyFocused = (0,
|
|
2876
|
-
const generatedId = (0,
|
|
2926
|
+
const previouslyFocused = (0, import_react61.useRef)(null);
|
|
2927
|
+
const generatedId = (0, import_react61.useId)();
|
|
2877
2928
|
const titleId = title != null ? generatedId : void 0;
|
|
2878
|
-
(0,
|
|
2929
|
+
(0, import_react61.useEffect)(() => {
|
|
2879
2930
|
if (!open) return;
|
|
2880
2931
|
const onKeyDown = (event) => {
|
|
2881
2932
|
if (event.key === "Escape") onClose();
|
|
@@ -2883,13 +2934,13 @@ var Dialog = (0, import_react59.forwardRef)(function Dialog2({ open, onClose, ti
|
|
|
2883
2934
|
document.addEventListener("keydown", onKeyDown);
|
|
2884
2935
|
return () => document.removeEventListener("keydown", onKeyDown);
|
|
2885
2936
|
}, [open, onClose]);
|
|
2886
|
-
(0,
|
|
2937
|
+
(0, import_react61.useEffect)(() => {
|
|
2887
2938
|
if (!open) return;
|
|
2888
2939
|
previouslyFocused.current = document.activeElement;
|
|
2889
2940
|
surfaceRef.current?.focus();
|
|
2890
2941
|
return () => previouslyFocused.current?.focus?.();
|
|
2891
2942
|
}, [open]);
|
|
2892
|
-
(0,
|
|
2943
|
+
(0, import_react61.useEffect)(() => {
|
|
2893
2944
|
if (!open) return;
|
|
2894
2945
|
const previousOverflow = document.body.style.overflow;
|
|
2895
2946
|
document.body.style.overflow = "hidden";
|
|
@@ -2927,11 +2978,11 @@ var Dialog = (0, import_react59.forwardRef)(function Dialog2({ open, onClose, ti
|
|
|
2927
2978
|
};
|
|
2928
2979
|
return (0, import_react_dom.createPortal)(
|
|
2929
2980
|
// biome-ignore lint/a11y/useKeyWithClickEvents: ESC handled by a document keydown listener.
|
|
2930
|
-
/* @__PURE__ */ (0,
|
|
2981
|
+
/* @__PURE__ */ (0, import_jsx_runtime42.jsx)("div", { className: overlay2, "data-testid": slot("overlay"), onClick: onClose, children: /* @__PURE__ */ (0, import_jsx_runtime42.jsxs)(
|
|
2931
2982
|
"div",
|
|
2932
2983
|
{
|
|
2933
2984
|
ref: setSurfaceRef,
|
|
2934
|
-
className:
|
|
2985
|
+
className: surface3,
|
|
2935
2986
|
role: "dialog",
|
|
2936
2987
|
"aria-modal": "true",
|
|
2937
2988
|
"aria-labelledby": titleId,
|
|
@@ -2940,9 +2991,9 @@ var Dialog = (0, import_react59.forwardRef)(function Dialog2({ open, onClose, ti
|
|
|
2940
2991
|
onClick: stop,
|
|
2941
2992
|
onKeyDown: onSurfaceKeyDown,
|
|
2942
2993
|
children: [
|
|
2943
|
-
title != null && /* @__PURE__ */ (0,
|
|
2944
|
-
children != null && /* @__PURE__ */ (0,
|
|
2945
|
-
actions3 != null && /* @__PURE__ */ (0,
|
|
2994
|
+
title != null && /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(Typography, { variant: "h3", as: "h2", id: titleId, children: title }),
|
|
2995
|
+
children != null && /* @__PURE__ */ (0, import_jsx_runtime42.jsx)("div", { className: body3, children: /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(Typography, { variant: "body", color: "fg2", children }) }),
|
|
2996
|
+
actions3 != null && /* @__PURE__ */ (0, import_jsx_runtime42.jsx)("div", { className: actionsClass, children: actions3 })
|
|
2946
2997
|
]
|
|
2947
2998
|
}
|
|
2948
2999
|
) }),
|
|
@@ -2951,11 +3002,11 @@ var Dialog = (0, import_react59.forwardRef)(function Dialog2({ open, onClose, ti
|
|
|
2951
3002
|
});
|
|
2952
3003
|
|
|
2953
3004
|
// src/components/snackbar/index.tsx
|
|
2954
|
-
var
|
|
3005
|
+
var import_react63 = require("react");
|
|
2955
3006
|
var import_react_dom2 = require("react-dom");
|
|
2956
3007
|
|
|
2957
3008
|
// src/components/snackbar/use-styles.ts
|
|
2958
|
-
var
|
|
3009
|
+
var import_react62 = require("react");
|
|
2959
3010
|
|
|
2960
3011
|
// src/components/snackbar/use-styles.css.ts
|
|
2961
3012
|
var closeBtn = "use-styles_closeBtn__ihzsep2";
|
|
@@ -2963,9 +3014,9 @@ var message = "use-styles_message__ihzsep1";
|
|
|
2963
3014
|
var root20 = "use-styles_root__ihzsep0 surfaces_inkySurface__1qa7atn2";
|
|
2964
3015
|
|
|
2965
3016
|
// src/components/snackbar/use-styles.ts
|
|
2966
|
-
function
|
|
3017
|
+
function useStyles28() {
|
|
2967
3018
|
const { themeClass } = useTheme();
|
|
2968
|
-
return (0,
|
|
3019
|
+
return (0, import_react62.useMemo)(
|
|
2969
3020
|
() => ({
|
|
2970
3021
|
root: [themeClass, root20].filter(Boolean).join(" "),
|
|
2971
3022
|
message,
|
|
@@ -2976,16 +3027,16 @@ function useStyles27() {
|
|
|
2976
3027
|
}
|
|
2977
3028
|
|
|
2978
3029
|
// src/components/snackbar/index.tsx
|
|
2979
|
-
var
|
|
2980
|
-
var Snackbar = (0,
|
|
2981
|
-
const { root: root24, message: messageClass, closeBtn: closeBtn2 } =
|
|
3030
|
+
var import_jsx_runtime43 = require("react/jsx-runtime");
|
|
3031
|
+
var Snackbar = (0, import_react63.forwardRef)(function Snackbar2({ open, message: message2, action, onClose, testId }, ref) {
|
|
3032
|
+
const { root: root24, message: messageClass, closeBtn: closeBtn2 } = useStyles28();
|
|
2982
3033
|
const { testId: dataTestId, slot } = useTestId("feedback", testId);
|
|
2983
3034
|
if (!open || typeof document === "undefined") return null;
|
|
2984
3035
|
return (0, import_react_dom2.createPortal)(
|
|
2985
|
-
/* @__PURE__ */ (0,
|
|
2986
|
-
/* @__PURE__ */ (0,
|
|
3036
|
+
/* @__PURE__ */ (0, import_jsx_runtime43.jsxs)("div", { ref, role: "status", className: root24, "data-testid": dataTestId, children: [
|
|
3037
|
+
/* @__PURE__ */ (0, import_jsx_runtime43.jsx)("span", { className: messageClass, "data-testid": slot("message"), children: message2 }),
|
|
2987
3038
|
action,
|
|
2988
|
-
onClose && /* @__PURE__ */ (0,
|
|
3039
|
+
onClose && /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
|
|
2989
3040
|
"button",
|
|
2990
3041
|
{
|
|
2991
3042
|
type: "button",
|
|
@@ -2993,7 +3044,7 @@ var Snackbar = (0, import_react61.forwardRef)(function Snackbar2({ open, message
|
|
|
2993
3044
|
className: closeBtn2,
|
|
2994
3045
|
"data-testid": slot("close"),
|
|
2995
3046
|
onClick: onClose,
|
|
2996
|
-
children: /* @__PURE__ */ (0,
|
|
3047
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(XIcon, { size: 18 })
|
|
2997
3048
|
}
|
|
2998
3049
|
)
|
|
2999
3050
|
] }),
|
|
@@ -3002,10 +3053,10 @@ var Snackbar = (0, import_react61.forwardRef)(function Snackbar2({ open, message
|
|
|
3002
3053
|
});
|
|
3003
3054
|
|
|
3004
3055
|
// src/components/table/index.tsx
|
|
3005
|
-
var
|
|
3056
|
+
var import_react65 = require("react");
|
|
3006
3057
|
|
|
3007
3058
|
// src/components/table/use-styles.ts
|
|
3008
|
-
var
|
|
3059
|
+
var import_react64 = require("react");
|
|
3009
3060
|
|
|
3010
3061
|
// src/components/table/use-styles.css.ts
|
|
3011
3062
|
var alignRight = "use-styles_alignRight__1n2cz6i3";
|
|
@@ -3015,9 +3066,9 @@ var td = "use-styles_td__1n2cz6i2";
|
|
|
3015
3066
|
var th = "use-styles_th__1n2cz6i1";
|
|
3016
3067
|
|
|
3017
3068
|
// src/components/table/use-styles.ts
|
|
3018
|
-
function
|
|
3069
|
+
function useStyles29({ className }) {
|
|
3019
3070
|
const { themeClass } = useTheme();
|
|
3020
|
-
const root24 = (0,
|
|
3071
|
+
const root24 = (0, import_react64.useMemo)(
|
|
3021
3072
|
() => [themeClass, root21, className].filter(Boolean).join(" "),
|
|
3022
3073
|
[themeClass, className]
|
|
3023
3074
|
);
|
|
@@ -3031,27 +3082,27 @@ function useStyles28({ className }) {
|
|
|
3031
3082
|
}
|
|
3032
3083
|
|
|
3033
3084
|
// src/components/table/index.tsx
|
|
3034
|
-
var
|
|
3085
|
+
var import_jsx_runtime44 = require("react/jsx-runtime");
|
|
3035
3086
|
function TableInner({ columns, rows, getRowKey, className, caption: caption2, testId, ...rest }, ref) {
|
|
3036
|
-
const { root: root24, th: th2, td: td2, alignRight: alignRight2, caption: captionClass } =
|
|
3087
|
+
const { root: root24, th: th2, td: td2, alignRight: alignRight2, caption: captionClass } = useStyles29({ className });
|
|
3037
3088
|
const { testId: dataTestId, slot } = useTestId("list", testId);
|
|
3038
3089
|
const headClass = (column) => column.align === "right" ? `${th2} ${alignRight2}` : th2;
|
|
3039
3090
|
const cellClass = (column) => column.align === "right" ? `${td2} ${alignRight2}` : td2;
|
|
3040
|
-
return /* @__PURE__ */ (0,
|
|
3041
|
-
caption2 != null && /* @__PURE__ */ (0,
|
|
3042
|
-
/* @__PURE__ */ (0,
|
|
3043
|
-
/* @__PURE__ */ (0,
|
|
3091
|
+
return /* @__PURE__ */ (0, import_jsx_runtime44.jsxs)("table", { ref, className: root24, "data-testid": dataTestId, ...rest, children: [
|
|
3092
|
+
caption2 != null && /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("caption", { className: captionClass, children: caption2 }),
|
|
3093
|
+
/* @__PURE__ */ (0, import_jsx_runtime44.jsx)("thead", { children: /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("tr", { children: columns.map((column) => /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("th", { scope: "col", className: headClass(column), children: column.header }, column.key)) }) }),
|
|
3094
|
+
/* @__PURE__ */ (0, import_jsx_runtime44.jsx)("tbody", { children: rows.map((row, index) => /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("tr", { "data-testid": slot(`row-${index}`), children: columns.map((column) => /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("td", { className: cellClass(column), children: column.render ? column.render(row) : String(row[column.key]) }, column.key)) }, getRowKey ? getRowKey(row, index) : index)) })
|
|
3044
3095
|
] });
|
|
3045
3096
|
}
|
|
3046
|
-
var TableForwarded = (0,
|
|
3097
|
+
var TableForwarded = (0, import_react65.forwardRef)(TableInner);
|
|
3047
3098
|
TableForwarded.displayName = "Table";
|
|
3048
3099
|
var Table = TableForwarded;
|
|
3049
3100
|
|
|
3050
3101
|
// src/components/app-bar/index.tsx
|
|
3051
|
-
var
|
|
3102
|
+
var import_react67 = require("react");
|
|
3052
3103
|
|
|
3053
3104
|
// src/components/app-bar/use-styles.ts
|
|
3054
|
-
var
|
|
3105
|
+
var import_react66 = require("react");
|
|
3055
3106
|
|
|
3056
3107
|
// src/components/app-bar/use-styles.css.ts
|
|
3057
3108
|
var actions2 = "use-styles_actions__1h133nh2";
|
|
@@ -3059,9 +3110,9 @@ var brand = "use-styles_brand__1h133nh1";
|
|
|
3059
3110
|
var root22 = "use-styles_root__1h133nh0";
|
|
3060
3111
|
|
|
3061
3112
|
// src/components/app-bar/use-styles.ts
|
|
3062
|
-
function
|
|
3113
|
+
function useStyles30({ className }) {
|
|
3063
3114
|
const { themeClass } = useTheme();
|
|
3064
|
-
const root24 = (0,
|
|
3115
|
+
const root24 = (0, import_react66.useMemo)(
|
|
3065
3116
|
() => [themeClass, root22, className].filter(Boolean).join(" "),
|
|
3066
3117
|
[themeClass, className]
|
|
3067
3118
|
);
|
|
@@ -3069,22 +3120,22 @@ function useStyles29({ className }) {
|
|
|
3069
3120
|
}
|
|
3070
3121
|
|
|
3071
3122
|
// src/components/app-bar/index.tsx
|
|
3072
|
-
var
|
|
3073
|
-
var AppBar = (0,
|
|
3074
|
-
const styles =
|
|
3123
|
+
var import_jsx_runtime45 = require("react/jsx-runtime");
|
|
3124
|
+
var AppBar = (0, import_react67.forwardRef)(function AppBar2({ brand: brand2, actions: actions3, className, children, testId, ...rest }, ref) {
|
|
3125
|
+
const styles = useStyles30({ className });
|
|
3075
3126
|
const { testId: dataTestId, slot } = useTestId("nav", testId);
|
|
3076
|
-
return /* @__PURE__ */ (0,
|
|
3077
|
-
brand2 !== void 0 ? /* @__PURE__ */ (0,
|
|
3127
|
+
return /* @__PURE__ */ (0, import_jsx_runtime45.jsxs)("header", { ref, className: styles.root, "data-testid": dataTestId, ...rest, children: [
|
|
3128
|
+
brand2 !== void 0 ? /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("div", { className: styles.brand, "data-testid": slot("brand"), children: brand2 }) : null,
|
|
3078
3129
|
children,
|
|
3079
|
-
actions3 !== void 0 ? /* @__PURE__ */ (0,
|
|
3130
|
+
actions3 !== void 0 ? /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("div", { className: styles.actions, "data-testid": slot("actions"), children: actions3 }) : null
|
|
3080
3131
|
] });
|
|
3081
3132
|
});
|
|
3082
3133
|
|
|
3083
3134
|
// src/components/list-item/index.tsx
|
|
3084
|
-
var
|
|
3135
|
+
var import_react69 = require("react");
|
|
3085
3136
|
|
|
3086
3137
|
// src/components/list-item/use-styles.ts
|
|
3087
|
-
var
|
|
3138
|
+
var import_react68 = require("react");
|
|
3088
3139
|
|
|
3089
3140
|
// src/components/list-item/use-styles.css.ts
|
|
3090
3141
|
var content2 = "use-styles_content__kbreq13";
|
|
@@ -3094,12 +3145,12 @@ var selected2 = "use-styles_selected__kbreq11";
|
|
|
3094
3145
|
var trailing = "use-styles_trailing__kbreq14";
|
|
3095
3146
|
|
|
3096
3147
|
// src/components/list-item/use-styles.ts
|
|
3097
|
-
function
|
|
3148
|
+
function useStyles31({
|
|
3098
3149
|
selected: selected3,
|
|
3099
3150
|
className
|
|
3100
3151
|
}) {
|
|
3101
3152
|
const { themeClass } = useTheme();
|
|
3102
|
-
const root24 = (0,
|
|
3153
|
+
const root24 = (0, import_react68.useMemo)(
|
|
3103
3154
|
() => [themeClass, root23, selected3 && selected2, className].filter(Boolean).join(" "),
|
|
3104
3155
|
[themeClass, selected3, className]
|
|
3105
3156
|
);
|
|
@@ -3107,11 +3158,11 @@ function useStyles30({
|
|
|
3107
3158
|
}
|
|
3108
3159
|
|
|
3109
3160
|
// src/components/list-item/index.tsx
|
|
3110
|
-
var
|
|
3111
|
-
var ListItem = (0,
|
|
3112
|
-
const styles =
|
|
3161
|
+
var import_jsx_runtime46 = require("react/jsx-runtime");
|
|
3162
|
+
var ListItem = (0, import_react69.forwardRef)(function ListItem2({ leading: leading2, trailing: trailing2, selected: selected3, className, testId, children, ...rest }, ref) {
|
|
3163
|
+
const styles = useStyles31({ selected: selected3, className });
|
|
3113
3164
|
const { testId: dataTestId, slot } = useTestId("list", testId);
|
|
3114
|
-
return /* @__PURE__ */ (0,
|
|
3165
|
+
return /* @__PURE__ */ (0, import_jsx_runtime46.jsxs)(
|
|
3115
3166
|
"div",
|
|
3116
3167
|
{
|
|
3117
3168
|
ref,
|
|
@@ -3120,18 +3171,18 @@ var ListItem = (0, import_react67.forwardRef)(function ListItem2({ leading: lead
|
|
|
3120
3171
|
"data-state": states({ selected: selected3 }),
|
|
3121
3172
|
...rest,
|
|
3122
3173
|
children: [
|
|
3123
|
-
leading2 != null && /* @__PURE__ */ (0,
|
|
3124
|
-
/* @__PURE__ */ (0,
|
|
3125
|
-
trailing2 != null && /* @__PURE__ */ (0,
|
|
3174
|
+
leading2 != null && /* @__PURE__ */ (0, import_jsx_runtime46.jsx)("span", { className: styles.leading, "data-testid": slot("leading"), children: leading2 }),
|
|
3175
|
+
/* @__PURE__ */ (0, import_jsx_runtime46.jsx)("span", { className: styles.content, "data-testid": slot("content"), children }),
|
|
3176
|
+
trailing2 != null && /* @__PURE__ */ (0, import_jsx_runtime46.jsx)("span", { className: styles.trailing, "data-testid": slot("trailing"), children: trailing2 })
|
|
3126
3177
|
]
|
|
3127
3178
|
}
|
|
3128
3179
|
);
|
|
3129
3180
|
});
|
|
3130
3181
|
|
|
3131
3182
|
// src/components/icons/alert-circle/index.tsx
|
|
3132
|
-
var
|
|
3183
|
+
var import_jsx_runtime47 = require("react/jsx-runtime");
|
|
3133
3184
|
function AlertCircleIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3134
|
-
return /* @__PURE__ */ (0,
|
|
3185
|
+
return /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)(
|
|
3135
3186
|
"svg",
|
|
3136
3187
|
{
|
|
3137
3188
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3146,18 +3197,18 @@ function AlertCircleIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3146
3197
|
"aria-hidden": "true",
|
|
3147
3198
|
...rest,
|
|
3148
3199
|
children: [
|
|
3149
|
-
/* @__PURE__ */ (0,
|
|
3150
|
-
/* @__PURE__ */ (0,
|
|
3151
|
-
/* @__PURE__ */ (0,
|
|
3200
|
+
/* @__PURE__ */ (0, import_jsx_runtime47.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
|
|
3201
|
+
/* @__PURE__ */ (0, import_jsx_runtime47.jsx)("line", { x1: "12", x2: "12", y1: "8", y2: "12" }),
|
|
3202
|
+
/* @__PURE__ */ (0, import_jsx_runtime47.jsx)("line", { x1: "12", x2: "12.01", y1: "16", y2: "16" })
|
|
3152
3203
|
]
|
|
3153
3204
|
}
|
|
3154
3205
|
);
|
|
3155
3206
|
}
|
|
3156
3207
|
|
|
3157
3208
|
// src/components/icons/archive/index.tsx
|
|
3158
|
-
var
|
|
3209
|
+
var import_jsx_runtime48 = require("react/jsx-runtime");
|
|
3159
3210
|
function ArchiveIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3160
|
-
return /* @__PURE__ */ (0,
|
|
3211
|
+
return /* @__PURE__ */ (0, import_jsx_runtime48.jsxs)(
|
|
3161
3212
|
"svg",
|
|
3162
3213
|
{
|
|
3163
3214
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3172,18 +3223,18 @@ function ArchiveIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3172
3223
|
"aria-hidden": "true",
|
|
3173
3224
|
...rest,
|
|
3174
3225
|
children: [
|
|
3175
|
-
/* @__PURE__ */ (0,
|
|
3176
|
-
/* @__PURE__ */ (0,
|
|
3177
|
-
/* @__PURE__ */ (0,
|
|
3226
|
+
/* @__PURE__ */ (0, import_jsx_runtime48.jsx)("rect", { width: "20", height: "5", x: "2", y: "3", rx: "1" }),
|
|
3227
|
+
/* @__PURE__ */ (0, import_jsx_runtime48.jsx)("path", { d: "M4 8v11a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8" }),
|
|
3228
|
+
/* @__PURE__ */ (0, import_jsx_runtime48.jsx)("path", { d: "M10 12h4" })
|
|
3178
3229
|
]
|
|
3179
3230
|
}
|
|
3180
3231
|
);
|
|
3181
3232
|
}
|
|
3182
3233
|
|
|
3183
3234
|
// src/components/icons/arrow-down/index.tsx
|
|
3184
|
-
var
|
|
3235
|
+
var import_jsx_runtime49 = require("react/jsx-runtime");
|
|
3185
3236
|
function ArrowDownIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3186
|
-
return /* @__PURE__ */ (0,
|
|
3237
|
+
return /* @__PURE__ */ (0, import_jsx_runtime49.jsxs)(
|
|
3187
3238
|
"svg",
|
|
3188
3239
|
{
|
|
3189
3240
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3198,17 +3249,17 @@ function ArrowDownIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3198
3249
|
"aria-hidden": "true",
|
|
3199
3250
|
...rest,
|
|
3200
3251
|
children: [
|
|
3201
|
-
/* @__PURE__ */ (0,
|
|
3202
|
-
/* @__PURE__ */ (0,
|
|
3252
|
+
/* @__PURE__ */ (0, import_jsx_runtime49.jsx)("path", { d: "M12 5v14" }),
|
|
3253
|
+
/* @__PURE__ */ (0, import_jsx_runtime49.jsx)("path", { d: "m19 12-7 7-7-7" })
|
|
3203
3254
|
]
|
|
3204
3255
|
}
|
|
3205
3256
|
);
|
|
3206
3257
|
}
|
|
3207
3258
|
|
|
3208
3259
|
// src/components/icons/arrow-left/index.tsx
|
|
3209
|
-
var
|
|
3260
|
+
var import_jsx_runtime50 = require("react/jsx-runtime");
|
|
3210
3261
|
function ArrowLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3211
|
-
return /* @__PURE__ */ (0,
|
|
3262
|
+
return /* @__PURE__ */ (0, import_jsx_runtime50.jsxs)(
|
|
3212
3263
|
"svg",
|
|
3213
3264
|
{
|
|
3214
3265
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3223,17 +3274,17 @@ function ArrowLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3223
3274
|
"aria-hidden": "true",
|
|
3224
3275
|
...rest,
|
|
3225
3276
|
children: [
|
|
3226
|
-
/* @__PURE__ */ (0,
|
|
3227
|
-
/* @__PURE__ */ (0,
|
|
3277
|
+
/* @__PURE__ */ (0, import_jsx_runtime50.jsx)("path", { d: "m12 19-7-7 7-7" }),
|
|
3278
|
+
/* @__PURE__ */ (0, import_jsx_runtime50.jsx)("path", { d: "M19 12H5" })
|
|
3228
3279
|
]
|
|
3229
3280
|
}
|
|
3230
3281
|
);
|
|
3231
3282
|
}
|
|
3232
3283
|
|
|
3233
3284
|
// src/components/icons/arrow-right/index.tsx
|
|
3234
|
-
var
|
|
3285
|
+
var import_jsx_runtime51 = require("react/jsx-runtime");
|
|
3235
3286
|
function ArrowRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3236
|
-
return /* @__PURE__ */ (0,
|
|
3287
|
+
return /* @__PURE__ */ (0, import_jsx_runtime51.jsxs)(
|
|
3237
3288
|
"svg",
|
|
3238
3289
|
{
|
|
3239
3290
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3248,17 +3299,17 @@ function ArrowRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3248
3299
|
"aria-hidden": "true",
|
|
3249
3300
|
...rest,
|
|
3250
3301
|
children: [
|
|
3251
|
-
/* @__PURE__ */ (0,
|
|
3252
|
-
/* @__PURE__ */ (0,
|
|
3302
|
+
/* @__PURE__ */ (0, import_jsx_runtime51.jsx)("path", { d: "M5 12h14" }),
|
|
3303
|
+
/* @__PURE__ */ (0, import_jsx_runtime51.jsx)("path", { d: "m12 5 7 7-7 7" })
|
|
3253
3304
|
]
|
|
3254
3305
|
}
|
|
3255
3306
|
);
|
|
3256
3307
|
}
|
|
3257
3308
|
|
|
3258
3309
|
// src/components/icons/arrow-up/index.tsx
|
|
3259
|
-
var
|
|
3310
|
+
var import_jsx_runtime52 = require("react/jsx-runtime");
|
|
3260
3311
|
function ArrowUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3261
|
-
return /* @__PURE__ */ (0,
|
|
3312
|
+
return /* @__PURE__ */ (0, import_jsx_runtime52.jsxs)(
|
|
3262
3313
|
"svg",
|
|
3263
3314
|
{
|
|
3264
3315
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3273,17 +3324,17 @@ function ArrowUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3273
3324
|
"aria-hidden": "true",
|
|
3274
3325
|
...rest,
|
|
3275
3326
|
children: [
|
|
3276
|
-
/* @__PURE__ */ (0,
|
|
3277
|
-
/* @__PURE__ */ (0,
|
|
3327
|
+
/* @__PURE__ */ (0, import_jsx_runtime52.jsx)("path", { d: "m5 12 7-7 7 7" }),
|
|
3328
|
+
/* @__PURE__ */ (0, import_jsx_runtime52.jsx)("path", { d: "M12 19V5" })
|
|
3278
3329
|
]
|
|
3279
3330
|
}
|
|
3280
3331
|
);
|
|
3281
3332
|
}
|
|
3282
3333
|
|
|
3283
3334
|
// src/components/icons/at-sign/index.tsx
|
|
3284
|
-
var
|
|
3335
|
+
var import_jsx_runtime53 = require("react/jsx-runtime");
|
|
3285
3336
|
function AtSignIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3286
|
-
return /* @__PURE__ */ (0,
|
|
3337
|
+
return /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)(
|
|
3287
3338
|
"svg",
|
|
3288
3339
|
{
|
|
3289
3340
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3298,17 +3349,17 @@ function AtSignIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3298
3349
|
"aria-hidden": "true",
|
|
3299
3350
|
...rest,
|
|
3300
3351
|
children: [
|
|
3301
|
-
/* @__PURE__ */ (0,
|
|
3302
|
-
/* @__PURE__ */ (0,
|
|
3352
|
+
/* @__PURE__ */ (0, import_jsx_runtime53.jsx)("circle", { cx: "12", cy: "12", r: "4" }),
|
|
3353
|
+
/* @__PURE__ */ (0, import_jsx_runtime53.jsx)("path", { d: "M16 8v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-4 8" })
|
|
3303
3354
|
]
|
|
3304
3355
|
}
|
|
3305
3356
|
);
|
|
3306
3357
|
}
|
|
3307
3358
|
|
|
3308
3359
|
// src/components/icons/bell/index.tsx
|
|
3309
|
-
var
|
|
3360
|
+
var import_jsx_runtime54 = require("react/jsx-runtime");
|
|
3310
3361
|
function BellIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3311
|
-
return /* @__PURE__ */ (0,
|
|
3362
|
+
return /* @__PURE__ */ (0, import_jsx_runtime54.jsxs)(
|
|
3312
3363
|
"svg",
|
|
3313
3364
|
{
|
|
3314
3365
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3323,17 +3374,17 @@ function BellIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3323
3374
|
"aria-hidden": "true",
|
|
3324
3375
|
...rest,
|
|
3325
3376
|
children: [
|
|
3326
|
-
/* @__PURE__ */ (0,
|
|
3327
|
-
/* @__PURE__ */ (0,
|
|
3377
|
+
/* @__PURE__ */ (0, import_jsx_runtime54.jsx)("path", { d: "M6 8a6 6 0 0 1 12 0c0 7 3 9 3 9H3s3-2 3-9" }),
|
|
3378
|
+
/* @__PURE__ */ (0, import_jsx_runtime54.jsx)("path", { d: "M10.3 21a1.94 1.94 0 0 0 3.4 0" })
|
|
3328
3379
|
]
|
|
3329
3380
|
}
|
|
3330
3381
|
);
|
|
3331
3382
|
}
|
|
3332
3383
|
|
|
3333
3384
|
// src/components/icons/bell-off/index.tsx
|
|
3334
|
-
var
|
|
3385
|
+
var import_jsx_runtime55 = require("react/jsx-runtime");
|
|
3335
3386
|
function BellOffIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3336
|
-
return /* @__PURE__ */ (0,
|
|
3387
|
+
return /* @__PURE__ */ (0, import_jsx_runtime55.jsxs)(
|
|
3337
3388
|
"svg",
|
|
3338
3389
|
{
|
|
3339
3390
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3348,19 +3399,19 @@ function BellOffIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3348
3399
|
"aria-hidden": "true",
|
|
3349
3400
|
...rest,
|
|
3350
3401
|
children: [
|
|
3351
|
-
/* @__PURE__ */ (0,
|
|
3352
|
-
/* @__PURE__ */ (0,
|
|
3353
|
-
/* @__PURE__ */ (0,
|
|
3354
|
-
/* @__PURE__ */ (0,
|
|
3402
|
+
/* @__PURE__ */ (0, import_jsx_runtime55.jsx)("path", { d: "M8.7 3A6 6 0 0 1 18 8a21.3 21.3 0 0 0 .6 5" }),
|
|
3403
|
+
/* @__PURE__ */ (0, import_jsx_runtime55.jsx)("path", { d: "M17 17H3s3-2 3-9a4.67 4.67 0 0 1 .3-1.7" }),
|
|
3404
|
+
/* @__PURE__ */ (0, import_jsx_runtime55.jsx)("path", { d: "M10.3 21a1.94 1.94 0 0 0 3.4 0" }),
|
|
3405
|
+
/* @__PURE__ */ (0, import_jsx_runtime55.jsx)("path", { d: "m2 2 20 20" })
|
|
3355
3406
|
]
|
|
3356
3407
|
}
|
|
3357
3408
|
);
|
|
3358
3409
|
}
|
|
3359
3410
|
|
|
3360
3411
|
// src/components/icons/bookmark/index.tsx
|
|
3361
|
-
var
|
|
3412
|
+
var import_jsx_runtime56 = require("react/jsx-runtime");
|
|
3362
3413
|
function BookmarkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3363
|
-
return /* @__PURE__ */ (0,
|
|
3414
|
+
return /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
|
|
3364
3415
|
"svg",
|
|
3365
3416
|
{
|
|
3366
3417
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3374,15 +3425,15 @@ function BookmarkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3374
3425
|
strokeLinejoin: "round",
|
|
3375
3426
|
"aria-hidden": "true",
|
|
3376
3427
|
...rest,
|
|
3377
|
-
children: /* @__PURE__ */ (0,
|
|
3428
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime56.jsx)("path", { d: "m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z" })
|
|
3378
3429
|
}
|
|
3379
3430
|
);
|
|
3380
3431
|
}
|
|
3381
3432
|
|
|
3382
3433
|
// src/components/icons/calendar/index.tsx
|
|
3383
|
-
var
|
|
3434
|
+
var import_jsx_runtime57 = require("react/jsx-runtime");
|
|
3384
3435
|
function CalendarIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3385
|
-
return /* @__PURE__ */ (0,
|
|
3436
|
+
return /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)(
|
|
3386
3437
|
"svg",
|
|
3387
3438
|
{
|
|
3388
3439
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3397,19 +3448,19 @@ function CalendarIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3397
3448
|
"aria-hidden": "true",
|
|
3398
3449
|
...rest,
|
|
3399
3450
|
children: [
|
|
3400
|
-
/* @__PURE__ */ (0,
|
|
3401
|
-
/* @__PURE__ */ (0,
|
|
3402
|
-
/* @__PURE__ */ (0,
|
|
3403
|
-
/* @__PURE__ */ (0,
|
|
3451
|
+
/* @__PURE__ */ (0, import_jsx_runtime57.jsx)("path", { d: "M8 2v4" }),
|
|
3452
|
+
/* @__PURE__ */ (0, import_jsx_runtime57.jsx)("path", { d: "M16 2v4" }),
|
|
3453
|
+
/* @__PURE__ */ (0, import_jsx_runtime57.jsx)("rect", { width: "18", height: "18", x: "3", y: "4", rx: "2" }),
|
|
3454
|
+
/* @__PURE__ */ (0, import_jsx_runtime57.jsx)("path", { d: "M3 10h18" })
|
|
3404
3455
|
]
|
|
3405
3456
|
}
|
|
3406
3457
|
);
|
|
3407
3458
|
}
|
|
3408
3459
|
|
|
3409
3460
|
// src/components/icons/camera/index.tsx
|
|
3410
|
-
var
|
|
3461
|
+
var import_jsx_runtime58 = require("react/jsx-runtime");
|
|
3411
3462
|
function CameraIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3412
|
-
return /* @__PURE__ */ (0,
|
|
3463
|
+
return /* @__PURE__ */ (0, import_jsx_runtime58.jsxs)(
|
|
3413
3464
|
"svg",
|
|
3414
3465
|
{
|
|
3415
3466
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3424,17 +3475,17 @@ function CameraIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3424
3475
|
"aria-hidden": "true",
|
|
3425
3476
|
...rest,
|
|
3426
3477
|
children: [
|
|
3427
|
-
/* @__PURE__ */ (0,
|
|
3428
|
-
/* @__PURE__ */ (0,
|
|
3478
|
+
/* @__PURE__ */ (0, import_jsx_runtime58.jsx)("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" }),
|
|
3479
|
+
/* @__PURE__ */ (0, import_jsx_runtime58.jsx)("circle", { cx: "12", cy: "13", r: "3" })
|
|
3429
3480
|
]
|
|
3430
3481
|
}
|
|
3431
3482
|
);
|
|
3432
3483
|
}
|
|
3433
3484
|
|
|
3434
3485
|
// src/components/icons/chevron-up/index.tsx
|
|
3435
|
-
var
|
|
3486
|
+
var import_jsx_runtime59 = require("react/jsx-runtime");
|
|
3436
3487
|
function ChevronUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3437
|
-
return /* @__PURE__ */ (0,
|
|
3488
|
+
return /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
|
|
3438
3489
|
"svg",
|
|
3439
3490
|
{
|
|
3440
3491
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3448,15 +3499,15 @@ function ChevronUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3448
3499
|
strokeLinejoin: "round",
|
|
3449
3500
|
"aria-hidden": "true",
|
|
3450
3501
|
...rest,
|
|
3451
|
-
children: /* @__PURE__ */ (0,
|
|
3502
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime59.jsx)("path", { d: "m18 15-6-6-6 6" })
|
|
3452
3503
|
}
|
|
3453
3504
|
);
|
|
3454
3505
|
}
|
|
3455
3506
|
|
|
3456
3507
|
// src/components/icons/chevrons-left/index.tsx
|
|
3457
|
-
var
|
|
3508
|
+
var import_jsx_runtime60 = require("react/jsx-runtime");
|
|
3458
3509
|
function ChevronsLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3459
|
-
return /* @__PURE__ */ (0,
|
|
3510
|
+
return /* @__PURE__ */ (0, import_jsx_runtime60.jsxs)(
|
|
3460
3511
|
"svg",
|
|
3461
3512
|
{
|
|
3462
3513
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3471,17 +3522,17 @@ function ChevronsLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3471
3522
|
"aria-hidden": "true",
|
|
3472
3523
|
...rest,
|
|
3473
3524
|
children: [
|
|
3474
|
-
/* @__PURE__ */ (0,
|
|
3475
|
-
/* @__PURE__ */ (0,
|
|
3525
|
+
/* @__PURE__ */ (0, import_jsx_runtime60.jsx)("path", { d: "m11 17-5-5 5-5" }),
|
|
3526
|
+
/* @__PURE__ */ (0, import_jsx_runtime60.jsx)("path", { d: "m18 17-5-5 5-5" })
|
|
3476
3527
|
]
|
|
3477
3528
|
}
|
|
3478
3529
|
);
|
|
3479
3530
|
}
|
|
3480
3531
|
|
|
3481
3532
|
// src/components/icons/chevrons-right/index.tsx
|
|
3482
|
-
var
|
|
3533
|
+
var import_jsx_runtime61 = require("react/jsx-runtime");
|
|
3483
3534
|
function ChevronsRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3484
|
-
return /* @__PURE__ */ (0,
|
|
3535
|
+
return /* @__PURE__ */ (0, import_jsx_runtime61.jsxs)(
|
|
3485
3536
|
"svg",
|
|
3486
3537
|
{
|
|
3487
3538
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3496,17 +3547,17 @@ function ChevronsRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3496
3547
|
"aria-hidden": "true",
|
|
3497
3548
|
...rest,
|
|
3498
3549
|
children: [
|
|
3499
|
-
/* @__PURE__ */ (0,
|
|
3500
|
-
/* @__PURE__ */ (0,
|
|
3550
|
+
/* @__PURE__ */ (0, import_jsx_runtime61.jsx)("path", { d: "m6 17 5-5-5-5" }),
|
|
3551
|
+
/* @__PURE__ */ (0, import_jsx_runtime61.jsx)("path", { d: "m13 17 5-5-5-5" })
|
|
3501
3552
|
]
|
|
3502
3553
|
}
|
|
3503
3554
|
);
|
|
3504
3555
|
}
|
|
3505
3556
|
|
|
3506
3557
|
// src/components/icons/clipboard/index.tsx
|
|
3507
|
-
var
|
|
3558
|
+
var import_jsx_runtime62 = require("react/jsx-runtime");
|
|
3508
3559
|
function ClipboardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3509
|
-
return /* @__PURE__ */ (0,
|
|
3560
|
+
return /* @__PURE__ */ (0, import_jsx_runtime62.jsxs)(
|
|
3510
3561
|
"svg",
|
|
3511
3562
|
{
|
|
3512
3563
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3521,17 +3572,17 @@ function ClipboardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3521
3572
|
"aria-hidden": "true",
|
|
3522
3573
|
...rest,
|
|
3523
3574
|
children: [
|
|
3524
|
-
/* @__PURE__ */ (0,
|
|
3525
|
-
/* @__PURE__ */ (0,
|
|
3575
|
+
/* @__PURE__ */ (0, import_jsx_runtime62.jsx)("rect", { width: "8", height: "4", x: "8", y: "2", rx: "1", ry: "1" }),
|
|
3576
|
+
/* @__PURE__ */ (0, import_jsx_runtime62.jsx)("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" })
|
|
3526
3577
|
]
|
|
3527
3578
|
}
|
|
3528
3579
|
);
|
|
3529
3580
|
}
|
|
3530
3581
|
|
|
3531
3582
|
// src/components/icons/clock/index.tsx
|
|
3532
|
-
var
|
|
3583
|
+
var import_jsx_runtime63 = require("react/jsx-runtime");
|
|
3533
3584
|
function ClockIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3534
|
-
return /* @__PURE__ */ (0,
|
|
3585
|
+
return /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)(
|
|
3535
3586
|
"svg",
|
|
3536
3587
|
{
|
|
3537
3588
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3546,17 +3597,17 @@ function ClockIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3546
3597
|
"aria-hidden": "true",
|
|
3547
3598
|
...rest,
|
|
3548
3599
|
children: [
|
|
3549
|
-
/* @__PURE__ */ (0,
|
|
3550
|
-
/* @__PURE__ */ (0,
|
|
3600
|
+
/* @__PURE__ */ (0, import_jsx_runtime63.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
|
|
3601
|
+
/* @__PURE__ */ (0, import_jsx_runtime63.jsx)("polyline", { points: "12 6 12 12 16 14" })
|
|
3551
3602
|
]
|
|
3552
3603
|
}
|
|
3553
3604
|
);
|
|
3554
3605
|
}
|
|
3555
3606
|
|
|
3556
3607
|
// src/components/icons/cloud/index.tsx
|
|
3557
|
-
var
|
|
3608
|
+
var import_jsx_runtime64 = require("react/jsx-runtime");
|
|
3558
3609
|
function CloudIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3559
|
-
return /* @__PURE__ */ (0,
|
|
3610
|
+
return /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
|
|
3560
3611
|
"svg",
|
|
3561
3612
|
{
|
|
3562
3613
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3570,15 +3621,15 @@ function CloudIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3570
3621
|
strokeLinejoin: "round",
|
|
3571
3622
|
"aria-hidden": "true",
|
|
3572
3623
|
...rest,
|
|
3573
|
-
children: /* @__PURE__ */ (0,
|
|
3624
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime64.jsx)("path", { d: "M17.5 19H9a7 7 0 1 1 6.71-9h1.79a4.5 4.5 0 1 1 0 9Z" })
|
|
3574
3625
|
}
|
|
3575
3626
|
);
|
|
3576
3627
|
}
|
|
3577
3628
|
|
|
3578
3629
|
// src/components/icons/copy/index.tsx
|
|
3579
|
-
var
|
|
3630
|
+
var import_jsx_runtime65 = require("react/jsx-runtime");
|
|
3580
3631
|
function CopyIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3581
|
-
return /* @__PURE__ */ (0,
|
|
3632
|
+
return /* @__PURE__ */ (0, import_jsx_runtime65.jsxs)(
|
|
3582
3633
|
"svg",
|
|
3583
3634
|
{
|
|
3584
3635
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3593,17 +3644,17 @@ function CopyIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3593
3644
|
"aria-hidden": "true",
|
|
3594
3645
|
...rest,
|
|
3595
3646
|
children: [
|
|
3596
|
-
/* @__PURE__ */ (0,
|
|
3597
|
-
/* @__PURE__ */ (0,
|
|
3647
|
+
/* @__PURE__ */ (0, import_jsx_runtime65.jsx)("rect", { width: "14", height: "14", x: "8", y: "8", rx: "2", ry: "2" }),
|
|
3648
|
+
/* @__PURE__ */ (0, import_jsx_runtime65.jsx)("path", { d: "M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2" })
|
|
3598
3649
|
]
|
|
3599
3650
|
}
|
|
3600
3651
|
);
|
|
3601
3652
|
}
|
|
3602
3653
|
|
|
3603
3654
|
// src/components/icons/corner-down-right/index.tsx
|
|
3604
|
-
var
|
|
3655
|
+
var import_jsx_runtime66 = require("react/jsx-runtime");
|
|
3605
3656
|
function CornerDownRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3606
|
-
return /* @__PURE__ */ (0,
|
|
3657
|
+
return /* @__PURE__ */ (0, import_jsx_runtime66.jsxs)(
|
|
3607
3658
|
"svg",
|
|
3608
3659
|
{
|
|
3609
3660
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3618,17 +3669,17 @@ function CornerDownRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest })
|
|
|
3618
3669
|
"aria-hidden": "true",
|
|
3619
3670
|
...rest,
|
|
3620
3671
|
children: [
|
|
3621
|
-
/* @__PURE__ */ (0,
|
|
3622
|
-
/* @__PURE__ */ (0,
|
|
3672
|
+
/* @__PURE__ */ (0, import_jsx_runtime66.jsx)("polyline", { points: "15 10 20 15 15 20" }),
|
|
3673
|
+
/* @__PURE__ */ (0, import_jsx_runtime66.jsx)("path", { d: "M4 4v7a4 4 0 0 0 4 4h12" })
|
|
3623
3674
|
]
|
|
3624
3675
|
}
|
|
3625
3676
|
);
|
|
3626
3677
|
}
|
|
3627
3678
|
|
|
3628
3679
|
// src/components/icons/credit-card/index.tsx
|
|
3629
|
-
var
|
|
3680
|
+
var import_jsx_runtime67 = require("react/jsx-runtime");
|
|
3630
3681
|
function CreditCardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3631
|
-
return /* @__PURE__ */ (0,
|
|
3682
|
+
return /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)(
|
|
3632
3683
|
"svg",
|
|
3633
3684
|
{
|
|
3634
3685
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3643,17 +3694,17 @@ function CreditCardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3643
3694
|
"aria-hidden": "true",
|
|
3644
3695
|
...rest,
|
|
3645
3696
|
children: [
|
|
3646
|
-
/* @__PURE__ */ (0,
|
|
3647
|
-
/* @__PURE__ */ (0,
|
|
3697
|
+
/* @__PURE__ */ (0, import_jsx_runtime67.jsx)("rect", { width: "20", height: "14", x: "2", y: "5", rx: "2" }),
|
|
3698
|
+
/* @__PURE__ */ (0, import_jsx_runtime67.jsx)("line", { x1: "2", x2: "22", y1: "10", y2: "10" })
|
|
3648
3699
|
]
|
|
3649
3700
|
}
|
|
3650
3701
|
);
|
|
3651
3702
|
}
|
|
3652
3703
|
|
|
3653
3704
|
// src/components/icons/dollar-sign/index.tsx
|
|
3654
|
-
var
|
|
3705
|
+
var import_jsx_runtime68 = require("react/jsx-runtime");
|
|
3655
3706
|
function DollarSignIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3656
|
-
return /* @__PURE__ */ (0,
|
|
3707
|
+
return /* @__PURE__ */ (0, import_jsx_runtime68.jsxs)(
|
|
3657
3708
|
"svg",
|
|
3658
3709
|
{
|
|
3659
3710
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3668,17 +3719,17 @@ function DollarSignIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3668
3719
|
"aria-hidden": "true",
|
|
3669
3720
|
...rest,
|
|
3670
3721
|
children: [
|
|
3671
|
-
/* @__PURE__ */ (0,
|
|
3672
|
-
/* @__PURE__ */ (0,
|
|
3722
|
+
/* @__PURE__ */ (0, import_jsx_runtime68.jsx)("line", { x1: "12", x2: "12", y1: "2", y2: "22" }),
|
|
3723
|
+
/* @__PURE__ */ (0, import_jsx_runtime68.jsx)("path", { d: "M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6" })
|
|
3673
3724
|
]
|
|
3674
3725
|
}
|
|
3675
3726
|
);
|
|
3676
3727
|
}
|
|
3677
3728
|
|
|
3678
3729
|
// src/components/icons/download/index.tsx
|
|
3679
|
-
var
|
|
3730
|
+
var import_jsx_runtime69 = require("react/jsx-runtime");
|
|
3680
3731
|
function DownloadIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3681
|
-
return /* @__PURE__ */ (0,
|
|
3732
|
+
return /* @__PURE__ */ (0, import_jsx_runtime69.jsxs)(
|
|
3682
3733
|
"svg",
|
|
3683
3734
|
{
|
|
3684
3735
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3693,18 +3744,18 @@ function DownloadIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3693
3744
|
"aria-hidden": "true",
|
|
3694
3745
|
...rest,
|
|
3695
3746
|
children: [
|
|
3696
|
-
/* @__PURE__ */ (0,
|
|
3697
|
-
/* @__PURE__ */ (0,
|
|
3698
|
-
/* @__PURE__ */ (0,
|
|
3747
|
+
/* @__PURE__ */ (0, import_jsx_runtime69.jsx)("path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" }),
|
|
3748
|
+
/* @__PURE__ */ (0, import_jsx_runtime69.jsx)("polyline", { points: "7 10 12 15 17 10" }),
|
|
3749
|
+
/* @__PURE__ */ (0, import_jsx_runtime69.jsx)("line", { x1: "12", x2: "12", y1: "15", y2: "3" })
|
|
3699
3750
|
]
|
|
3700
3751
|
}
|
|
3701
3752
|
);
|
|
3702
3753
|
}
|
|
3703
3754
|
|
|
3704
3755
|
// src/components/icons/external-link/index.tsx
|
|
3705
|
-
var
|
|
3756
|
+
var import_jsx_runtime70 = require("react/jsx-runtime");
|
|
3706
3757
|
function ExternalLinkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3707
|
-
return /* @__PURE__ */ (0,
|
|
3758
|
+
return /* @__PURE__ */ (0, import_jsx_runtime70.jsxs)(
|
|
3708
3759
|
"svg",
|
|
3709
3760
|
{
|
|
3710
3761
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3719,18 +3770,18 @@ function ExternalLinkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3719
3770
|
"aria-hidden": "true",
|
|
3720
3771
|
...rest,
|
|
3721
3772
|
children: [
|
|
3722
|
-
/* @__PURE__ */ (0,
|
|
3723
|
-
/* @__PURE__ */ (0,
|
|
3724
|
-
/* @__PURE__ */ (0,
|
|
3773
|
+
/* @__PURE__ */ (0, import_jsx_runtime70.jsx)("path", { d: "M15 3h6v6" }),
|
|
3774
|
+
/* @__PURE__ */ (0, import_jsx_runtime70.jsx)("path", { d: "M10 14 21 3" }),
|
|
3775
|
+
/* @__PURE__ */ (0, import_jsx_runtime70.jsx)("path", { d: "M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6" })
|
|
3725
3776
|
]
|
|
3726
3777
|
}
|
|
3727
3778
|
);
|
|
3728
3779
|
}
|
|
3729
3780
|
|
|
3730
3781
|
// src/components/icons/file/index.tsx
|
|
3731
|
-
var
|
|
3782
|
+
var import_jsx_runtime71 = require("react/jsx-runtime");
|
|
3732
3783
|
function FileIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3733
|
-
return /* @__PURE__ */ (0,
|
|
3784
|
+
return /* @__PURE__ */ (0, import_jsx_runtime71.jsxs)(
|
|
3734
3785
|
"svg",
|
|
3735
3786
|
{
|
|
3736
3787
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3745,17 +3796,17 @@ function FileIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3745
3796
|
"aria-hidden": "true",
|
|
3746
3797
|
...rest,
|
|
3747
3798
|
children: [
|
|
3748
|
-
/* @__PURE__ */ (0,
|
|
3749
|
-
/* @__PURE__ */ (0,
|
|
3799
|
+
/* @__PURE__ */ (0, import_jsx_runtime71.jsx)("path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" }),
|
|
3800
|
+
/* @__PURE__ */ (0, import_jsx_runtime71.jsx)("path", { d: "M14 2v4a2 2 0 0 0 2 2h4" })
|
|
3750
3801
|
]
|
|
3751
3802
|
}
|
|
3752
3803
|
);
|
|
3753
3804
|
}
|
|
3754
3805
|
|
|
3755
3806
|
// src/components/icons/file-text/index.tsx
|
|
3756
|
-
var
|
|
3807
|
+
var import_jsx_runtime72 = require("react/jsx-runtime");
|
|
3757
3808
|
function FileTextIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3758
|
-
return /* @__PURE__ */ (0,
|
|
3809
|
+
return /* @__PURE__ */ (0, import_jsx_runtime72.jsxs)(
|
|
3759
3810
|
"svg",
|
|
3760
3811
|
{
|
|
3761
3812
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3770,20 +3821,20 @@ function FileTextIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3770
3821
|
"aria-hidden": "true",
|
|
3771
3822
|
...rest,
|
|
3772
3823
|
children: [
|
|
3773
|
-
/* @__PURE__ */ (0,
|
|
3774
|
-
/* @__PURE__ */ (0,
|
|
3775
|
-
/* @__PURE__ */ (0,
|
|
3776
|
-
/* @__PURE__ */ (0,
|
|
3777
|
-
/* @__PURE__ */ (0,
|
|
3824
|
+
/* @__PURE__ */ (0, import_jsx_runtime72.jsx)("path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" }),
|
|
3825
|
+
/* @__PURE__ */ (0, import_jsx_runtime72.jsx)("path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }),
|
|
3826
|
+
/* @__PURE__ */ (0, import_jsx_runtime72.jsx)("path", { d: "M16 13H8" }),
|
|
3827
|
+
/* @__PURE__ */ (0, import_jsx_runtime72.jsx)("path", { d: "M16 17H8" }),
|
|
3828
|
+
/* @__PURE__ */ (0, import_jsx_runtime72.jsx)("path", { d: "M10 9H8" })
|
|
3778
3829
|
]
|
|
3779
3830
|
}
|
|
3780
3831
|
);
|
|
3781
3832
|
}
|
|
3782
3833
|
|
|
3783
3834
|
// src/components/icons/filter/index.tsx
|
|
3784
|
-
var
|
|
3835
|
+
var import_jsx_runtime73 = require("react/jsx-runtime");
|
|
3785
3836
|
function FilterIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3786
|
-
return /* @__PURE__ */ (0,
|
|
3837
|
+
return /* @__PURE__ */ (0, import_jsx_runtime73.jsx)(
|
|
3787
3838
|
"svg",
|
|
3788
3839
|
{
|
|
3789
3840
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3797,15 +3848,15 @@ function FilterIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3797
3848
|
strokeLinejoin: "round",
|
|
3798
3849
|
"aria-hidden": "true",
|
|
3799
3850
|
...rest,
|
|
3800
|
-
children: /* @__PURE__ */ (0,
|
|
3851
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime73.jsx)("polygon", { points: "22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3" })
|
|
3801
3852
|
}
|
|
3802
3853
|
);
|
|
3803
3854
|
}
|
|
3804
3855
|
|
|
3805
3856
|
// src/components/icons/fingerprint/index.tsx
|
|
3806
|
-
var
|
|
3857
|
+
var import_jsx_runtime74 = require("react/jsx-runtime");
|
|
3807
3858
|
function FingerprintIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3808
|
-
return /* @__PURE__ */ (0,
|
|
3859
|
+
return /* @__PURE__ */ (0, import_jsx_runtime74.jsxs)(
|
|
3809
3860
|
"svg",
|
|
3810
3861
|
{
|
|
3811
3862
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3820,24 +3871,24 @@ function FingerprintIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3820
3871
|
"aria-hidden": "true",
|
|
3821
3872
|
...rest,
|
|
3822
3873
|
children: [
|
|
3823
|
-
/* @__PURE__ */ (0,
|
|
3824
|
-
/* @__PURE__ */ (0,
|
|
3825
|
-
/* @__PURE__ */ (0,
|
|
3826
|
-
/* @__PURE__ */ (0,
|
|
3827
|
-
/* @__PURE__ */ (0,
|
|
3828
|
-
/* @__PURE__ */ (0,
|
|
3829
|
-
/* @__PURE__ */ (0,
|
|
3830
|
-
/* @__PURE__ */ (0,
|
|
3831
|
-
/* @__PURE__ */ (0,
|
|
3874
|
+
/* @__PURE__ */ (0, import_jsx_runtime74.jsx)("path", { d: "M2 12C2 6.5 6.5 2 12 2a10 10 0 0 1 8 4" }),
|
|
3875
|
+
/* @__PURE__ */ (0, import_jsx_runtime74.jsx)("path", { d: "M5 19.5C5.5 18 6 15 6 12c0-.7.12-1.37.34-2" }),
|
|
3876
|
+
/* @__PURE__ */ (0, import_jsx_runtime74.jsx)("path", { d: "M17.29 21.02c.12-.6.43-2.3.5-3.02" }),
|
|
3877
|
+
/* @__PURE__ */ (0, import_jsx_runtime74.jsx)("path", { d: "M12 10a2 2 0 0 0-2 2c0 1.02-.1 2.51-.26 4" }),
|
|
3878
|
+
/* @__PURE__ */ (0, import_jsx_runtime74.jsx)("path", { d: "M8.65 22c.21-.66.45-1.32.57-2" }),
|
|
3879
|
+
/* @__PURE__ */ (0, import_jsx_runtime74.jsx)("path", { d: "M14 13.12c0 2.38 0 6.38-1 8.88" }),
|
|
3880
|
+
/* @__PURE__ */ (0, import_jsx_runtime74.jsx)("path", { d: "M2 16h.01" }),
|
|
3881
|
+
/* @__PURE__ */ (0, import_jsx_runtime74.jsx)("path", { d: "M21.8 16c.2-2 .131-5.354 0-6" }),
|
|
3882
|
+
/* @__PURE__ */ (0, import_jsx_runtime74.jsx)("path", { d: "M9 6.8a6 6 0 0 1 9 5.2c0 .47 0 1.17-.02 2" })
|
|
3832
3883
|
]
|
|
3833
3884
|
}
|
|
3834
3885
|
);
|
|
3835
3886
|
}
|
|
3836
3887
|
|
|
3837
3888
|
// src/components/icons/folder/index.tsx
|
|
3838
|
-
var
|
|
3889
|
+
var import_jsx_runtime75 = require("react/jsx-runtime");
|
|
3839
3890
|
function FolderIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3840
|
-
return /* @__PURE__ */ (0,
|
|
3891
|
+
return /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
3841
3892
|
"svg",
|
|
3842
3893
|
{
|
|
3843
3894
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3851,15 +3902,15 @@ function FolderIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3851
3902
|
strokeLinejoin: "round",
|
|
3852
3903
|
"aria-hidden": "true",
|
|
3853
3904
|
...rest,
|
|
3854
|
-
children: /* @__PURE__ */ (0,
|
|
3905
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("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" })
|
|
3855
3906
|
}
|
|
3856
3907
|
);
|
|
3857
3908
|
}
|
|
3858
3909
|
|
|
3859
3910
|
// src/components/icons/folder-open/index.tsx
|
|
3860
|
-
var
|
|
3911
|
+
var import_jsx_runtime76 = require("react/jsx-runtime");
|
|
3861
3912
|
function FolderOpenIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3862
|
-
return /* @__PURE__ */ (0,
|
|
3913
|
+
return /* @__PURE__ */ (0, import_jsx_runtime76.jsx)(
|
|
3863
3914
|
"svg",
|
|
3864
3915
|
{
|
|
3865
3916
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3873,15 +3924,15 @@ function FolderOpenIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3873
3924
|
strokeLinejoin: "round",
|
|
3874
3925
|
"aria-hidden": "true",
|
|
3875
3926
|
...rest,
|
|
3876
|
-
children: /* @__PURE__ */ (0,
|
|
3927
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime76.jsx)("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" })
|
|
3877
3928
|
}
|
|
3878
3929
|
);
|
|
3879
3930
|
}
|
|
3880
3931
|
|
|
3881
3932
|
// src/components/icons/gift/index.tsx
|
|
3882
|
-
var
|
|
3933
|
+
var import_jsx_runtime77 = require("react/jsx-runtime");
|
|
3883
3934
|
function GiftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3884
|
-
return /* @__PURE__ */ (0,
|
|
3935
|
+
return /* @__PURE__ */ (0, import_jsx_runtime77.jsxs)(
|
|
3885
3936
|
"svg",
|
|
3886
3937
|
{
|
|
3887
3938
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3896,19 +3947,19 @@ function GiftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3896
3947
|
"aria-hidden": "true",
|
|
3897
3948
|
...rest,
|
|
3898
3949
|
children: [
|
|
3899
|
-
/* @__PURE__ */ (0,
|
|
3900
|
-
/* @__PURE__ */ (0,
|
|
3901
|
-
/* @__PURE__ */ (0,
|
|
3902
|
-
/* @__PURE__ */ (0,
|
|
3950
|
+
/* @__PURE__ */ (0, import_jsx_runtime77.jsx)("rect", { x: "3", y: "8", width: "18", height: "4", rx: "1" }),
|
|
3951
|
+
/* @__PURE__ */ (0, import_jsx_runtime77.jsx)("path", { d: "M12 8v13" }),
|
|
3952
|
+
/* @__PURE__ */ (0, import_jsx_runtime77.jsx)("path", { d: "M19 12v7a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2v-7" }),
|
|
3953
|
+
/* @__PURE__ */ (0, import_jsx_runtime77.jsx)("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" })
|
|
3903
3954
|
]
|
|
3904
3955
|
}
|
|
3905
3956
|
);
|
|
3906
3957
|
}
|
|
3907
3958
|
|
|
3908
3959
|
// src/components/icons/globe/index.tsx
|
|
3909
|
-
var
|
|
3960
|
+
var import_jsx_runtime78 = require("react/jsx-runtime");
|
|
3910
3961
|
function GlobeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3911
|
-
return /* @__PURE__ */ (0,
|
|
3962
|
+
return /* @__PURE__ */ (0, import_jsx_runtime78.jsxs)(
|
|
3912
3963
|
"svg",
|
|
3913
3964
|
{
|
|
3914
3965
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3923,18 +3974,18 @@ function GlobeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3923
3974
|
"aria-hidden": "true",
|
|
3924
3975
|
...rest,
|
|
3925
3976
|
children: [
|
|
3926
|
-
/* @__PURE__ */ (0,
|
|
3927
|
-
/* @__PURE__ */ (0,
|
|
3928
|
-
/* @__PURE__ */ (0,
|
|
3977
|
+
/* @__PURE__ */ (0, import_jsx_runtime78.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
|
|
3978
|
+
/* @__PURE__ */ (0, import_jsx_runtime78.jsx)("path", { d: "M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20" }),
|
|
3979
|
+
/* @__PURE__ */ (0, import_jsx_runtime78.jsx)("path", { d: "M2 12h20" })
|
|
3929
3980
|
]
|
|
3930
3981
|
}
|
|
3931
3982
|
);
|
|
3932
3983
|
}
|
|
3933
3984
|
|
|
3934
3985
|
// src/components/icons/grid/index.tsx
|
|
3935
|
-
var
|
|
3986
|
+
var import_jsx_runtime79 = require("react/jsx-runtime");
|
|
3936
3987
|
function GridIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3937
|
-
return /* @__PURE__ */ (0,
|
|
3988
|
+
return /* @__PURE__ */ (0, import_jsx_runtime79.jsxs)(
|
|
3938
3989
|
"svg",
|
|
3939
3990
|
{
|
|
3940
3991
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3949,20 +4000,20 @@ function GridIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3949
4000
|
"aria-hidden": "true",
|
|
3950
4001
|
...rest,
|
|
3951
4002
|
children: [
|
|
3952
|
-
/* @__PURE__ */ (0,
|
|
3953
|
-
/* @__PURE__ */ (0,
|
|
3954
|
-
/* @__PURE__ */ (0,
|
|
3955
|
-
/* @__PURE__ */ (0,
|
|
3956
|
-
/* @__PURE__ */ (0,
|
|
4003
|
+
/* @__PURE__ */ (0, import_jsx_runtime79.jsx)("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }),
|
|
4004
|
+
/* @__PURE__ */ (0, import_jsx_runtime79.jsx)("path", { d: "M3 9h18" }),
|
|
4005
|
+
/* @__PURE__ */ (0, import_jsx_runtime79.jsx)("path", { d: "M3 15h18" }),
|
|
4006
|
+
/* @__PURE__ */ (0, import_jsx_runtime79.jsx)("path", { d: "M9 3v18" }),
|
|
4007
|
+
/* @__PURE__ */ (0, import_jsx_runtime79.jsx)("path", { d: "M15 3v18" })
|
|
3957
4008
|
]
|
|
3958
4009
|
}
|
|
3959
4010
|
);
|
|
3960
4011
|
}
|
|
3961
4012
|
|
|
3962
4013
|
// src/components/icons/heart/index.tsx
|
|
3963
|
-
var
|
|
4014
|
+
var import_jsx_runtime80 = require("react/jsx-runtime");
|
|
3964
4015
|
function HeartIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3965
|
-
return /* @__PURE__ */ (0,
|
|
4016
|
+
return /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(
|
|
3966
4017
|
"svg",
|
|
3967
4018
|
{
|
|
3968
4019
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3976,15 +4027,15 @@ function HeartIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3976
4027
|
strokeLinejoin: "round",
|
|
3977
4028
|
"aria-hidden": "true",
|
|
3978
4029
|
...rest,
|
|
3979
|
-
children: /* @__PURE__ */ (0,
|
|
4030
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime80.jsx)("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" })
|
|
3980
4031
|
}
|
|
3981
4032
|
);
|
|
3982
4033
|
}
|
|
3983
4034
|
|
|
3984
4035
|
// src/components/icons/help-circle/index.tsx
|
|
3985
|
-
var
|
|
4036
|
+
var import_jsx_runtime81 = require("react/jsx-runtime");
|
|
3986
4037
|
function HelpCircleIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3987
|
-
return /* @__PURE__ */ (0,
|
|
4038
|
+
return /* @__PURE__ */ (0, import_jsx_runtime81.jsxs)(
|
|
3988
4039
|
"svg",
|
|
3989
4040
|
{
|
|
3990
4041
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3999,18 +4050,18 @@ function HelpCircleIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3999
4050
|
"aria-hidden": "true",
|
|
4000
4051
|
...rest,
|
|
4001
4052
|
children: [
|
|
4002
|
-
/* @__PURE__ */ (0,
|
|
4003
|
-
/* @__PURE__ */ (0,
|
|
4004
|
-
/* @__PURE__ */ (0,
|
|
4053
|
+
/* @__PURE__ */ (0, import_jsx_runtime81.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
|
|
4054
|
+
/* @__PURE__ */ (0, import_jsx_runtime81.jsx)("path", { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" }),
|
|
4055
|
+
/* @__PURE__ */ (0, import_jsx_runtime81.jsx)("path", { d: "M12 17h.01" })
|
|
4005
4056
|
]
|
|
4006
4057
|
}
|
|
4007
4058
|
);
|
|
4008
4059
|
}
|
|
4009
4060
|
|
|
4010
4061
|
// src/components/icons/home/index.tsx
|
|
4011
|
-
var
|
|
4062
|
+
var import_jsx_runtime82 = require("react/jsx-runtime");
|
|
4012
4063
|
function HomeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4013
|
-
return /* @__PURE__ */ (0,
|
|
4064
|
+
return /* @__PURE__ */ (0, import_jsx_runtime82.jsxs)(
|
|
4014
4065
|
"svg",
|
|
4015
4066
|
{
|
|
4016
4067
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4025,17 +4076,17 @@ function HomeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4025
4076
|
"aria-hidden": "true",
|
|
4026
4077
|
...rest,
|
|
4027
4078
|
children: [
|
|
4028
|
-
/* @__PURE__ */ (0,
|
|
4029
|
-
/* @__PURE__ */ (0,
|
|
4079
|
+
/* @__PURE__ */ (0, import_jsx_runtime82.jsx)("path", { d: "m3 9 9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z" }),
|
|
4080
|
+
/* @__PURE__ */ (0, import_jsx_runtime82.jsx)("polyline", { points: "9 22 9 12 15 12 15 22" })
|
|
4030
4081
|
]
|
|
4031
4082
|
}
|
|
4032
4083
|
);
|
|
4033
4084
|
}
|
|
4034
4085
|
|
|
4035
4086
|
// src/components/icons/image/index.tsx
|
|
4036
|
-
var
|
|
4087
|
+
var import_jsx_runtime83 = require("react/jsx-runtime");
|
|
4037
4088
|
function ImageIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4038
|
-
return /* @__PURE__ */ (0,
|
|
4089
|
+
return /* @__PURE__ */ (0, import_jsx_runtime83.jsxs)(
|
|
4039
4090
|
"svg",
|
|
4040
4091
|
{
|
|
4041
4092
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4050,18 +4101,18 @@ function ImageIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4050
4101
|
"aria-hidden": "true",
|
|
4051
4102
|
...rest,
|
|
4052
4103
|
children: [
|
|
4053
|
-
/* @__PURE__ */ (0,
|
|
4054
|
-
/* @__PURE__ */ (0,
|
|
4055
|
-
/* @__PURE__ */ (0,
|
|
4104
|
+
/* @__PURE__ */ (0, import_jsx_runtime83.jsx)("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", ry: "2" }),
|
|
4105
|
+
/* @__PURE__ */ (0, import_jsx_runtime83.jsx)("circle", { cx: "9", cy: "9", r: "2" }),
|
|
4106
|
+
/* @__PURE__ */ (0, import_jsx_runtime83.jsx)("path", { d: "m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21" })
|
|
4056
4107
|
]
|
|
4057
4108
|
}
|
|
4058
4109
|
);
|
|
4059
4110
|
}
|
|
4060
4111
|
|
|
4061
4112
|
// src/components/icons/inbox/index.tsx
|
|
4062
|
-
var
|
|
4113
|
+
var import_jsx_runtime84 = require("react/jsx-runtime");
|
|
4063
4114
|
function InboxIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4064
|
-
return /* @__PURE__ */ (0,
|
|
4115
|
+
return /* @__PURE__ */ (0, import_jsx_runtime84.jsxs)(
|
|
4065
4116
|
"svg",
|
|
4066
4117
|
{
|
|
4067
4118
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4076,17 +4127,17 @@ function InboxIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4076
4127
|
"aria-hidden": "true",
|
|
4077
4128
|
...rest,
|
|
4078
4129
|
children: [
|
|
4079
|
-
/* @__PURE__ */ (0,
|
|
4080
|
-
/* @__PURE__ */ (0,
|
|
4130
|
+
/* @__PURE__ */ (0, import_jsx_runtime84.jsx)("polyline", { points: "22 12 16 12 14 15 10 15 8 12 2 12" }),
|
|
4131
|
+
/* @__PURE__ */ (0, import_jsx_runtime84.jsx)("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" })
|
|
4081
4132
|
]
|
|
4082
4133
|
}
|
|
4083
4134
|
);
|
|
4084
4135
|
}
|
|
4085
4136
|
|
|
4086
4137
|
// src/components/icons/key/index.tsx
|
|
4087
|
-
var
|
|
4138
|
+
var import_jsx_runtime85 = require("react/jsx-runtime");
|
|
4088
4139
|
function KeyIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4089
|
-
return /* @__PURE__ */ (0,
|
|
4140
|
+
return /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)(
|
|
4090
4141
|
"svg",
|
|
4091
4142
|
{
|
|
4092
4143
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4101,18 +4152,18 @@ function KeyIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4101
4152
|
"aria-hidden": "true",
|
|
4102
4153
|
...rest,
|
|
4103
4154
|
children: [
|
|
4104
|
-
/* @__PURE__ */ (0,
|
|
4105
|
-
/* @__PURE__ */ (0,
|
|
4106
|
-
/* @__PURE__ */ (0,
|
|
4155
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)("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" }),
|
|
4156
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)("path", { d: "m21 2-9.6 9.6" }),
|
|
4157
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)("circle", { cx: "7.5", cy: "15.5", r: "5.5" })
|
|
4107
4158
|
]
|
|
4108
4159
|
}
|
|
4109
4160
|
);
|
|
4110
4161
|
}
|
|
4111
4162
|
|
|
4112
4163
|
// src/components/icons/layout/index.tsx
|
|
4113
|
-
var
|
|
4164
|
+
var import_jsx_runtime86 = require("react/jsx-runtime");
|
|
4114
4165
|
function LayoutIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4115
|
-
return /* @__PURE__ */ (0,
|
|
4166
|
+
return /* @__PURE__ */ (0, import_jsx_runtime86.jsxs)(
|
|
4116
4167
|
"svg",
|
|
4117
4168
|
{
|
|
4118
4169
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4127,19 +4178,19 @@ function LayoutIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4127
4178
|
"aria-hidden": "true",
|
|
4128
4179
|
...rest,
|
|
4129
4180
|
children: [
|
|
4130
|
-
/* @__PURE__ */ (0,
|
|
4131
|
-
/* @__PURE__ */ (0,
|
|
4132
|
-
/* @__PURE__ */ (0,
|
|
4133
|
-
/* @__PURE__ */ (0,
|
|
4181
|
+
/* @__PURE__ */ (0, import_jsx_runtime86.jsx)("rect", { width: "7", height: "9", x: "3", y: "3", rx: "1" }),
|
|
4182
|
+
/* @__PURE__ */ (0, import_jsx_runtime86.jsx)("rect", { width: "7", height: "5", x: "14", y: "3", rx: "1" }),
|
|
4183
|
+
/* @__PURE__ */ (0, import_jsx_runtime86.jsx)("rect", { width: "7", height: "9", x: "14", y: "12", rx: "1" }),
|
|
4184
|
+
/* @__PURE__ */ (0, import_jsx_runtime86.jsx)("rect", { width: "7", height: "5", x: "3", y: "16", rx: "1" })
|
|
4134
4185
|
]
|
|
4135
4186
|
}
|
|
4136
4187
|
);
|
|
4137
4188
|
}
|
|
4138
4189
|
|
|
4139
4190
|
// src/components/icons/link/index.tsx
|
|
4140
|
-
var
|
|
4191
|
+
var import_jsx_runtime87 = require("react/jsx-runtime");
|
|
4141
4192
|
function LinkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4142
|
-
return /* @__PURE__ */ (0,
|
|
4193
|
+
return /* @__PURE__ */ (0, import_jsx_runtime87.jsxs)(
|
|
4143
4194
|
"svg",
|
|
4144
4195
|
{
|
|
4145
4196
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4154,17 +4205,17 @@ function LinkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4154
4205
|
"aria-hidden": "true",
|
|
4155
4206
|
...rest,
|
|
4156
4207
|
children: [
|
|
4157
|
-
/* @__PURE__ */ (0,
|
|
4158
|
-
/* @__PURE__ */ (0,
|
|
4208
|
+
/* @__PURE__ */ (0, import_jsx_runtime87.jsx)("path", { d: "M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71" }),
|
|
4209
|
+
/* @__PURE__ */ (0, import_jsx_runtime87.jsx)("path", { d: "M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71" })
|
|
4159
4210
|
]
|
|
4160
4211
|
}
|
|
4161
4212
|
);
|
|
4162
4213
|
}
|
|
4163
4214
|
|
|
4164
4215
|
// src/components/icons/list/index.tsx
|
|
4165
|
-
var
|
|
4216
|
+
var import_jsx_runtime88 = require("react/jsx-runtime");
|
|
4166
4217
|
function ListIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4167
|
-
return /* @__PURE__ */ (0,
|
|
4218
|
+
return /* @__PURE__ */ (0, import_jsx_runtime88.jsxs)(
|
|
4168
4219
|
"svg",
|
|
4169
4220
|
{
|
|
4170
4221
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4179,21 +4230,21 @@ function ListIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4179
4230
|
"aria-hidden": "true",
|
|
4180
4231
|
...rest,
|
|
4181
4232
|
children: [
|
|
4182
|
-
/* @__PURE__ */ (0,
|
|
4183
|
-
/* @__PURE__ */ (0,
|
|
4184
|
-
/* @__PURE__ */ (0,
|
|
4185
|
-
/* @__PURE__ */ (0,
|
|
4186
|
-
/* @__PURE__ */ (0,
|
|
4187
|
-
/* @__PURE__ */ (0,
|
|
4233
|
+
/* @__PURE__ */ (0, import_jsx_runtime88.jsx)("line", { x1: "8", x2: "21", y1: "6", y2: "6" }),
|
|
4234
|
+
/* @__PURE__ */ (0, import_jsx_runtime88.jsx)("line", { x1: "8", x2: "21", y1: "12", y2: "12" }),
|
|
4235
|
+
/* @__PURE__ */ (0, import_jsx_runtime88.jsx)("line", { x1: "8", x2: "21", y1: "18", y2: "18" }),
|
|
4236
|
+
/* @__PURE__ */ (0, import_jsx_runtime88.jsx)("line", { x1: "3", x2: "3.01", y1: "6", y2: "6" }),
|
|
4237
|
+
/* @__PURE__ */ (0, import_jsx_runtime88.jsx)("line", { x1: "3", x2: "3.01", y1: "12", y2: "12" }),
|
|
4238
|
+
/* @__PURE__ */ (0, import_jsx_runtime88.jsx)("line", { x1: "3", x2: "3.01", y1: "18", y2: "18" })
|
|
4188
4239
|
]
|
|
4189
4240
|
}
|
|
4190
4241
|
);
|
|
4191
4242
|
}
|
|
4192
4243
|
|
|
4193
4244
|
// src/components/icons/loader/index.tsx
|
|
4194
|
-
var
|
|
4245
|
+
var import_jsx_runtime89 = require("react/jsx-runtime");
|
|
4195
4246
|
function LoaderIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4196
|
-
return /* @__PURE__ */ (0,
|
|
4247
|
+
return /* @__PURE__ */ (0, import_jsx_runtime89.jsxs)(
|
|
4197
4248
|
"svg",
|
|
4198
4249
|
{
|
|
4199
4250
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4208,23 +4259,23 @@ function LoaderIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4208
4259
|
"aria-hidden": "true",
|
|
4209
4260
|
...rest,
|
|
4210
4261
|
children: [
|
|
4211
|
-
/* @__PURE__ */ (0,
|
|
4212
|
-
/* @__PURE__ */ (0,
|
|
4213
|
-
/* @__PURE__ */ (0,
|
|
4214
|
-
/* @__PURE__ */ (0,
|
|
4215
|
-
/* @__PURE__ */ (0,
|
|
4216
|
-
/* @__PURE__ */ (0,
|
|
4217
|
-
/* @__PURE__ */ (0,
|
|
4218
|
-
/* @__PURE__ */ (0,
|
|
4262
|
+
/* @__PURE__ */ (0, import_jsx_runtime89.jsx)("line", { x1: "12", x2: "12", y1: "2", y2: "6" }),
|
|
4263
|
+
/* @__PURE__ */ (0, import_jsx_runtime89.jsx)("line", { x1: "12", x2: "12", y1: "18", y2: "22" }),
|
|
4264
|
+
/* @__PURE__ */ (0, import_jsx_runtime89.jsx)("line", { x1: "4.93", x2: "7.76", y1: "4.93", y2: "7.76" }),
|
|
4265
|
+
/* @__PURE__ */ (0, import_jsx_runtime89.jsx)("line", { x1: "16.24", x2: "19.07", y1: "16.24", y2: "19.07" }),
|
|
4266
|
+
/* @__PURE__ */ (0, import_jsx_runtime89.jsx)("line", { x1: "2", x2: "6", y1: "12", y2: "12" }),
|
|
4267
|
+
/* @__PURE__ */ (0, import_jsx_runtime89.jsx)("line", { x1: "18", x2: "22", y1: "12", y2: "12" }),
|
|
4268
|
+
/* @__PURE__ */ (0, import_jsx_runtime89.jsx)("line", { x1: "4.93", x2: "7.76", y1: "19.07", y2: "16.24" }),
|
|
4269
|
+
/* @__PURE__ */ (0, import_jsx_runtime89.jsx)("line", { x1: "16.24", x2: "19.07", y1: "7.76", y2: "4.93" })
|
|
4219
4270
|
]
|
|
4220
4271
|
}
|
|
4221
4272
|
);
|
|
4222
4273
|
}
|
|
4223
4274
|
|
|
4224
4275
|
// src/components/icons/lock/index.tsx
|
|
4225
|
-
var
|
|
4276
|
+
var import_jsx_runtime90 = require("react/jsx-runtime");
|
|
4226
4277
|
function LockIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4227
|
-
return /* @__PURE__ */ (0,
|
|
4278
|
+
return /* @__PURE__ */ (0, import_jsx_runtime90.jsxs)(
|
|
4228
4279
|
"svg",
|
|
4229
4280
|
{
|
|
4230
4281
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4239,17 +4290,17 @@ function LockIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4239
4290
|
"aria-hidden": "true",
|
|
4240
4291
|
...rest,
|
|
4241
4292
|
children: [
|
|
4242
|
-
/* @__PURE__ */ (0,
|
|
4243
|
-
/* @__PURE__ */ (0,
|
|
4293
|
+
/* @__PURE__ */ (0, import_jsx_runtime90.jsx)("rect", { width: "18", height: "11", x: "3", y: "11", rx: "2", ry: "2" }),
|
|
4294
|
+
/* @__PURE__ */ (0, import_jsx_runtime90.jsx)("path", { d: "M7 11V7a5 5 0 0 1 10 0v4" })
|
|
4244
4295
|
]
|
|
4245
4296
|
}
|
|
4246
4297
|
);
|
|
4247
4298
|
}
|
|
4248
4299
|
|
|
4249
4300
|
// src/components/icons/log-in/index.tsx
|
|
4250
|
-
var
|
|
4301
|
+
var import_jsx_runtime91 = require("react/jsx-runtime");
|
|
4251
4302
|
function LogInIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4252
|
-
return /* @__PURE__ */ (0,
|
|
4303
|
+
return /* @__PURE__ */ (0, import_jsx_runtime91.jsxs)(
|
|
4253
4304
|
"svg",
|
|
4254
4305
|
{
|
|
4255
4306
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4264,18 +4315,18 @@ function LogInIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4264
4315
|
"aria-hidden": "true",
|
|
4265
4316
|
...rest,
|
|
4266
4317
|
children: [
|
|
4267
|
-
/* @__PURE__ */ (0,
|
|
4268
|
-
/* @__PURE__ */ (0,
|
|
4269
|
-
/* @__PURE__ */ (0,
|
|
4318
|
+
/* @__PURE__ */ (0, import_jsx_runtime91.jsx)("path", { d: "M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4" }),
|
|
4319
|
+
/* @__PURE__ */ (0, import_jsx_runtime91.jsx)("polyline", { points: "10 17 15 12 10 7" }),
|
|
4320
|
+
/* @__PURE__ */ (0, import_jsx_runtime91.jsx)("line", { x1: "15", x2: "3", y1: "12", y2: "12" })
|
|
4270
4321
|
]
|
|
4271
4322
|
}
|
|
4272
4323
|
);
|
|
4273
4324
|
}
|
|
4274
4325
|
|
|
4275
4326
|
// src/components/icons/log-out/index.tsx
|
|
4276
|
-
var
|
|
4327
|
+
var import_jsx_runtime92 = require("react/jsx-runtime");
|
|
4277
4328
|
function LogOutIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4278
|
-
return /* @__PURE__ */ (0,
|
|
4329
|
+
return /* @__PURE__ */ (0, import_jsx_runtime92.jsxs)(
|
|
4279
4330
|
"svg",
|
|
4280
4331
|
{
|
|
4281
4332
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4290,18 +4341,18 @@ function LogOutIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4290
4341
|
"aria-hidden": "true",
|
|
4291
4342
|
...rest,
|
|
4292
4343
|
children: [
|
|
4293
|
-
/* @__PURE__ */ (0,
|
|
4294
|
-
/* @__PURE__ */ (0,
|
|
4295
|
-
/* @__PURE__ */ (0,
|
|
4344
|
+
/* @__PURE__ */ (0, import_jsx_runtime92.jsx)("path", { d: "M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4" }),
|
|
4345
|
+
/* @__PURE__ */ (0, import_jsx_runtime92.jsx)("polyline", { points: "16 17 21 12 16 7" }),
|
|
4346
|
+
/* @__PURE__ */ (0, import_jsx_runtime92.jsx)("line", { x1: "21", x2: "9", y1: "12", y2: "12" })
|
|
4296
4347
|
]
|
|
4297
4348
|
}
|
|
4298
4349
|
);
|
|
4299
4350
|
}
|
|
4300
4351
|
|
|
4301
4352
|
// src/components/icons/mail/index.tsx
|
|
4302
|
-
var
|
|
4353
|
+
var import_jsx_runtime93 = require("react/jsx-runtime");
|
|
4303
4354
|
function MailIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4304
|
-
return /* @__PURE__ */ (0,
|
|
4355
|
+
return /* @__PURE__ */ (0, import_jsx_runtime93.jsxs)(
|
|
4305
4356
|
"svg",
|
|
4306
4357
|
{
|
|
4307
4358
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4316,17 +4367,17 @@ function MailIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4316
4367
|
"aria-hidden": "true",
|
|
4317
4368
|
...rest,
|
|
4318
4369
|
children: [
|
|
4319
|
-
/* @__PURE__ */ (0,
|
|
4320
|
-
/* @__PURE__ */ (0,
|
|
4370
|
+
/* @__PURE__ */ (0, import_jsx_runtime93.jsx)("rect", { width: "20", height: "16", x: "2", y: "4", rx: "2" }),
|
|
4371
|
+
/* @__PURE__ */ (0, import_jsx_runtime93.jsx)("path", { d: "m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7" })
|
|
4321
4372
|
]
|
|
4322
4373
|
}
|
|
4323
4374
|
);
|
|
4324
4375
|
}
|
|
4325
4376
|
|
|
4326
4377
|
// src/components/icons/map-pin/index.tsx
|
|
4327
|
-
var
|
|
4378
|
+
var import_jsx_runtime94 = require("react/jsx-runtime");
|
|
4328
4379
|
function MapPinIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4329
|
-
return /* @__PURE__ */ (0,
|
|
4380
|
+
return /* @__PURE__ */ (0, import_jsx_runtime94.jsxs)(
|
|
4330
4381
|
"svg",
|
|
4331
4382
|
{
|
|
4332
4383
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4341,17 +4392,17 @@ function MapPinIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4341
4392
|
"aria-hidden": "true",
|
|
4342
4393
|
...rest,
|
|
4343
4394
|
children: [
|
|
4344
|
-
/* @__PURE__ */ (0,
|
|
4345
|
-
/* @__PURE__ */ (0,
|
|
4395
|
+
/* @__PURE__ */ (0, import_jsx_runtime94.jsx)("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" }),
|
|
4396
|
+
/* @__PURE__ */ (0, import_jsx_runtime94.jsx)("circle", { cx: "12", cy: "10", r: "3" })
|
|
4346
4397
|
]
|
|
4347
4398
|
}
|
|
4348
4399
|
);
|
|
4349
4400
|
}
|
|
4350
4401
|
|
|
4351
4402
|
// src/components/icons/maximize/index.tsx
|
|
4352
|
-
var
|
|
4403
|
+
var import_jsx_runtime95 = require("react/jsx-runtime");
|
|
4353
4404
|
function MaximizeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4354
|
-
return /* @__PURE__ */ (0,
|
|
4405
|
+
return /* @__PURE__ */ (0, import_jsx_runtime95.jsxs)(
|
|
4355
4406
|
"svg",
|
|
4356
4407
|
{
|
|
4357
4408
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4366,19 +4417,19 @@ function MaximizeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4366
4417
|
"aria-hidden": "true",
|
|
4367
4418
|
...rest,
|
|
4368
4419
|
children: [
|
|
4369
|
-
/* @__PURE__ */ (0,
|
|
4370
|
-
/* @__PURE__ */ (0,
|
|
4371
|
-
/* @__PURE__ */ (0,
|
|
4372
|
-
/* @__PURE__ */ (0,
|
|
4420
|
+
/* @__PURE__ */ (0, import_jsx_runtime95.jsx)("path", { d: "M8 3H5a2 2 0 0 0-2 2v3" }),
|
|
4421
|
+
/* @__PURE__ */ (0, import_jsx_runtime95.jsx)("path", { d: "M21 8V5a2 2 0 0 0-2-2h-3" }),
|
|
4422
|
+
/* @__PURE__ */ (0, import_jsx_runtime95.jsx)("path", { d: "M3 16v3a2 2 0 0 0 2 2h3" }),
|
|
4423
|
+
/* @__PURE__ */ (0, import_jsx_runtime95.jsx)("path", { d: "M16 21h3a2 2 0 0 0 2-2v-3" })
|
|
4373
4424
|
]
|
|
4374
4425
|
}
|
|
4375
4426
|
);
|
|
4376
4427
|
}
|
|
4377
4428
|
|
|
4378
4429
|
// src/components/icons/menu/index.tsx
|
|
4379
|
-
var
|
|
4430
|
+
var import_jsx_runtime96 = require("react/jsx-runtime");
|
|
4380
4431
|
function MenuIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4381
|
-
return /* @__PURE__ */ (0,
|
|
4432
|
+
return /* @__PURE__ */ (0, import_jsx_runtime96.jsxs)(
|
|
4382
4433
|
"svg",
|
|
4383
4434
|
{
|
|
4384
4435
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4393,18 +4444,18 @@ function MenuIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4393
4444
|
"aria-hidden": "true",
|
|
4394
4445
|
...rest,
|
|
4395
4446
|
children: [
|
|
4396
|
-
/* @__PURE__ */ (0,
|
|
4397
|
-
/* @__PURE__ */ (0,
|
|
4398
|
-
/* @__PURE__ */ (0,
|
|
4447
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("line", { x1: "4", x2: "20", y1: "12", y2: "12" }),
|
|
4448
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("line", { x1: "4", x2: "20", y1: "6", y2: "6" }),
|
|
4449
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("line", { x1: "4", x2: "20", y1: "18", y2: "18" })
|
|
4399
4450
|
]
|
|
4400
4451
|
}
|
|
4401
4452
|
);
|
|
4402
4453
|
}
|
|
4403
4454
|
|
|
4404
4455
|
// src/components/icons/message-circle/index.tsx
|
|
4405
|
-
var
|
|
4456
|
+
var import_jsx_runtime97 = require("react/jsx-runtime");
|
|
4406
4457
|
function MessageCircleIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4407
|
-
return /* @__PURE__ */ (0,
|
|
4458
|
+
return /* @__PURE__ */ (0, import_jsx_runtime97.jsx)(
|
|
4408
4459
|
"svg",
|
|
4409
4460
|
{
|
|
4410
4461
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4418,15 +4469,15 @@ function MessageCircleIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4418
4469
|
strokeLinejoin: "round",
|
|
4419
4470
|
"aria-hidden": "true",
|
|
4420
4471
|
...rest,
|
|
4421
|
-
children: /* @__PURE__ */ (0,
|
|
4472
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime97.jsx)("path", { d: "M7.9 20A9 9 0 1 0 4 16.1L2 22Z" })
|
|
4422
4473
|
}
|
|
4423
4474
|
);
|
|
4424
4475
|
}
|
|
4425
4476
|
|
|
4426
4477
|
// src/components/icons/message-square/index.tsx
|
|
4427
|
-
var
|
|
4478
|
+
var import_jsx_runtime98 = require("react/jsx-runtime");
|
|
4428
4479
|
function MessageSquareIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4429
|
-
return /* @__PURE__ */ (0,
|
|
4480
|
+
return /* @__PURE__ */ (0, import_jsx_runtime98.jsx)(
|
|
4430
4481
|
"svg",
|
|
4431
4482
|
{
|
|
4432
4483
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4440,15 +4491,15 @@ function MessageSquareIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4440
4491
|
strokeLinejoin: "round",
|
|
4441
4492
|
"aria-hidden": "true",
|
|
4442
4493
|
...rest,
|
|
4443
|
-
children: /* @__PURE__ */ (0,
|
|
4494
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime98.jsx)("path", { d: "M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z" })
|
|
4444
4495
|
}
|
|
4445
4496
|
);
|
|
4446
4497
|
}
|
|
4447
4498
|
|
|
4448
4499
|
// src/components/icons/mic/index.tsx
|
|
4449
|
-
var
|
|
4500
|
+
var import_jsx_runtime99 = require("react/jsx-runtime");
|
|
4450
4501
|
function MicIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4451
|
-
return /* @__PURE__ */ (0,
|
|
4502
|
+
return /* @__PURE__ */ (0, import_jsx_runtime99.jsxs)(
|
|
4452
4503
|
"svg",
|
|
4453
4504
|
{
|
|
4454
4505
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4463,18 +4514,18 @@ function MicIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4463
4514
|
"aria-hidden": "true",
|
|
4464
4515
|
...rest,
|
|
4465
4516
|
children: [
|
|
4466
|
-
/* @__PURE__ */ (0,
|
|
4467
|
-
/* @__PURE__ */ (0,
|
|
4468
|
-
/* @__PURE__ */ (0,
|
|
4517
|
+
/* @__PURE__ */ (0, import_jsx_runtime99.jsx)("path", { d: "M12 2a3 3 0 0 0-3 3v7a3 3 0 0 0 6 0V5a3 3 0 0 0-3-3Z" }),
|
|
4518
|
+
/* @__PURE__ */ (0, import_jsx_runtime99.jsx)("path", { d: "M19 10v2a7 7 0 0 1-14 0v-2" }),
|
|
4519
|
+
/* @__PURE__ */ (0, import_jsx_runtime99.jsx)("line", { x1: "12", x2: "12", y1: "19", y2: "22" })
|
|
4469
4520
|
]
|
|
4470
4521
|
}
|
|
4471
4522
|
);
|
|
4472
4523
|
}
|
|
4473
4524
|
|
|
4474
4525
|
// src/components/icons/minimize/index.tsx
|
|
4475
|
-
var
|
|
4526
|
+
var import_jsx_runtime100 = require("react/jsx-runtime");
|
|
4476
4527
|
function MinimizeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4477
|
-
return /* @__PURE__ */ (0,
|
|
4528
|
+
return /* @__PURE__ */ (0, import_jsx_runtime100.jsxs)(
|
|
4478
4529
|
"svg",
|
|
4479
4530
|
{
|
|
4480
4531
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4489,19 +4540,19 @@ function MinimizeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4489
4540
|
"aria-hidden": "true",
|
|
4490
4541
|
...rest,
|
|
4491
4542
|
children: [
|
|
4492
|
-
/* @__PURE__ */ (0,
|
|
4493
|
-
/* @__PURE__ */ (0,
|
|
4494
|
-
/* @__PURE__ */ (0,
|
|
4495
|
-
/* @__PURE__ */ (0,
|
|
4543
|
+
/* @__PURE__ */ (0, import_jsx_runtime100.jsx)("path", { d: "M8 3v3a2 2 0 0 1-2 2H3" }),
|
|
4544
|
+
/* @__PURE__ */ (0, import_jsx_runtime100.jsx)("path", { d: "M21 8h-3a2 2 0 0 1-2-2V3" }),
|
|
4545
|
+
/* @__PURE__ */ (0, import_jsx_runtime100.jsx)("path", { d: "M3 16h3a2 2 0 0 1 2 2v3" }),
|
|
4546
|
+
/* @__PURE__ */ (0, import_jsx_runtime100.jsx)("path", { d: "M16 21v-3a2 2 0 0 1 2-2h3" })
|
|
4496
4547
|
]
|
|
4497
4548
|
}
|
|
4498
4549
|
);
|
|
4499
4550
|
}
|
|
4500
4551
|
|
|
4501
4552
|
// src/components/icons/minus/index.tsx
|
|
4502
|
-
var
|
|
4553
|
+
var import_jsx_runtime101 = require("react/jsx-runtime");
|
|
4503
4554
|
function MinusIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4504
|
-
return /* @__PURE__ */ (0,
|
|
4555
|
+
return /* @__PURE__ */ (0, import_jsx_runtime101.jsx)(
|
|
4505
4556
|
"svg",
|
|
4506
4557
|
{
|
|
4507
4558
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4515,15 +4566,15 @@ function MinusIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4515
4566
|
strokeLinejoin: "round",
|
|
4516
4567
|
"aria-hidden": "true",
|
|
4517
4568
|
...rest,
|
|
4518
|
-
children: /* @__PURE__ */ (0,
|
|
4569
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime101.jsx)("path", { d: "M5 12h14" })
|
|
4519
4570
|
}
|
|
4520
4571
|
);
|
|
4521
4572
|
}
|
|
4522
4573
|
|
|
4523
4574
|
// src/components/icons/moon/index.tsx
|
|
4524
|
-
var
|
|
4575
|
+
var import_jsx_runtime102 = require("react/jsx-runtime");
|
|
4525
4576
|
function MoonIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4526
|
-
return /* @__PURE__ */ (0,
|
|
4577
|
+
return /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(
|
|
4527
4578
|
"svg",
|
|
4528
4579
|
{
|
|
4529
4580
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4537,15 +4588,15 @@ function MoonIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4537
4588
|
strokeLinejoin: "round",
|
|
4538
4589
|
"aria-hidden": "true",
|
|
4539
4590
|
...rest,
|
|
4540
|
-
children: /* @__PURE__ */ (0,
|
|
4591
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime102.jsx)("path", { d: "M12 3a6 6 0 0 0 9 9 9 9 0 1 1-9-9Z" })
|
|
4541
4592
|
}
|
|
4542
4593
|
);
|
|
4543
4594
|
}
|
|
4544
4595
|
|
|
4545
4596
|
// src/components/icons/more-horizontal/index.tsx
|
|
4546
|
-
var
|
|
4597
|
+
var import_jsx_runtime103 = require("react/jsx-runtime");
|
|
4547
4598
|
function MoreHorizontalIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4548
|
-
return /* @__PURE__ */ (0,
|
|
4599
|
+
return /* @__PURE__ */ (0, import_jsx_runtime103.jsxs)(
|
|
4549
4600
|
"svg",
|
|
4550
4601
|
{
|
|
4551
4602
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4560,18 +4611,18 @@ function MoreHorizontalIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4560
4611
|
"aria-hidden": "true",
|
|
4561
4612
|
...rest,
|
|
4562
4613
|
children: [
|
|
4563
|
-
/* @__PURE__ */ (0,
|
|
4564
|
-
/* @__PURE__ */ (0,
|
|
4565
|
-
/* @__PURE__ */ (0,
|
|
4614
|
+
/* @__PURE__ */ (0, import_jsx_runtime103.jsx)("circle", { cx: "12", cy: "12", r: "1" }),
|
|
4615
|
+
/* @__PURE__ */ (0, import_jsx_runtime103.jsx)("circle", { cx: "19", cy: "12", r: "1" }),
|
|
4616
|
+
/* @__PURE__ */ (0, import_jsx_runtime103.jsx)("circle", { cx: "5", cy: "12", r: "1" })
|
|
4566
4617
|
]
|
|
4567
4618
|
}
|
|
4568
4619
|
);
|
|
4569
4620
|
}
|
|
4570
4621
|
|
|
4571
4622
|
// src/components/icons/more-vertical/index.tsx
|
|
4572
|
-
var
|
|
4623
|
+
var import_jsx_runtime104 = require("react/jsx-runtime");
|
|
4573
4624
|
function MoreVerticalIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4574
|
-
return /* @__PURE__ */ (0,
|
|
4625
|
+
return /* @__PURE__ */ (0, import_jsx_runtime104.jsxs)(
|
|
4575
4626
|
"svg",
|
|
4576
4627
|
{
|
|
4577
4628
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4586,18 +4637,18 @@ function MoreVerticalIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4586
4637
|
"aria-hidden": "true",
|
|
4587
4638
|
...rest,
|
|
4588
4639
|
children: [
|
|
4589
|
-
/* @__PURE__ */ (0,
|
|
4590
|
-
/* @__PURE__ */ (0,
|
|
4591
|
-
/* @__PURE__ */ (0,
|
|
4640
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("circle", { cx: "12", cy: "12", r: "1" }),
|
|
4641
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("circle", { cx: "12", cy: "5", r: "1" }),
|
|
4642
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("circle", { cx: "12", cy: "19", r: "1" })
|
|
4592
4643
|
]
|
|
4593
4644
|
}
|
|
4594
4645
|
);
|
|
4595
4646
|
}
|
|
4596
4647
|
|
|
4597
4648
|
// src/components/icons/package/index.tsx
|
|
4598
|
-
var
|
|
4649
|
+
var import_jsx_runtime105 = require("react/jsx-runtime");
|
|
4599
4650
|
function PackageIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4600
|
-
return /* @__PURE__ */ (0,
|
|
4651
|
+
return /* @__PURE__ */ (0, import_jsx_runtime105.jsxs)(
|
|
4601
4652
|
"svg",
|
|
4602
4653
|
{
|
|
4603
4654
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4612,18 +4663,18 @@ function PackageIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4612
4663
|
"aria-hidden": "true",
|
|
4613
4664
|
...rest,
|
|
4614
4665
|
children: [
|
|
4615
|
-
/* @__PURE__ */ (0,
|
|
4616
|
-
/* @__PURE__ */ (0,
|
|
4617
|
-
/* @__PURE__ */ (0,
|
|
4666
|
+
/* @__PURE__ */ (0, import_jsx_runtime105.jsx)("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" }),
|
|
4667
|
+
/* @__PURE__ */ (0, import_jsx_runtime105.jsx)("path", { d: "M3.3 7 12 12l8.7-5" }),
|
|
4668
|
+
/* @__PURE__ */ (0, import_jsx_runtime105.jsx)("path", { d: "M12 22V12" })
|
|
4618
4669
|
]
|
|
4619
4670
|
}
|
|
4620
4671
|
);
|
|
4621
4672
|
}
|
|
4622
4673
|
|
|
4623
4674
|
// src/components/icons/paperclip/index.tsx
|
|
4624
|
-
var
|
|
4675
|
+
var import_jsx_runtime106 = require("react/jsx-runtime");
|
|
4625
4676
|
function PaperclipIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4626
|
-
return /* @__PURE__ */ (0,
|
|
4677
|
+
return /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
|
|
4627
4678
|
"svg",
|
|
4628
4679
|
{
|
|
4629
4680
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4637,15 +4688,15 @@ function PaperclipIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4637
4688
|
strokeLinejoin: "round",
|
|
4638
4689
|
"aria-hidden": "true",
|
|
4639
4690
|
...rest,
|
|
4640
|
-
children: /* @__PURE__ */ (0,
|
|
4691
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime106.jsx)("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" })
|
|
4641
4692
|
}
|
|
4642
4693
|
);
|
|
4643
4694
|
}
|
|
4644
4695
|
|
|
4645
4696
|
// src/components/icons/pause/index.tsx
|
|
4646
|
-
var
|
|
4697
|
+
var import_jsx_runtime107 = require("react/jsx-runtime");
|
|
4647
4698
|
function PauseIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4648
|
-
return /* @__PURE__ */ (0,
|
|
4699
|
+
return /* @__PURE__ */ (0, import_jsx_runtime107.jsxs)(
|
|
4649
4700
|
"svg",
|
|
4650
4701
|
{
|
|
4651
4702
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4660,17 +4711,17 @@ function PauseIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4660
4711
|
"aria-hidden": "true",
|
|
4661
4712
|
...rest,
|
|
4662
4713
|
children: [
|
|
4663
|
-
/* @__PURE__ */ (0,
|
|
4664
|
-
/* @__PURE__ */ (0,
|
|
4714
|
+
/* @__PURE__ */ (0, import_jsx_runtime107.jsx)("rect", { x: "14", y: "4", width: "4", height: "16", rx: "1" }),
|
|
4715
|
+
/* @__PURE__ */ (0, import_jsx_runtime107.jsx)("rect", { x: "6", y: "4", width: "4", height: "16", rx: "1" })
|
|
4665
4716
|
]
|
|
4666
4717
|
}
|
|
4667
4718
|
);
|
|
4668
4719
|
}
|
|
4669
4720
|
|
|
4670
4721
|
// src/components/icons/pencil/index.tsx
|
|
4671
|
-
var
|
|
4722
|
+
var import_jsx_runtime108 = require("react/jsx-runtime");
|
|
4672
4723
|
function PencilIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4673
|
-
return /* @__PURE__ */ (0,
|
|
4724
|
+
return /* @__PURE__ */ (0, import_jsx_runtime108.jsxs)(
|
|
4674
4725
|
"svg",
|
|
4675
4726
|
{
|
|
4676
4727
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4685,17 +4736,17 @@ function PencilIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4685
4736
|
"aria-hidden": "true",
|
|
4686
4737
|
...rest,
|
|
4687
4738
|
children: [
|
|
4688
|
-
/* @__PURE__ */ (0,
|
|
4689
|
-
/* @__PURE__ */ (0,
|
|
4739
|
+
/* @__PURE__ */ (0, import_jsx_runtime108.jsx)("path", { d: "M17 3a2.85 2.83 0 1 1 4 4L7.5 20.5 2 22l1.5-5.5Z" }),
|
|
4740
|
+
/* @__PURE__ */ (0, import_jsx_runtime108.jsx)("path", { d: "m15 5 4 4" })
|
|
4690
4741
|
]
|
|
4691
4742
|
}
|
|
4692
4743
|
);
|
|
4693
4744
|
}
|
|
4694
4745
|
|
|
4695
4746
|
// src/components/icons/phone/index.tsx
|
|
4696
|
-
var
|
|
4747
|
+
var import_jsx_runtime109 = require("react/jsx-runtime");
|
|
4697
4748
|
function PhoneIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4698
|
-
return /* @__PURE__ */ (0,
|
|
4749
|
+
return /* @__PURE__ */ (0, import_jsx_runtime109.jsx)(
|
|
4699
4750
|
"svg",
|
|
4700
4751
|
{
|
|
4701
4752
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4709,15 +4760,15 @@ function PhoneIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4709
4760
|
strokeLinejoin: "round",
|
|
4710
4761
|
"aria-hidden": "true",
|
|
4711
4762
|
...rest,
|
|
4712
|
-
children: /* @__PURE__ */ (0,
|
|
4763
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime109.jsx)("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" })
|
|
4713
4764
|
}
|
|
4714
4765
|
);
|
|
4715
4766
|
}
|
|
4716
4767
|
|
|
4717
4768
|
// src/components/icons/play/index.tsx
|
|
4718
|
-
var
|
|
4769
|
+
var import_jsx_runtime110 = require("react/jsx-runtime");
|
|
4719
4770
|
function PlayIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4720
|
-
return /* @__PURE__ */ (0,
|
|
4771
|
+
return /* @__PURE__ */ (0, import_jsx_runtime110.jsx)(
|
|
4721
4772
|
"svg",
|
|
4722
4773
|
{
|
|
4723
4774
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4731,15 +4782,15 @@ function PlayIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4731
4782
|
strokeLinejoin: "round",
|
|
4732
4783
|
"aria-hidden": "true",
|
|
4733
4784
|
...rest,
|
|
4734
|
-
children: /* @__PURE__ */ (0,
|
|
4785
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime110.jsx)("polygon", { points: "6 3 20 12 6 21 6 3" })
|
|
4735
4786
|
}
|
|
4736
4787
|
);
|
|
4737
4788
|
}
|
|
4738
4789
|
|
|
4739
4790
|
// src/components/icons/plus/index.tsx
|
|
4740
|
-
var
|
|
4791
|
+
var import_jsx_runtime111 = require("react/jsx-runtime");
|
|
4741
4792
|
function PlusIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4742
|
-
return /* @__PURE__ */ (0,
|
|
4793
|
+
return /* @__PURE__ */ (0, import_jsx_runtime111.jsxs)(
|
|
4743
4794
|
"svg",
|
|
4744
4795
|
{
|
|
4745
4796
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4754,17 +4805,17 @@ function PlusIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4754
4805
|
"aria-hidden": "true",
|
|
4755
4806
|
...rest,
|
|
4756
4807
|
children: [
|
|
4757
|
-
/* @__PURE__ */ (0,
|
|
4758
|
-
/* @__PURE__ */ (0,
|
|
4808
|
+
/* @__PURE__ */ (0, import_jsx_runtime111.jsx)("path", { d: "M5 12h14" }),
|
|
4809
|
+
/* @__PURE__ */ (0, import_jsx_runtime111.jsx)("path", { d: "M12 5v14" })
|
|
4759
4810
|
]
|
|
4760
4811
|
}
|
|
4761
4812
|
);
|
|
4762
4813
|
}
|
|
4763
4814
|
|
|
4764
4815
|
// src/components/icons/printer/index.tsx
|
|
4765
|
-
var
|
|
4816
|
+
var import_jsx_runtime112 = require("react/jsx-runtime");
|
|
4766
4817
|
function PrinterIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4767
|
-
return /* @__PURE__ */ (0,
|
|
4818
|
+
return /* @__PURE__ */ (0, import_jsx_runtime112.jsxs)(
|
|
4768
4819
|
"svg",
|
|
4769
4820
|
{
|
|
4770
4821
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4779,18 +4830,18 @@ function PrinterIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4779
4830
|
"aria-hidden": "true",
|
|
4780
4831
|
...rest,
|
|
4781
4832
|
children: [
|
|
4782
|
-
/* @__PURE__ */ (0,
|
|
4783
|
-
/* @__PURE__ */ (0,
|
|
4784
|
-
/* @__PURE__ */ (0,
|
|
4833
|
+
/* @__PURE__ */ (0, import_jsx_runtime112.jsx)("polyline", { points: "6 9 6 2 18 2 18 9" }),
|
|
4834
|
+
/* @__PURE__ */ (0, import_jsx_runtime112.jsx)("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" }),
|
|
4835
|
+
/* @__PURE__ */ (0, import_jsx_runtime112.jsx)("rect", { width: "12", height: "8", x: "6", y: "14" })
|
|
4785
4836
|
]
|
|
4786
4837
|
}
|
|
4787
4838
|
);
|
|
4788
4839
|
}
|
|
4789
4840
|
|
|
4790
4841
|
// src/components/icons/redo/index.tsx
|
|
4791
|
-
var
|
|
4842
|
+
var import_jsx_runtime113 = require("react/jsx-runtime");
|
|
4792
4843
|
function RedoIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4793
|
-
return /* @__PURE__ */ (0,
|
|
4844
|
+
return /* @__PURE__ */ (0, import_jsx_runtime113.jsxs)(
|
|
4794
4845
|
"svg",
|
|
4795
4846
|
{
|
|
4796
4847
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4805,17 +4856,17 @@ function RedoIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4805
4856
|
"aria-hidden": "true",
|
|
4806
4857
|
...rest,
|
|
4807
4858
|
children: [
|
|
4808
|
-
/* @__PURE__ */ (0,
|
|
4809
|
-
/* @__PURE__ */ (0,
|
|
4859
|
+
/* @__PURE__ */ (0, import_jsx_runtime113.jsx)("path", { d: "M21 7v6h-6" }),
|
|
4860
|
+
/* @__PURE__ */ (0, import_jsx_runtime113.jsx)("path", { d: "M3 17a9 9 0 0 1 9-9 9 9 0 0 1 6 2.3l3 2.7" })
|
|
4810
4861
|
]
|
|
4811
4862
|
}
|
|
4812
4863
|
);
|
|
4813
4864
|
}
|
|
4814
4865
|
|
|
4815
4866
|
// src/components/icons/refresh-cw/index.tsx
|
|
4816
|
-
var
|
|
4867
|
+
var import_jsx_runtime114 = require("react/jsx-runtime");
|
|
4817
4868
|
function RefreshCwIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4818
|
-
return /* @__PURE__ */ (0,
|
|
4869
|
+
return /* @__PURE__ */ (0, import_jsx_runtime114.jsxs)(
|
|
4819
4870
|
"svg",
|
|
4820
4871
|
{
|
|
4821
4872
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4830,19 +4881,19 @@ function RefreshCwIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4830
4881
|
"aria-hidden": "true",
|
|
4831
4882
|
...rest,
|
|
4832
4883
|
children: [
|
|
4833
|
-
/* @__PURE__ */ (0,
|
|
4834
|
-
/* @__PURE__ */ (0,
|
|
4835
|
-
/* @__PURE__ */ (0,
|
|
4836
|
-
/* @__PURE__ */ (0,
|
|
4884
|
+
/* @__PURE__ */ (0, import_jsx_runtime114.jsx)("path", { d: "M3 12a9 9 0 0 1 9-9 9.75 9.75 0 0 1 6.74 2.74L21 8" }),
|
|
4885
|
+
/* @__PURE__ */ (0, import_jsx_runtime114.jsx)("path", { d: "M21 3v5h-5" }),
|
|
4886
|
+
/* @__PURE__ */ (0, import_jsx_runtime114.jsx)("path", { d: "M21 12a9 9 0 0 1-9 9 9.75 9.75 0 0 1-6.74-2.74L3 16" }),
|
|
4887
|
+
/* @__PURE__ */ (0, import_jsx_runtime114.jsx)("path", { d: "M3 21v-5h5" })
|
|
4837
4888
|
]
|
|
4838
4889
|
}
|
|
4839
4890
|
);
|
|
4840
4891
|
}
|
|
4841
4892
|
|
|
4842
4893
|
// src/components/icons/save/index.tsx
|
|
4843
|
-
var
|
|
4894
|
+
var import_jsx_runtime115 = require("react/jsx-runtime");
|
|
4844
4895
|
function SaveIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4845
|
-
return /* @__PURE__ */ (0,
|
|
4896
|
+
return /* @__PURE__ */ (0, import_jsx_runtime115.jsxs)(
|
|
4846
4897
|
"svg",
|
|
4847
4898
|
{
|
|
4848
4899
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4857,18 +4908,18 @@ function SaveIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4857
4908
|
"aria-hidden": "true",
|
|
4858
4909
|
...rest,
|
|
4859
4910
|
children: [
|
|
4860
|
-
/* @__PURE__ */ (0,
|
|
4861
|
-
/* @__PURE__ */ (0,
|
|
4862
|
-
/* @__PURE__ */ (0,
|
|
4911
|
+
/* @__PURE__ */ (0, import_jsx_runtime115.jsx)("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" }),
|
|
4912
|
+
/* @__PURE__ */ (0, import_jsx_runtime115.jsx)("path", { d: "M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7" }),
|
|
4913
|
+
/* @__PURE__ */ (0, import_jsx_runtime115.jsx)("path", { d: "M7 3v4a1 1 0 0 0 1 1h7" })
|
|
4863
4914
|
]
|
|
4864
4915
|
}
|
|
4865
4916
|
);
|
|
4866
4917
|
}
|
|
4867
4918
|
|
|
4868
4919
|
// src/components/icons/search/index.tsx
|
|
4869
|
-
var
|
|
4920
|
+
var import_jsx_runtime116 = require("react/jsx-runtime");
|
|
4870
4921
|
function SearchIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4871
|
-
return /* @__PURE__ */ (0,
|
|
4922
|
+
return /* @__PURE__ */ (0, import_jsx_runtime116.jsxs)(
|
|
4872
4923
|
"svg",
|
|
4873
4924
|
{
|
|
4874
4925
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4883,17 +4934,17 @@ function SearchIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4883
4934
|
"aria-hidden": "true",
|
|
4884
4935
|
...rest,
|
|
4885
4936
|
children: [
|
|
4886
|
-
/* @__PURE__ */ (0,
|
|
4887
|
-
/* @__PURE__ */ (0,
|
|
4937
|
+
/* @__PURE__ */ (0, import_jsx_runtime116.jsx)("circle", { cx: "11", cy: "11", r: "8" }),
|
|
4938
|
+
/* @__PURE__ */ (0, import_jsx_runtime116.jsx)("path", { d: "m21 21-4.3-4.3" })
|
|
4888
4939
|
]
|
|
4889
4940
|
}
|
|
4890
4941
|
);
|
|
4891
4942
|
}
|
|
4892
4943
|
|
|
4893
4944
|
// src/components/icons/send/index.tsx
|
|
4894
|
-
var
|
|
4945
|
+
var import_jsx_runtime117 = require("react/jsx-runtime");
|
|
4895
4946
|
function SendIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4896
|
-
return /* @__PURE__ */ (0,
|
|
4947
|
+
return /* @__PURE__ */ (0, import_jsx_runtime117.jsxs)(
|
|
4897
4948
|
"svg",
|
|
4898
4949
|
{
|
|
4899
4950
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4908,17 +4959,17 @@ function SendIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4908
4959
|
"aria-hidden": "true",
|
|
4909
4960
|
...rest,
|
|
4910
4961
|
children: [
|
|
4911
|
-
/* @__PURE__ */ (0,
|
|
4912
|
-
/* @__PURE__ */ (0,
|
|
4962
|
+
/* @__PURE__ */ (0, import_jsx_runtime117.jsx)("line", { x1: "22", x2: "11", y1: "2", y2: "13" }),
|
|
4963
|
+
/* @__PURE__ */ (0, import_jsx_runtime117.jsx)("polygon", { points: "22 2 15 22 11 13 2 9 22 2" })
|
|
4913
4964
|
]
|
|
4914
4965
|
}
|
|
4915
4966
|
);
|
|
4916
4967
|
}
|
|
4917
4968
|
|
|
4918
4969
|
// src/components/icons/settings/index.tsx
|
|
4919
|
-
var
|
|
4970
|
+
var import_jsx_runtime118 = require("react/jsx-runtime");
|
|
4920
4971
|
function SettingsIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4921
|
-
return /* @__PURE__ */ (0,
|
|
4972
|
+
return /* @__PURE__ */ (0, import_jsx_runtime118.jsxs)(
|
|
4922
4973
|
"svg",
|
|
4923
4974
|
{
|
|
4924
4975
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4933,17 +4984,17 @@ function SettingsIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4933
4984
|
"aria-hidden": "true",
|
|
4934
4985
|
...rest,
|
|
4935
4986
|
children: [
|
|
4936
|
-
/* @__PURE__ */ (0,
|
|
4937
|
-
/* @__PURE__ */ (0,
|
|
4987
|
+
/* @__PURE__ */ (0, import_jsx_runtime118.jsx)("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" }),
|
|
4988
|
+
/* @__PURE__ */ (0, import_jsx_runtime118.jsx)("circle", { cx: "12", cy: "12", r: "3" })
|
|
4938
4989
|
]
|
|
4939
4990
|
}
|
|
4940
4991
|
);
|
|
4941
4992
|
}
|
|
4942
4993
|
|
|
4943
4994
|
// src/components/icons/share/index.tsx
|
|
4944
|
-
var
|
|
4995
|
+
var import_jsx_runtime119 = require("react/jsx-runtime");
|
|
4945
4996
|
function ShareIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4946
|
-
return /* @__PURE__ */ (0,
|
|
4997
|
+
return /* @__PURE__ */ (0, import_jsx_runtime119.jsxs)(
|
|
4947
4998
|
"svg",
|
|
4948
4999
|
{
|
|
4949
5000
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4958,18 +5009,18 @@ function ShareIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4958
5009
|
"aria-hidden": "true",
|
|
4959
5010
|
...rest,
|
|
4960
5011
|
children: [
|
|
4961
|
-
/* @__PURE__ */ (0,
|
|
4962
|
-
/* @__PURE__ */ (0,
|
|
4963
|
-
/* @__PURE__ */ (0,
|
|
5012
|
+
/* @__PURE__ */ (0, import_jsx_runtime119.jsx)("path", { d: "M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8" }),
|
|
5013
|
+
/* @__PURE__ */ (0, import_jsx_runtime119.jsx)("polyline", { points: "16 6 12 2 8 6" }),
|
|
5014
|
+
/* @__PURE__ */ (0, import_jsx_runtime119.jsx)("line", { x1: "12", x2: "12", y1: "2", y2: "15" })
|
|
4964
5015
|
]
|
|
4965
5016
|
}
|
|
4966
5017
|
);
|
|
4967
5018
|
}
|
|
4968
5019
|
|
|
4969
5020
|
// src/components/icons/shield/index.tsx
|
|
4970
|
-
var
|
|
5021
|
+
var import_jsx_runtime120 = require("react/jsx-runtime");
|
|
4971
5022
|
function ShieldIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4972
|
-
return /* @__PURE__ */ (0,
|
|
5023
|
+
return /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
4973
5024
|
"svg",
|
|
4974
5025
|
{
|
|
4975
5026
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4983,15 +5034,15 @@ function ShieldIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4983
5034
|
strokeLinejoin: "round",
|
|
4984
5035
|
"aria-hidden": "true",
|
|
4985
5036
|
...rest,
|
|
4986
|
-
children: /* @__PURE__ */ (0,
|
|
5037
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime120.jsx)("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" })
|
|
4987
5038
|
}
|
|
4988
5039
|
);
|
|
4989
5040
|
}
|
|
4990
5041
|
|
|
4991
5042
|
// src/components/icons/shield-check/index.tsx
|
|
4992
|
-
var
|
|
5043
|
+
var import_jsx_runtime121 = require("react/jsx-runtime");
|
|
4993
5044
|
function ShieldCheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4994
|
-
return /* @__PURE__ */ (0,
|
|
5045
|
+
return /* @__PURE__ */ (0, import_jsx_runtime121.jsxs)(
|
|
4995
5046
|
"svg",
|
|
4996
5047
|
{
|
|
4997
5048
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5006,17 +5057,17 @@ function ShieldCheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5006
5057
|
"aria-hidden": "true",
|
|
5007
5058
|
...rest,
|
|
5008
5059
|
children: [
|
|
5009
|
-
/* @__PURE__ */ (0,
|
|
5010
|
-
/* @__PURE__ */ (0,
|
|
5060
|
+
/* @__PURE__ */ (0, import_jsx_runtime121.jsx)("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" }),
|
|
5061
|
+
/* @__PURE__ */ (0, import_jsx_runtime121.jsx)("path", { d: "m9 12 2 2 4-4" })
|
|
5011
5062
|
]
|
|
5012
5063
|
}
|
|
5013
5064
|
);
|
|
5014
5065
|
}
|
|
5015
5066
|
|
|
5016
5067
|
// src/components/icons/shopping-bag/index.tsx
|
|
5017
|
-
var
|
|
5068
|
+
var import_jsx_runtime122 = require("react/jsx-runtime");
|
|
5018
5069
|
function ShoppingBagIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5019
|
-
return /* @__PURE__ */ (0,
|
|
5070
|
+
return /* @__PURE__ */ (0, import_jsx_runtime122.jsxs)(
|
|
5020
5071
|
"svg",
|
|
5021
5072
|
{
|
|
5022
5073
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5031,18 +5082,18 @@ function ShoppingBagIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5031
5082
|
"aria-hidden": "true",
|
|
5032
5083
|
...rest,
|
|
5033
5084
|
children: [
|
|
5034
|
-
/* @__PURE__ */ (0,
|
|
5035
|
-
/* @__PURE__ */ (0,
|
|
5036
|
-
/* @__PURE__ */ (0,
|
|
5085
|
+
/* @__PURE__ */ (0, import_jsx_runtime122.jsx)("path", { d: "M6 2 3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4Z" }),
|
|
5086
|
+
/* @__PURE__ */ (0, import_jsx_runtime122.jsx)("path", { d: "M3 6h18" }),
|
|
5087
|
+
/* @__PURE__ */ (0, import_jsx_runtime122.jsx)("path", { d: "M16 10a4 4 0 0 1-8 0" })
|
|
5037
5088
|
]
|
|
5038
5089
|
}
|
|
5039
5090
|
);
|
|
5040
5091
|
}
|
|
5041
5092
|
|
|
5042
5093
|
// src/components/icons/shopping-cart/index.tsx
|
|
5043
|
-
var
|
|
5094
|
+
var import_jsx_runtime123 = require("react/jsx-runtime");
|
|
5044
5095
|
function ShoppingCartIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5045
|
-
return /* @__PURE__ */ (0,
|
|
5096
|
+
return /* @__PURE__ */ (0, import_jsx_runtime123.jsxs)(
|
|
5046
5097
|
"svg",
|
|
5047
5098
|
{
|
|
5048
5099
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5057,18 +5108,18 @@ function ShoppingCartIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5057
5108
|
"aria-hidden": "true",
|
|
5058
5109
|
...rest,
|
|
5059
5110
|
children: [
|
|
5060
|
-
/* @__PURE__ */ (0,
|
|
5061
|
-
/* @__PURE__ */ (0,
|
|
5062
|
-
/* @__PURE__ */ (0,
|
|
5111
|
+
/* @__PURE__ */ (0, import_jsx_runtime123.jsx)("circle", { cx: "8", cy: "21", r: "1" }),
|
|
5112
|
+
/* @__PURE__ */ (0, import_jsx_runtime123.jsx)("circle", { cx: "19", cy: "21", r: "1" }),
|
|
5113
|
+
/* @__PURE__ */ (0, import_jsx_runtime123.jsx)("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" })
|
|
5063
5114
|
]
|
|
5064
5115
|
}
|
|
5065
5116
|
);
|
|
5066
5117
|
}
|
|
5067
5118
|
|
|
5068
5119
|
// src/components/icons/sidebar/index.tsx
|
|
5069
|
-
var
|
|
5120
|
+
var import_jsx_runtime124 = require("react/jsx-runtime");
|
|
5070
5121
|
function SidebarIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5071
|
-
return /* @__PURE__ */ (0,
|
|
5122
|
+
return /* @__PURE__ */ (0, import_jsx_runtime124.jsxs)(
|
|
5072
5123
|
"svg",
|
|
5073
5124
|
{
|
|
5074
5125
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5083,17 +5134,17 @@ function SidebarIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5083
5134
|
"aria-hidden": "true",
|
|
5084
5135
|
...rest,
|
|
5085
5136
|
children: [
|
|
5086
|
-
/* @__PURE__ */ (0,
|
|
5087
|
-
/* @__PURE__ */ (0,
|
|
5137
|
+
/* @__PURE__ */ (0, import_jsx_runtime124.jsx)("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }),
|
|
5138
|
+
/* @__PURE__ */ (0, import_jsx_runtime124.jsx)("path", { d: "M9 3v18" })
|
|
5088
5139
|
]
|
|
5089
5140
|
}
|
|
5090
5141
|
);
|
|
5091
5142
|
}
|
|
5092
5143
|
|
|
5093
5144
|
// src/components/icons/skip-back/index.tsx
|
|
5094
|
-
var
|
|
5145
|
+
var import_jsx_runtime125 = require("react/jsx-runtime");
|
|
5095
5146
|
function SkipBackIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5096
|
-
return /* @__PURE__ */ (0,
|
|
5147
|
+
return /* @__PURE__ */ (0, import_jsx_runtime125.jsxs)(
|
|
5097
5148
|
"svg",
|
|
5098
5149
|
{
|
|
5099
5150
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5108,17 +5159,17 @@ function SkipBackIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5108
5159
|
"aria-hidden": "true",
|
|
5109
5160
|
...rest,
|
|
5110
5161
|
children: [
|
|
5111
|
-
/* @__PURE__ */ (0,
|
|
5112
|
-
/* @__PURE__ */ (0,
|
|
5162
|
+
/* @__PURE__ */ (0, import_jsx_runtime125.jsx)("polygon", { points: "19 20 9 12 19 4 19 20" }),
|
|
5163
|
+
/* @__PURE__ */ (0, import_jsx_runtime125.jsx)("line", { x1: "5", x2: "5", y1: "19", y2: "5" })
|
|
5113
5164
|
]
|
|
5114
5165
|
}
|
|
5115
5166
|
);
|
|
5116
5167
|
}
|
|
5117
5168
|
|
|
5118
5169
|
// src/components/icons/skip-forward/index.tsx
|
|
5119
|
-
var
|
|
5170
|
+
var import_jsx_runtime126 = require("react/jsx-runtime");
|
|
5120
5171
|
function SkipForwardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5121
|
-
return /* @__PURE__ */ (0,
|
|
5172
|
+
return /* @__PURE__ */ (0, import_jsx_runtime126.jsxs)(
|
|
5122
5173
|
"svg",
|
|
5123
5174
|
{
|
|
5124
5175
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5133,17 +5184,17 @@ function SkipForwardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5133
5184
|
"aria-hidden": "true",
|
|
5134
5185
|
...rest,
|
|
5135
5186
|
children: [
|
|
5136
|
-
/* @__PURE__ */ (0,
|
|
5137
|
-
/* @__PURE__ */ (0,
|
|
5187
|
+
/* @__PURE__ */ (0, import_jsx_runtime126.jsx)("polygon", { points: "5 4 15 12 5 20 5 4" }),
|
|
5188
|
+
/* @__PURE__ */ (0, import_jsx_runtime126.jsx)("line", { x1: "19", x2: "19", y1: "5", y2: "19" })
|
|
5138
5189
|
]
|
|
5139
5190
|
}
|
|
5140
5191
|
);
|
|
5141
5192
|
}
|
|
5142
5193
|
|
|
5143
5194
|
// src/components/icons/sliders/index.tsx
|
|
5144
|
-
var
|
|
5195
|
+
var import_jsx_runtime127 = require("react/jsx-runtime");
|
|
5145
5196
|
function SlidersIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5146
|
-
return /* @__PURE__ */ (0,
|
|
5197
|
+
return /* @__PURE__ */ (0, import_jsx_runtime127.jsxs)(
|
|
5147
5198
|
"svg",
|
|
5148
5199
|
{
|
|
5149
5200
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5158,24 +5209,24 @@ function SlidersIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5158
5209
|
"aria-hidden": "true",
|
|
5159
5210
|
...rest,
|
|
5160
5211
|
children: [
|
|
5161
|
-
/* @__PURE__ */ (0,
|
|
5162
|
-
/* @__PURE__ */ (0,
|
|
5163
|
-
/* @__PURE__ */ (0,
|
|
5164
|
-
/* @__PURE__ */ (0,
|
|
5165
|
-
/* @__PURE__ */ (0,
|
|
5166
|
-
/* @__PURE__ */ (0,
|
|
5167
|
-
/* @__PURE__ */ (0,
|
|
5168
|
-
/* @__PURE__ */ (0,
|
|
5169
|
-
/* @__PURE__ */ (0,
|
|
5212
|
+
/* @__PURE__ */ (0, import_jsx_runtime127.jsx)("line", { x1: "21", x2: "14", y1: "4", y2: "4" }),
|
|
5213
|
+
/* @__PURE__ */ (0, import_jsx_runtime127.jsx)("line", { x1: "10", x2: "3", y1: "4", y2: "4" }),
|
|
5214
|
+
/* @__PURE__ */ (0, import_jsx_runtime127.jsx)("line", { x1: "21", x2: "12", y1: "12", y2: "12" }),
|
|
5215
|
+
/* @__PURE__ */ (0, import_jsx_runtime127.jsx)("line", { x1: "8", x2: "3", y1: "12", y2: "12" }),
|
|
5216
|
+
/* @__PURE__ */ (0, import_jsx_runtime127.jsx)("line", { x1: "21", x2: "16", y1: "20", y2: "20" }),
|
|
5217
|
+
/* @__PURE__ */ (0, import_jsx_runtime127.jsx)("line", { x1: "12", x2: "3", y1: "20", y2: "20" }),
|
|
5218
|
+
/* @__PURE__ */ (0, import_jsx_runtime127.jsx)("line", { x1: "14", x2: "14", y1: "2", y2: "6" }),
|
|
5219
|
+
/* @__PURE__ */ (0, import_jsx_runtime127.jsx)("line", { x1: "8", x2: "8", y1: "10", y2: "14" }),
|
|
5220
|
+
/* @__PURE__ */ (0, import_jsx_runtime127.jsx)("line", { x1: "16", x2: "16", y1: "18", y2: "22" })
|
|
5170
5221
|
]
|
|
5171
5222
|
}
|
|
5172
5223
|
);
|
|
5173
5224
|
}
|
|
5174
5225
|
|
|
5175
5226
|
// src/components/icons/smile/index.tsx
|
|
5176
|
-
var
|
|
5227
|
+
var import_jsx_runtime128 = require("react/jsx-runtime");
|
|
5177
5228
|
function SmileIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5178
|
-
return /* @__PURE__ */ (0,
|
|
5229
|
+
return /* @__PURE__ */ (0, import_jsx_runtime128.jsxs)(
|
|
5179
5230
|
"svg",
|
|
5180
5231
|
{
|
|
5181
5232
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5190,19 +5241,19 @@ function SmileIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5190
5241
|
"aria-hidden": "true",
|
|
5191
5242
|
...rest,
|
|
5192
5243
|
children: [
|
|
5193
|
-
/* @__PURE__ */ (0,
|
|
5194
|
-
/* @__PURE__ */ (0,
|
|
5195
|
-
/* @__PURE__ */ (0,
|
|
5196
|
-
/* @__PURE__ */ (0,
|
|
5244
|
+
/* @__PURE__ */ (0, import_jsx_runtime128.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
|
|
5245
|
+
/* @__PURE__ */ (0, import_jsx_runtime128.jsx)("path", { d: "M8 14s1.5 2 4 2 4-2 4-2" }),
|
|
5246
|
+
/* @__PURE__ */ (0, import_jsx_runtime128.jsx)("line", { x1: "9", x2: "9.01", y1: "9", y2: "9" }),
|
|
5247
|
+
/* @__PURE__ */ (0, import_jsx_runtime128.jsx)("line", { x1: "15", x2: "15.01", y1: "9", y2: "9" })
|
|
5197
5248
|
]
|
|
5198
5249
|
}
|
|
5199
5250
|
);
|
|
5200
5251
|
}
|
|
5201
5252
|
|
|
5202
5253
|
// src/components/icons/star/index.tsx
|
|
5203
|
-
var
|
|
5254
|
+
var import_jsx_runtime129 = require("react/jsx-runtime");
|
|
5204
5255
|
function StarIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5205
|
-
return /* @__PURE__ */ (0,
|
|
5256
|
+
return /* @__PURE__ */ (0, import_jsx_runtime129.jsx)(
|
|
5206
5257
|
"svg",
|
|
5207
5258
|
{
|
|
5208
5259
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5216,15 +5267,15 @@ function StarIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5216
5267
|
strokeLinejoin: "round",
|
|
5217
5268
|
"aria-hidden": "true",
|
|
5218
5269
|
...rest,
|
|
5219
|
-
children: /* @__PURE__ */ (0,
|
|
5270
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime129.jsx)("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" })
|
|
5220
5271
|
}
|
|
5221
5272
|
);
|
|
5222
5273
|
}
|
|
5223
5274
|
|
|
5224
5275
|
// src/components/icons/sun/index.tsx
|
|
5225
|
-
var
|
|
5276
|
+
var import_jsx_runtime130 = require("react/jsx-runtime");
|
|
5226
5277
|
function SunIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5227
|
-
return /* @__PURE__ */ (0,
|
|
5278
|
+
return /* @__PURE__ */ (0, import_jsx_runtime130.jsxs)(
|
|
5228
5279
|
"svg",
|
|
5229
5280
|
{
|
|
5230
5281
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5239,24 +5290,24 @@ function SunIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5239
5290
|
"aria-hidden": "true",
|
|
5240
5291
|
...rest,
|
|
5241
5292
|
children: [
|
|
5242
|
-
/* @__PURE__ */ (0,
|
|
5243
|
-
/* @__PURE__ */ (0,
|
|
5244
|
-
/* @__PURE__ */ (0,
|
|
5245
|
-
/* @__PURE__ */ (0,
|
|
5246
|
-
/* @__PURE__ */ (0,
|
|
5247
|
-
/* @__PURE__ */ (0,
|
|
5248
|
-
/* @__PURE__ */ (0,
|
|
5249
|
-
/* @__PURE__ */ (0,
|
|
5250
|
-
/* @__PURE__ */ (0,
|
|
5293
|
+
/* @__PURE__ */ (0, import_jsx_runtime130.jsx)("circle", { cx: "12", cy: "12", r: "4" }),
|
|
5294
|
+
/* @__PURE__ */ (0, import_jsx_runtime130.jsx)("path", { d: "M12 2v2" }),
|
|
5295
|
+
/* @__PURE__ */ (0, import_jsx_runtime130.jsx)("path", { d: "M12 20v2" }),
|
|
5296
|
+
/* @__PURE__ */ (0, import_jsx_runtime130.jsx)("path", { d: "m4.93 4.93 1.41 1.41" }),
|
|
5297
|
+
/* @__PURE__ */ (0, import_jsx_runtime130.jsx)("path", { d: "m17.66 17.66 1.41 1.41" }),
|
|
5298
|
+
/* @__PURE__ */ (0, import_jsx_runtime130.jsx)("path", { d: "M2 12h2" }),
|
|
5299
|
+
/* @__PURE__ */ (0, import_jsx_runtime130.jsx)("path", { d: "M20 12h2" }),
|
|
5300
|
+
/* @__PURE__ */ (0, import_jsx_runtime130.jsx)("path", { d: "m6.34 17.66-1.41 1.41" }),
|
|
5301
|
+
/* @__PURE__ */ (0, import_jsx_runtime130.jsx)("path", { d: "m19.07 4.93-1.41 1.41" })
|
|
5251
5302
|
]
|
|
5252
5303
|
}
|
|
5253
5304
|
);
|
|
5254
5305
|
}
|
|
5255
5306
|
|
|
5256
5307
|
// src/components/icons/tag/index.tsx
|
|
5257
|
-
var
|
|
5308
|
+
var import_jsx_runtime131 = require("react/jsx-runtime");
|
|
5258
5309
|
function TagIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5259
|
-
return /* @__PURE__ */ (0,
|
|
5310
|
+
return /* @__PURE__ */ (0, import_jsx_runtime131.jsxs)(
|
|
5260
5311
|
"svg",
|
|
5261
5312
|
{
|
|
5262
5313
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5271,17 +5322,17 @@ function TagIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5271
5322
|
"aria-hidden": "true",
|
|
5272
5323
|
...rest,
|
|
5273
5324
|
children: [
|
|
5274
|
-
/* @__PURE__ */ (0,
|
|
5275
|
-
/* @__PURE__ */ (0,
|
|
5325
|
+
/* @__PURE__ */ (0, import_jsx_runtime131.jsx)("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" }),
|
|
5326
|
+
/* @__PURE__ */ (0, import_jsx_runtime131.jsx)("circle", { cx: "7.5", cy: "7.5", r: ".5", fill: "currentColor" })
|
|
5276
5327
|
]
|
|
5277
5328
|
}
|
|
5278
5329
|
);
|
|
5279
5330
|
}
|
|
5280
5331
|
|
|
5281
5332
|
// src/components/icons/thumbs-down/index.tsx
|
|
5282
|
-
var
|
|
5333
|
+
var import_jsx_runtime132 = require("react/jsx-runtime");
|
|
5283
5334
|
function ThumbsDownIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5284
|
-
return /* @__PURE__ */ (0,
|
|
5335
|
+
return /* @__PURE__ */ (0, import_jsx_runtime132.jsxs)(
|
|
5285
5336
|
"svg",
|
|
5286
5337
|
{
|
|
5287
5338
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5296,17 +5347,17 @@ function ThumbsDownIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5296
5347
|
"aria-hidden": "true",
|
|
5297
5348
|
...rest,
|
|
5298
5349
|
children: [
|
|
5299
|
-
/* @__PURE__ */ (0,
|
|
5300
|
-
/* @__PURE__ */ (0,
|
|
5350
|
+
/* @__PURE__ */ (0, import_jsx_runtime132.jsx)("path", { d: "M17 14V2" }),
|
|
5351
|
+
/* @__PURE__ */ (0, import_jsx_runtime132.jsx)("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" })
|
|
5301
5352
|
]
|
|
5302
5353
|
}
|
|
5303
5354
|
);
|
|
5304
5355
|
}
|
|
5305
5356
|
|
|
5306
5357
|
// src/components/icons/thumbs-up/index.tsx
|
|
5307
|
-
var
|
|
5358
|
+
var import_jsx_runtime133 = require("react/jsx-runtime");
|
|
5308
5359
|
function ThumbsUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5309
|
-
return /* @__PURE__ */ (0,
|
|
5360
|
+
return /* @__PURE__ */ (0, import_jsx_runtime133.jsxs)(
|
|
5310
5361
|
"svg",
|
|
5311
5362
|
{
|
|
5312
5363
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5321,17 +5372,17 @@ function ThumbsUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5321
5372
|
"aria-hidden": "true",
|
|
5322
5373
|
...rest,
|
|
5323
5374
|
children: [
|
|
5324
|
-
/* @__PURE__ */ (0,
|
|
5325
|
-
/* @__PURE__ */ (0,
|
|
5375
|
+
/* @__PURE__ */ (0, import_jsx_runtime133.jsx)("path", { d: "M7 10v12" }),
|
|
5376
|
+
/* @__PURE__ */ (0, import_jsx_runtime133.jsx)("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" })
|
|
5326
5377
|
]
|
|
5327
5378
|
}
|
|
5328
5379
|
);
|
|
5329
5380
|
}
|
|
5330
5381
|
|
|
5331
5382
|
// src/components/icons/trash/index.tsx
|
|
5332
|
-
var
|
|
5383
|
+
var import_jsx_runtime134 = require("react/jsx-runtime");
|
|
5333
5384
|
function TrashIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5334
|
-
return /* @__PURE__ */ (0,
|
|
5385
|
+
return /* @__PURE__ */ (0, import_jsx_runtime134.jsxs)(
|
|
5335
5386
|
"svg",
|
|
5336
5387
|
{
|
|
5337
5388
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5346,18 +5397,18 @@ function TrashIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5346
5397
|
"aria-hidden": "true",
|
|
5347
5398
|
...rest,
|
|
5348
5399
|
children: [
|
|
5349
|
-
/* @__PURE__ */ (0,
|
|
5350
|
-
/* @__PURE__ */ (0,
|
|
5351
|
-
/* @__PURE__ */ (0,
|
|
5400
|
+
/* @__PURE__ */ (0, import_jsx_runtime134.jsx)("path", { d: "M3 6h18" }),
|
|
5401
|
+
/* @__PURE__ */ (0, import_jsx_runtime134.jsx)("path", { d: "M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6" }),
|
|
5402
|
+
/* @__PURE__ */ (0, import_jsx_runtime134.jsx)("path", { d: "M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2" })
|
|
5352
5403
|
]
|
|
5353
5404
|
}
|
|
5354
5405
|
);
|
|
5355
5406
|
}
|
|
5356
5407
|
|
|
5357
5408
|
// src/components/icons/undo/index.tsx
|
|
5358
|
-
var
|
|
5409
|
+
var import_jsx_runtime135 = require("react/jsx-runtime");
|
|
5359
5410
|
function UndoIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5360
|
-
return /* @__PURE__ */ (0,
|
|
5411
|
+
return /* @__PURE__ */ (0, import_jsx_runtime135.jsxs)(
|
|
5361
5412
|
"svg",
|
|
5362
5413
|
{
|
|
5363
5414
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5372,17 +5423,17 @@ function UndoIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5372
5423
|
"aria-hidden": "true",
|
|
5373
5424
|
...rest,
|
|
5374
5425
|
children: [
|
|
5375
|
-
/* @__PURE__ */ (0,
|
|
5376
|
-
/* @__PURE__ */ (0,
|
|
5426
|
+
/* @__PURE__ */ (0, import_jsx_runtime135.jsx)("path", { d: "M3 7v6h6" }),
|
|
5427
|
+
/* @__PURE__ */ (0, import_jsx_runtime135.jsx)("path", { d: "M21 17a9 9 0 0 0-9-9 9 9 0 0 0-6 2.3L3 13" })
|
|
5377
5428
|
]
|
|
5378
5429
|
}
|
|
5379
5430
|
);
|
|
5380
5431
|
}
|
|
5381
5432
|
|
|
5382
5433
|
// src/components/icons/unlock/index.tsx
|
|
5383
|
-
var
|
|
5434
|
+
var import_jsx_runtime136 = require("react/jsx-runtime");
|
|
5384
5435
|
function UnlockIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5385
|
-
return /* @__PURE__ */ (0,
|
|
5436
|
+
return /* @__PURE__ */ (0, import_jsx_runtime136.jsxs)(
|
|
5386
5437
|
"svg",
|
|
5387
5438
|
{
|
|
5388
5439
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5397,17 +5448,17 @@ function UnlockIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5397
5448
|
"aria-hidden": "true",
|
|
5398
5449
|
...rest,
|
|
5399
5450
|
children: [
|
|
5400
|
-
/* @__PURE__ */ (0,
|
|
5401
|
-
/* @__PURE__ */ (0,
|
|
5451
|
+
/* @__PURE__ */ (0, import_jsx_runtime136.jsx)("rect", { width: "18", height: "11", x: "3", y: "11", rx: "2", ry: "2" }),
|
|
5452
|
+
/* @__PURE__ */ (0, import_jsx_runtime136.jsx)("path", { d: "M7 11V7a5 5 0 0 1 9.9-1" })
|
|
5402
5453
|
]
|
|
5403
5454
|
}
|
|
5404
5455
|
);
|
|
5405
5456
|
}
|
|
5406
5457
|
|
|
5407
5458
|
// src/components/icons/upload/index.tsx
|
|
5408
|
-
var
|
|
5459
|
+
var import_jsx_runtime137 = require("react/jsx-runtime");
|
|
5409
5460
|
function UploadIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5410
|
-
return /* @__PURE__ */ (0,
|
|
5461
|
+
return /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)(
|
|
5411
5462
|
"svg",
|
|
5412
5463
|
{
|
|
5413
5464
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5422,18 +5473,18 @@ function UploadIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5422
5473
|
"aria-hidden": "true",
|
|
5423
5474
|
...rest,
|
|
5424
5475
|
children: [
|
|
5425
|
-
/* @__PURE__ */ (0,
|
|
5426
|
-
/* @__PURE__ */ (0,
|
|
5427
|
-
/* @__PURE__ */ (0,
|
|
5476
|
+
/* @__PURE__ */ (0, import_jsx_runtime137.jsx)("path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" }),
|
|
5477
|
+
/* @__PURE__ */ (0, import_jsx_runtime137.jsx)("polyline", { points: "17 8 12 3 7 8" }),
|
|
5478
|
+
/* @__PURE__ */ (0, import_jsx_runtime137.jsx)("line", { x1: "12", x2: "12", y1: "3", y2: "15" })
|
|
5428
5479
|
]
|
|
5429
5480
|
}
|
|
5430
5481
|
);
|
|
5431
5482
|
}
|
|
5432
5483
|
|
|
5433
5484
|
// src/components/icons/user/index.tsx
|
|
5434
|
-
var
|
|
5485
|
+
var import_jsx_runtime138 = require("react/jsx-runtime");
|
|
5435
5486
|
function UserIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5436
|
-
return /* @__PURE__ */ (0,
|
|
5487
|
+
return /* @__PURE__ */ (0, import_jsx_runtime138.jsxs)(
|
|
5437
5488
|
"svg",
|
|
5438
5489
|
{
|
|
5439
5490
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5448,17 +5499,17 @@ function UserIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5448
5499
|
"aria-hidden": "true",
|
|
5449
5500
|
...rest,
|
|
5450
5501
|
children: [
|
|
5451
|
-
/* @__PURE__ */ (0,
|
|
5452
|
-
/* @__PURE__ */ (0,
|
|
5502
|
+
/* @__PURE__ */ (0, import_jsx_runtime138.jsx)("path", { d: "M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2" }),
|
|
5503
|
+
/* @__PURE__ */ (0, import_jsx_runtime138.jsx)("circle", { cx: "12", cy: "7", r: "4" })
|
|
5453
5504
|
]
|
|
5454
5505
|
}
|
|
5455
5506
|
);
|
|
5456
5507
|
}
|
|
5457
5508
|
|
|
5458
5509
|
// src/components/icons/user-check/index.tsx
|
|
5459
|
-
var
|
|
5510
|
+
var import_jsx_runtime139 = require("react/jsx-runtime");
|
|
5460
5511
|
function UserCheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5461
|
-
return /* @__PURE__ */ (0,
|
|
5512
|
+
return /* @__PURE__ */ (0, import_jsx_runtime139.jsxs)(
|
|
5462
5513
|
"svg",
|
|
5463
5514
|
{
|
|
5464
5515
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5473,18 +5524,18 @@ function UserCheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5473
5524
|
"aria-hidden": "true",
|
|
5474
5525
|
...rest,
|
|
5475
5526
|
children: [
|
|
5476
|
-
/* @__PURE__ */ (0,
|
|
5477
|
-
/* @__PURE__ */ (0,
|
|
5478
|
-
/* @__PURE__ */ (0,
|
|
5527
|
+
/* @__PURE__ */ (0, import_jsx_runtime139.jsx)("path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }),
|
|
5528
|
+
/* @__PURE__ */ (0, import_jsx_runtime139.jsx)("circle", { cx: "9", cy: "7", r: "4" }),
|
|
5529
|
+
/* @__PURE__ */ (0, import_jsx_runtime139.jsx)("polyline", { points: "16 11 18 13 22 9" })
|
|
5479
5530
|
]
|
|
5480
5531
|
}
|
|
5481
5532
|
);
|
|
5482
5533
|
}
|
|
5483
5534
|
|
|
5484
5535
|
// src/components/icons/user-plus/index.tsx
|
|
5485
|
-
var
|
|
5536
|
+
var import_jsx_runtime140 = require("react/jsx-runtime");
|
|
5486
5537
|
function UserPlusIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5487
|
-
return /* @__PURE__ */ (0,
|
|
5538
|
+
return /* @__PURE__ */ (0, import_jsx_runtime140.jsxs)(
|
|
5488
5539
|
"svg",
|
|
5489
5540
|
{
|
|
5490
5541
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5499,19 +5550,19 @@ function UserPlusIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5499
5550
|
"aria-hidden": "true",
|
|
5500
5551
|
...rest,
|
|
5501
5552
|
children: [
|
|
5502
|
-
/* @__PURE__ */ (0,
|
|
5503
|
-
/* @__PURE__ */ (0,
|
|
5504
|
-
/* @__PURE__ */ (0,
|
|
5505
|
-
/* @__PURE__ */ (0,
|
|
5553
|
+
/* @__PURE__ */ (0, import_jsx_runtime140.jsx)("path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }),
|
|
5554
|
+
/* @__PURE__ */ (0, import_jsx_runtime140.jsx)("circle", { cx: "9", cy: "7", r: "4" }),
|
|
5555
|
+
/* @__PURE__ */ (0, import_jsx_runtime140.jsx)("line", { x1: "19", x2: "19", y1: "8", y2: "14" }),
|
|
5556
|
+
/* @__PURE__ */ (0, import_jsx_runtime140.jsx)("line", { x1: "22", x2: "16", y1: "11", y2: "11" })
|
|
5506
5557
|
]
|
|
5507
5558
|
}
|
|
5508
5559
|
);
|
|
5509
5560
|
}
|
|
5510
5561
|
|
|
5511
5562
|
// src/components/icons/users/index.tsx
|
|
5512
|
-
var
|
|
5563
|
+
var import_jsx_runtime141 = require("react/jsx-runtime");
|
|
5513
5564
|
function UsersIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5514
|
-
return /* @__PURE__ */ (0,
|
|
5565
|
+
return /* @__PURE__ */ (0, import_jsx_runtime141.jsxs)(
|
|
5515
5566
|
"svg",
|
|
5516
5567
|
{
|
|
5517
5568
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5526,19 +5577,19 @@ function UsersIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5526
5577
|
"aria-hidden": "true",
|
|
5527
5578
|
...rest,
|
|
5528
5579
|
children: [
|
|
5529
|
-
/* @__PURE__ */ (0,
|
|
5530
|
-
/* @__PURE__ */ (0,
|
|
5531
|
-
/* @__PURE__ */ (0,
|
|
5532
|
-
/* @__PURE__ */ (0,
|
|
5580
|
+
/* @__PURE__ */ (0, import_jsx_runtime141.jsx)("path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }),
|
|
5581
|
+
/* @__PURE__ */ (0, import_jsx_runtime141.jsx)("circle", { cx: "9", cy: "7", r: "4" }),
|
|
5582
|
+
/* @__PURE__ */ (0, import_jsx_runtime141.jsx)("path", { d: "M22 21v-2a4 4 0 0 0-3-3.87" }),
|
|
5583
|
+
/* @__PURE__ */ (0, import_jsx_runtime141.jsx)("path", { d: "M16 3.13a4 4 0 0 1 0 7.75" })
|
|
5533
5584
|
]
|
|
5534
5585
|
}
|
|
5535
5586
|
);
|
|
5536
5587
|
}
|
|
5537
5588
|
|
|
5538
5589
|
// src/components/icons/volume-2/index.tsx
|
|
5539
|
-
var
|
|
5590
|
+
var import_jsx_runtime142 = require("react/jsx-runtime");
|
|
5540
5591
|
function Volume2Icon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5541
|
-
return /* @__PURE__ */ (0,
|
|
5592
|
+
return /* @__PURE__ */ (0, import_jsx_runtime142.jsxs)(
|
|
5542
5593
|
"svg",
|
|
5543
5594
|
{
|
|
5544
5595
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5553,18 +5604,18 @@ function Volume2Icon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5553
5604
|
"aria-hidden": "true",
|
|
5554
5605
|
...rest,
|
|
5555
5606
|
children: [
|
|
5556
|
-
/* @__PURE__ */ (0,
|
|
5557
|
-
/* @__PURE__ */ (0,
|
|
5558
|
-
/* @__PURE__ */ (0,
|
|
5607
|
+
/* @__PURE__ */ (0, import_jsx_runtime142.jsx)("polygon", { points: "11 5 6 9 2 9 2 15 6 15 11 19 11 5" }),
|
|
5608
|
+
/* @__PURE__ */ (0, import_jsx_runtime142.jsx)("path", { d: "M15.54 8.46a5 5 0 0 1 0 7.07" }),
|
|
5609
|
+
/* @__PURE__ */ (0, import_jsx_runtime142.jsx)("path", { d: "M19.07 4.93a10 10 0 0 1 0 14.14" })
|
|
5559
5610
|
]
|
|
5560
5611
|
}
|
|
5561
5612
|
);
|
|
5562
5613
|
}
|
|
5563
5614
|
|
|
5564
5615
|
// src/components/icons/volume-x/index.tsx
|
|
5565
|
-
var
|
|
5616
|
+
var import_jsx_runtime143 = require("react/jsx-runtime");
|
|
5566
5617
|
function VolumeXIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5567
|
-
return /* @__PURE__ */ (0,
|
|
5618
|
+
return /* @__PURE__ */ (0, import_jsx_runtime143.jsxs)(
|
|
5568
5619
|
"svg",
|
|
5569
5620
|
{
|
|
5570
5621
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5579,18 +5630,18 @@ function VolumeXIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5579
5630
|
"aria-hidden": "true",
|
|
5580
5631
|
...rest,
|
|
5581
5632
|
children: [
|
|
5582
|
-
/* @__PURE__ */ (0,
|
|
5583
|
-
/* @__PURE__ */ (0,
|
|
5584
|
-
/* @__PURE__ */ (0,
|
|
5633
|
+
/* @__PURE__ */ (0, import_jsx_runtime143.jsx)("polygon", { points: "11 5 6 9 2 9 2 15 6 15 11 19 11 5" }),
|
|
5634
|
+
/* @__PURE__ */ (0, import_jsx_runtime143.jsx)("line", { x1: "22", x2: "16", y1: "9", y2: "15" }),
|
|
5635
|
+
/* @__PURE__ */ (0, import_jsx_runtime143.jsx)("line", { x1: "16", x2: "22", y1: "9", y2: "15" })
|
|
5585
5636
|
]
|
|
5586
5637
|
}
|
|
5587
5638
|
);
|
|
5588
5639
|
}
|
|
5589
5640
|
|
|
5590
5641
|
// src/components/icons/wifi/index.tsx
|
|
5591
|
-
var
|
|
5642
|
+
var import_jsx_runtime144 = require("react/jsx-runtime");
|
|
5592
5643
|
function WifiIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5593
|
-
return /* @__PURE__ */ (0,
|
|
5644
|
+
return /* @__PURE__ */ (0, import_jsx_runtime144.jsxs)(
|
|
5594
5645
|
"svg",
|
|
5595
5646
|
{
|
|
5596
5647
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5605,19 +5656,19 @@ function WifiIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5605
5656
|
"aria-hidden": "true",
|
|
5606
5657
|
...rest,
|
|
5607
5658
|
children: [
|
|
5608
|
-
/* @__PURE__ */ (0,
|
|
5609
|
-
/* @__PURE__ */ (0,
|
|
5610
|
-
/* @__PURE__ */ (0,
|
|
5611
|
-
/* @__PURE__ */ (0,
|
|
5659
|
+
/* @__PURE__ */ (0, import_jsx_runtime144.jsx)("path", { d: "M12 20h.01" }),
|
|
5660
|
+
/* @__PURE__ */ (0, import_jsx_runtime144.jsx)("path", { d: "M2 8.82a15 15 0 0 1 20 0" }),
|
|
5661
|
+
/* @__PURE__ */ (0, import_jsx_runtime144.jsx)("path", { d: "M5 12.859a10 10 0 0 1 14 0" }),
|
|
5662
|
+
/* @__PURE__ */ (0, import_jsx_runtime144.jsx)("path", { d: "M8.5 16.429a5 5 0 0 1 7 0" })
|
|
5612
5663
|
]
|
|
5613
5664
|
}
|
|
5614
5665
|
);
|
|
5615
5666
|
}
|
|
5616
5667
|
|
|
5617
5668
|
// src/components/icons/zap/index.tsx
|
|
5618
|
-
var
|
|
5669
|
+
var import_jsx_runtime145 = require("react/jsx-runtime");
|
|
5619
5670
|
function ZapIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5620
|
-
return /* @__PURE__ */ (0,
|
|
5671
|
+
return /* @__PURE__ */ (0, import_jsx_runtime145.jsx)(
|
|
5621
5672
|
"svg",
|
|
5622
5673
|
{
|
|
5623
5674
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5631,7 +5682,7 @@ function ZapIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5631
5682
|
strokeLinejoin: "round",
|
|
5632
5683
|
"aria-hidden": "true",
|
|
5633
5684
|
...rest,
|
|
5634
|
-
children: /* @__PURE__ */ (0,
|
|
5685
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime145.jsx)("polygon", { points: "13 2 3 14 12 14 11 22 21 10 12 10 13 2" })
|
|
5635
5686
|
}
|
|
5636
5687
|
);
|
|
5637
5688
|
}
|
|
@@ -5869,6 +5920,7 @@ var iconCatalog = [
|
|
|
5869
5920
|
StarIcon,
|
|
5870
5921
|
Stepper,
|
|
5871
5922
|
SunIcon,
|
|
5923
|
+
Surface,
|
|
5872
5924
|
Switch,
|
|
5873
5925
|
Table,
|
|
5874
5926
|
Tabs,
|