@octavius2929-personal/design-system 0.23.2 → 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 +928 -882
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +9 -0
- package/dist/index.css.map +1 -1
- package/dist/index.d.cts +21 -2
- package/dist/index.d.ts +21 -2
- package/dist/index.js +787 -742
- 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
|
|
@@ -610,7 +611,8 @@ function ThemeProvider({
|
|
|
610
611
|
defaultSchema = "tinta",
|
|
611
612
|
defaultMode = "light",
|
|
612
613
|
storageKey = "ds-theme",
|
|
613
|
-
persist = true
|
|
614
|
+
persist = true,
|
|
615
|
+
paintRoot = false
|
|
614
616
|
}) {
|
|
615
617
|
const storage = (0, import_react7.useMemo)(
|
|
616
618
|
() => createWebStorageAdapter(storageKey, persist),
|
|
@@ -618,6 +620,15 @@ function ThemeProvider({
|
|
|
618
620
|
);
|
|
619
621
|
const system = (0, import_react7.useMemo)(() => createWebSystemModeAdapter(), []);
|
|
620
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]);
|
|
621
632
|
const value = (0, import_react7.useMemo)(
|
|
622
633
|
() => ({
|
|
623
634
|
schema: store.schema,
|
|
@@ -631,12 +642,46 @@ function ThemeProvider({
|
|
|
631
642
|
}),
|
|
632
643
|
[store]
|
|
633
644
|
);
|
|
634
|
-
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 });
|
|
635
646
|
}
|
|
636
647
|
function useTheme() {
|
|
637
648
|
return (0, import_react7.useContext)(ThemeContext) ?? DEFAULT_VALUE;
|
|
638
649
|
}
|
|
639
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
|
+
|
|
640
685
|
// src/theme/typography.css.ts
|
|
641
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" };
|
|
642
687
|
|
|
@@ -646,13 +691,13 @@ var base = "use-styles_base__d74jf60";
|
|
|
646
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" };
|
|
647
692
|
|
|
648
693
|
// src/components/typography/use-styles.ts
|
|
649
|
-
function
|
|
694
|
+
function useStyles3({
|
|
650
695
|
variant: variant2,
|
|
651
696
|
color: color2,
|
|
652
697
|
align: align2
|
|
653
698
|
}) {
|
|
654
699
|
const { themeClass } = useTheme();
|
|
655
|
-
const className = (0,
|
|
700
|
+
const className = (0, import_react10.useMemo)(
|
|
656
701
|
() => [
|
|
657
702
|
themeClass,
|
|
658
703
|
base,
|
|
@@ -666,7 +711,7 @@ function useStyles2({
|
|
|
666
711
|
}
|
|
667
712
|
|
|
668
713
|
// src/components/typography/index.tsx
|
|
669
|
-
var
|
|
714
|
+
var import_jsx_runtime5 = require("react/jsx-runtime");
|
|
670
715
|
var defaultElement = {
|
|
671
716
|
display: "h1",
|
|
672
717
|
h1: "h1",
|
|
@@ -683,18 +728,18 @@ var defaultElement = {
|
|
|
683
728
|
};
|
|
684
729
|
function TypographyInner({ variant: variant2, as, color: color2, align: align2, testId, ...rest }, ref) {
|
|
685
730
|
const Component = as ?? defaultElement[variant2];
|
|
686
|
-
const { text: text2 } =
|
|
731
|
+
const { text: text2 } = useStyles3({ variant: variant2, color: color2, align: align2 });
|
|
687
732
|
const { testId: dataTestId } = useTestId("text", testId);
|
|
688
|
-
return /* @__PURE__ */ (0,
|
|
733
|
+
return /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(Component, { ref, "data-testid": dataTestId, ...rest, className: text2 });
|
|
689
734
|
}
|
|
690
|
-
var TypographyForwarded = (0,
|
|
735
|
+
var TypographyForwarded = (0, import_react11.forwardRef)(
|
|
691
736
|
TypographyInner
|
|
692
737
|
);
|
|
693
738
|
TypographyForwarded.displayName = "Typography";
|
|
694
739
|
var Typography = TypographyForwarded;
|
|
695
740
|
|
|
696
741
|
// src/components/button/index.tsx
|
|
697
|
-
var
|
|
742
|
+
var import_react13 = require("react");
|
|
698
743
|
|
|
699
744
|
// src/testing/states.ts
|
|
700
745
|
function states(map) {
|
|
@@ -703,7 +748,7 @@ function states(map) {
|
|
|
703
748
|
}
|
|
704
749
|
|
|
705
750
|
// src/components/button/use-styles.ts
|
|
706
|
-
var
|
|
751
|
+
var import_react12 = require("react");
|
|
707
752
|
|
|
708
753
|
// src/components/button/use-styles.css.ts
|
|
709
754
|
var full = "use-styles_full__1pbtill4";
|
|
@@ -716,7 +761,7 @@ function toneKey(variant2, tone4) {
|
|
|
716
761
|
const Tone = `${tone4.charAt(0).toUpperCase()}${tone4.slice(1)}`;
|
|
717
762
|
return `${variant2}${Tone}`;
|
|
718
763
|
}
|
|
719
|
-
function
|
|
764
|
+
function useStyles4({
|
|
720
765
|
variant: variant2 = "filled",
|
|
721
766
|
tone: tone4 = "ink",
|
|
722
767
|
size: size3 = "md",
|
|
@@ -724,7 +769,7 @@ function useStyles3({
|
|
|
724
769
|
className
|
|
725
770
|
}) {
|
|
726
771
|
const { themeClass } = useTheme();
|
|
727
|
-
const container = (0,
|
|
772
|
+
const container = (0, import_react12.useMemo)(
|
|
728
773
|
() => [
|
|
729
774
|
themeClass,
|
|
730
775
|
root,
|
|
@@ -739,9 +784,9 @@ function useStyles3({
|
|
|
739
784
|
}
|
|
740
785
|
|
|
741
786
|
// src/components/button/index.tsx
|
|
742
|
-
var
|
|
787
|
+
var import_jsx_runtime6 = require("react/jsx-runtime");
|
|
743
788
|
var ICON_SIZE = { sm: 14, md: 16, lg: 18 };
|
|
744
|
-
var Button = (0,
|
|
789
|
+
var Button = (0, import_react13.forwardRef)(function Button2({
|
|
745
790
|
variant: variant2,
|
|
746
791
|
tone: tone4,
|
|
747
792
|
size: size3 = "md",
|
|
@@ -754,10 +799,10 @@ var Button = (0, import_react11.forwardRef)(function Button2({
|
|
|
754
799
|
children,
|
|
755
800
|
...rest
|
|
756
801
|
}, ref) {
|
|
757
|
-
const { container } =
|
|
802
|
+
const { container } = useStyles4({ variant: variant2, tone: tone4, size: size3, full: full2, className });
|
|
758
803
|
const { testId: dataTestId } = useTestId("button", testId);
|
|
759
804
|
const iconSize = ICON_SIZE[size3];
|
|
760
|
-
return /* @__PURE__ */ (0,
|
|
805
|
+
return /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(
|
|
761
806
|
"button",
|
|
762
807
|
{
|
|
763
808
|
ref,
|
|
@@ -767,19 +812,19 @@ var Button = (0, import_react11.forwardRef)(function Button2({
|
|
|
767
812
|
"data-state": states({ disabled: rest.disabled }),
|
|
768
813
|
...rest,
|
|
769
814
|
children: [
|
|
770
|
-
StartIcon && /* @__PURE__ */ (0,
|
|
815
|
+
StartIcon && /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(StartIcon, { size: iconSize }),
|
|
771
816
|
children,
|
|
772
|
-
EndIcon && /* @__PURE__ */ (0,
|
|
817
|
+
EndIcon && /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(EndIcon, { size: iconSize })
|
|
773
818
|
]
|
|
774
819
|
}
|
|
775
820
|
);
|
|
776
821
|
});
|
|
777
822
|
|
|
778
823
|
// src/components/divider/index.tsx
|
|
779
|
-
var
|
|
824
|
+
var import_react15 = require("react");
|
|
780
825
|
|
|
781
826
|
// src/components/divider/use-styles.ts
|
|
782
|
-
var
|
|
827
|
+
var import_react14 = require("react");
|
|
783
828
|
|
|
784
829
|
// src/components/divider/use-styles.css.ts
|
|
785
830
|
var horizontal = "use-styles_horizontal__1n7v7yj1";
|
|
@@ -790,9 +835,9 @@ var root2 = "use-styles_root__1n7v7yj0";
|
|
|
790
835
|
var vertical = "use-styles_vertical__1n7v7yj2";
|
|
791
836
|
|
|
792
837
|
// src/components/divider/use-styles.ts
|
|
793
|
-
function
|
|
838
|
+
function useStyles5({ vertical: vertical2, hasLabel }) {
|
|
794
839
|
const { themeClass } = useTheme();
|
|
795
|
-
const root24 = (0,
|
|
840
|
+
const root24 = (0, import_react14.useMemo)(
|
|
796
841
|
() => [
|
|
797
842
|
themeClass,
|
|
798
843
|
root2,
|
|
@@ -804,26 +849,26 @@ function useStyles4({ vertical: vertical2, hasLabel }) {
|
|
|
804
849
|
}
|
|
805
850
|
|
|
806
851
|
// src/components/divider/index.tsx
|
|
807
|
-
var
|
|
808
|
-
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) {
|
|
809
854
|
const hasLabel = label7 != null;
|
|
810
|
-
const { root: root24, line: line2, label: labelClass } =
|
|
855
|
+
const { root: root24, line: line2, label: labelClass } = useStyles5({ vertical: vertical2, hasLabel });
|
|
811
856
|
const { testId: dataTestId, slot } = useTestId("layout", testId);
|
|
812
857
|
if (hasLabel) {
|
|
813
|
-
return /* @__PURE__ */ (0,
|
|
814
|
-
/* @__PURE__ */ (0,
|
|
815
|
-
/* @__PURE__ */ (0,
|
|
816
|
-
/* @__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 })
|
|
817
862
|
] });
|
|
818
863
|
}
|
|
819
|
-
return /* @__PURE__ */ (0,
|
|
864
|
+
return /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("div", { ref, role: "separator", className: root24, "data-testid": dataTestId, ...rest });
|
|
820
865
|
});
|
|
821
866
|
|
|
822
867
|
// src/components/avatar/index.tsx
|
|
823
|
-
var
|
|
868
|
+
var import_react17 = require("react");
|
|
824
869
|
|
|
825
870
|
// src/components/avatar/use-styles.ts
|
|
826
|
-
var
|
|
871
|
+
var import_react16 = require("react");
|
|
827
872
|
|
|
828
873
|
// src/components/avatar/use-styles.css.ts
|
|
829
874
|
var root3 = "use-styles_root__1mn1rmu0";
|
|
@@ -831,13 +876,13 @@ var size2 = { sm: "use-styles_size_sm__1mn1rmu1", md: "use-styles_size_md__1mn1r
|
|
|
831
876
|
var variant = { "default": "use-styles_variant_default__1mn1rmu4", filled: "use-styles_variant_filled__1mn1rmu5" };
|
|
832
877
|
|
|
833
878
|
// src/components/avatar/use-styles.ts
|
|
834
|
-
function
|
|
879
|
+
function useStyles6({
|
|
835
880
|
size: size3 = "md",
|
|
836
881
|
filled,
|
|
837
882
|
className
|
|
838
883
|
}) {
|
|
839
884
|
const { themeClass } = useTheme();
|
|
840
|
-
const root24 = (0,
|
|
885
|
+
const root24 = (0, import_react16.useMemo)(
|
|
841
886
|
() => [
|
|
842
887
|
themeClass,
|
|
843
888
|
root3,
|
|
@@ -851,18 +896,18 @@ function useStyles5({
|
|
|
851
896
|
}
|
|
852
897
|
|
|
853
898
|
// src/components/avatar/index.tsx
|
|
854
|
-
var
|
|
855
|
-
var Avatar = (0,
|
|
856
|
-
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 });
|
|
857
902
|
const { testId: dataTestId } = useTestId("media", testId);
|
|
858
|
-
return /* @__PURE__ */ (0,
|
|
903
|
+
return /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { ref, className: root24, "data-testid": dataTestId, ...rest, children });
|
|
859
904
|
});
|
|
860
905
|
|
|
861
906
|
// src/components/badge/index.tsx
|
|
862
|
-
var
|
|
907
|
+
var import_react19 = require("react");
|
|
863
908
|
|
|
864
909
|
// src/components/badge/use-styles.ts
|
|
865
|
-
var
|
|
910
|
+
var import_react18 = require("react");
|
|
866
911
|
|
|
867
912
|
// src/components/badge/use-styles.css.ts
|
|
868
913
|
var dot = "use-styles_dot__1wpei6p1";
|
|
@@ -870,35 +915,35 @@ var root4 = "use-styles_root__1wpei6p0";
|
|
|
870
915
|
var tone2 = { ink: "use-styles_tone_ink__1wpei6p2", accent: "use-styles_tone_accent__1wpei6p3" };
|
|
871
916
|
|
|
872
917
|
// src/components/badge/use-styles.ts
|
|
873
|
-
function
|
|
918
|
+
function useStyles7({
|
|
874
919
|
tone: tone4 = "ink",
|
|
875
920
|
className
|
|
876
921
|
}) {
|
|
877
922
|
const { themeClass } = useTheme();
|
|
878
|
-
const root24 = (0,
|
|
923
|
+
const root24 = (0, import_react18.useMemo)(
|
|
879
924
|
() => [themeClass, root4, className].filter(Boolean).join(" "),
|
|
880
925
|
[themeClass, className]
|
|
881
926
|
);
|
|
882
|
-
const dot3 = (0,
|
|
927
|
+
const dot3 = (0, import_react18.useMemo)(() => [dot, tone2[tone4]].join(" "), [tone4]);
|
|
883
928
|
return { root: root24, dot: dot3 };
|
|
884
929
|
}
|
|
885
930
|
|
|
886
931
|
// src/components/badge/index.tsx
|
|
887
|
-
var
|
|
888
|
-
var Badge = (0,
|
|
889
|
-
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 });
|
|
890
935
|
const { testId: dataTestId, slot } = useTestId("media", testId);
|
|
891
|
-
return /* @__PURE__ */ (0,
|
|
936
|
+
return /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("span", { ref, className: root24, "data-testid": dataTestId, ...rest, children: [
|
|
892
937
|
children,
|
|
893
|
-
count != null && /* @__PURE__ */ (0,
|
|
938
|
+
count != null && /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: dot3, "data-testid": slot("dot"), children: count })
|
|
894
939
|
] });
|
|
895
940
|
});
|
|
896
941
|
|
|
897
942
|
// src/components/progress/index.tsx
|
|
898
|
-
var
|
|
943
|
+
var import_react21 = require("react");
|
|
899
944
|
|
|
900
945
|
// src/components/progress/use-styles.ts
|
|
901
|
-
var
|
|
946
|
+
var import_react20 = require("react");
|
|
902
947
|
|
|
903
948
|
// src/components/progress/use-styles.css.ts
|
|
904
949
|
var bar = "use-styles_bar__kbop7v3";
|
|
@@ -907,14 +952,14 @@ var spinner = "use-styles_spinner__kbop7v5";
|
|
|
907
952
|
var track = "use-styles_track__kbop7v2";
|
|
908
953
|
|
|
909
954
|
// src/components/progress/use-styles.ts
|
|
910
|
-
function
|
|
955
|
+
function useStyles8({
|
|
911
956
|
variant: variant2 = "linear",
|
|
912
957
|
value,
|
|
913
958
|
className
|
|
914
959
|
}) {
|
|
915
960
|
const { themeClass } = useTheme();
|
|
916
961
|
const indeterminate2 = value === void 0;
|
|
917
|
-
return (0,
|
|
962
|
+
return (0, import_react20.useMemo)(() => {
|
|
918
963
|
const root24 = (...classes) => [themeClass, ...classes, className].filter(Boolean).join(" ");
|
|
919
964
|
if (variant2 === "circular") {
|
|
920
965
|
return { track: "", bar: "", spinner: root24(spinner) };
|
|
@@ -928,13 +973,13 @@ function useStyles7({
|
|
|
928
973
|
}
|
|
929
974
|
|
|
930
975
|
// src/components/progress/index.tsx
|
|
931
|
-
var
|
|
932
|
-
var Progress = (0,
|
|
933
|
-
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 });
|
|
934
979
|
const indeterminate2 = value === void 0;
|
|
935
980
|
const { testId: dataTestId, slot } = useTestId("media", testId);
|
|
936
981
|
if (variant2 === "circular") {
|
|
937
|
-
return /* @__PURE__ */ (0,
|
|
982
|
+
return /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
|
|
938
983
|
"span",
|
|
939
984
|
{
|
|
940
985
|
ref,
|
|
@@ -950,7 +995,7 @@ var Progress = (0, import_react19.forwardRef)(function Progress2({ variant: vari
|
|
|
950
995
|
}
|
|
951
996
|
);
|
|
952
997
|
}
|
|
953
|
-
return /* @__PURE__ */ (0,
|
|
998
|
+
return /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
|
|
954
999
|
"div",
|
|
955
1000
|
{
|
|
956
1001
|
ref,
|
|
@@ -962,7 +1007,7 @@ var Progress = (0, import_react19.forwardRef)(function Progress2({ variant: vari
|
|
|
962
1007
|
"data-testid": dataTestId,
|
|
963
1008
|
"data-state": states({ indeterminate: indeterminate2 }),
|
|
964
1009
|
...rest,
|
|
965
|
-
children: /* @__PURE__ */ (0,
|
|
1010
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
|
|
966
1011
|
"div",
|
|
967
1012
|
{
|
|
968
1013
|
className: bar2,
|
|
@@ -975,12 +1020,12 @@ var Progress = (0, import_react19.forwardRef)(function Progress2({ variant: vari
|
|
|
975
1020
|
});
|
|
976
1021
|
|
|
977
1022
|
// src/components/chip/index.tsx
|
|
978
|
-
var
|
|
1023
|
+
var import_react23 = require("react");
|
|
979
1024
|
|
|
980
1025
|
// src/components/icons/x/index.tsx
|
|
981
|
-
var
|
|
1026
|
+
var import_jsx_runtime11 = require("react/jsx-runtime");
|
|
982
1027
|
function XIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
983
|
-
return /* @__PURE__ */ (0,
|
|
1028
|
+
return /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)(
|
|
984
1029
|
"svg",
|
|
985
1030
|
{
|
|
986
1031
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -995,15 +1040,15 @@ function XIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
995
1040
|
"aria-hidden": "true",
|
|
996
1041
|
...rest,
|
|
997
1042
|
children: [
|
|
998
|
-
/* @__PURE__ */ (0,
|
|
999
|
-
/* @__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" })
|
|
1000
1045
|
]
|
|
1001
1046
|
}
|
|
1002
1047
|
);
|
|
1003
1048
|
}
|
|
1004
1049
|
|
|
1005
1050
|
// src/components/chip/use-styles.ts
|
|
1006
|
-
var
|
|
1051
|
+
var import_react22 = require("react");
|
|
1007
1052
|
|
|
1008
1053
|
// src/components/chip/use-styles.css.ts
|
|
1009
1054
|
var clickable = "use-styles_clickable__1axilf44";
|
|
@@ -1013,13 +1058,13 @@ var selected = "use-styles_selected__1axilf43";
|
|
|
1013
1058
|
var tone3 = { ink: "use-styles_tone_ink__1axilf41", accent: "use-styles_tone_accent__1axilf42" };
|
|
1014
1059
|
|
|
1015
1060
|
// src/components/chip/use-styles.ts
|
|
1016
|
-
function
|
|
1061
|
+
function useStyles9({
|
|
1017
1062
|
selected: selected3,
|
|
1018
1063
|
tone: tone4 = "ink",
|
|
1019
1064
|
clickable: clickable2
|
|
1020
1065
|
}) {
|
|
1021
1066
|
const { themeClass } = useTheme();
|
|
1022
|
-
const root24 = (0,
|
|
1067
|
+
const root24 = (0, import_react22.useMemo)(
|
|
1023
1068
|
() => [
|
|
1024
1069
|
themeClass,
|
|
1025
1070
|
root5,
|
|
@@ -1032,17 +1077,17 @@ function useStyles8({
|
|
|
1032
1077
|
}
|
|
1033
1078
|
|
|
1034
1079
|
// src/components/chip/index.tsx
|
|
1035
|
-
var
|
|
1080
|
+
var import_jsx_runtime12 = require("react/jsx-runtime");
|
|
1036
1081
|
var ICON_SIZE2 = 13;
|
|
1037
|
-
var Chip = (0,
|
|
1082
|
+
var Chip = (0, import_react23.forwardRef)(function Chip2({ selected: selected3, tone: tone4, onDelete, onClick, startIcon: StartIcon, children, testId, ...rest }, ref) {
|
|
1038
1083
|
const clickable2 = Boolean(onClick);
|
|
1039
|
-
const { root: root24, deleteBtn: deleteBtn2 } =
|
|
1084
|
+
const { root: root24, deleteBtn: deleteBtn2 } = useStyles9({ selected: selected3, tone: tone4, clickable: clickable2 });
|
|
1040
1085
|
const { testId: dataTestId, slot } = useTestId("media", testId);
|
|
1041
1086
|
const handleDelete = (event) => {
|
|
1042
1087
|
event.stopPropagation();
|
|
1043
1088
|
onDelete?.();
|
|
1044
1089
|
};
|
|
1045
|
-
return /* @__PURE__ */ (0,
|
|
1090
|
+
return /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)(
|
|
1046
1091
|
"span",
|
|
1047
1092
|
{
|
|
1048
1093
|
ref,
|
|
@@ -1052,9 +1097,9 @@ var Chip = (0, import_react21.forwardRef)(function Chip2({ selected: selected3,
|
|
|
1052
1097
|
"data-state": states({ selected: selected3 }),
|
|
1053
1098
|
...rest,
|
|
1054
1099
|
children: [
|
|
1055
|
-
StartIcon ? /* @__PURE__ */ (0,
|
|
1100
|
+
StartIcon ? /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(StartIcon, { size: ICON_SIZE2 }) : null,
|
|
1056
1101
|
children,
|
|
1057
|
-
onDelete && /* @__PURE__ */ (0,
|
|
1102
|
+
onDelete && /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
|
|
1058
1103
|
"button",
|
|
1059
1104
|
{
|
|
1060
1105
|
type: "button",
|
|
@@ -1062,7 +1107,7 @@ var Chip = (0, import_react21.forwardRef)(function Chip2({ selected: selected3,
|
|
|
1062
1107
|
"aria-label": "Remove",
|
|
1063
1108
|
onClick: handleDelete,
|
|
1064
1109
|
"data-testid": slot("delete"),
|
|
1065
|
-
children: /* @__PURE__ */ (0,
|
|
1110
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(XIcon, { size: ICON_SIZE2 })
|
|
1066
1111
|
}
|
|
1067
1112
|
)
|
|
1068
1113
|
]
|
|
@@ -1071,12 +1116,12 @@ var Chip = (0, import_react21.forwardRef)(function Chip2({ selected: selected3,
|
|
|
1071
1116
|
});
|
|
1072
1117
|
|
|
1073
1118
|
// src/components/checkbox/index.tsx
|
|
1074
|
-
var
|
|
1119
|
+
var import_react25 = require("react");
|
|
1075
1120
|
|
|
1076
1121
|
// src/components/icons/check/index.tsx
|
|
1077
|
-
var
|
|
1122
|
+
var import_jsx_runtime13 = require("react/jsx-runtime");
|
|
1078
1123
|
function CheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
1079
|
-
return /* @__PURE__ */ (0,
|
|
1124
|
+
return /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
|
|
1080
1125
|
"svg",
|
|
1081
1126
|
{
|
|
1082
1127
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1090,13 +1135,13 @@ function CheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
1090
1135
|
strokeLinejoin: "round",
|
|
1091
1136
|
"aria-hidden": "true",
|
|
1092
1137
|
...rest,
|
|
1093
|
-
children: /* @__PURE__ */ (0,
|
|
1138
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("path", { d: "M20 6 9 17l-5-5" })
|
|
1094
1139
|
}
|
|
1095
1140
|
);
|
|
1096
1141
|
}
|
|
1097
1142
|
|
|
1098
1143
|
// src/components/checkbox/use-styles.ts
|
|
1099
|
-
var
|
|
1144
|
+
var import_react24 = require("react");
|
|
1100
1145
|
|
|
1101
1146
|
// src/components/checkbox/use-styles.css.ts
|
|
1102
1147
|
var box = "use-styles_box__9zoga91";
|
|
@@ -1107,13 +1152,13 @@ var input = "surfaces_srOnly__1qa7atn0";
|
|
|
1107
1152
|
var root6 = "use-styles_root__9zoga90";
|
|
1108
1153
|
|
|
1109
1154
|
// src/components/checkbox/use-styles.ts
|
|
1110
|
-
function
|
|
1155
|
+
function useStyles10({ checked, disabled: disabled3 }) {
|
|
1111
1156
|
const { themeClass } = useTheme();
|
|
1112
|
-
const root24 = (0,
|
|
1157
|
+
const root24 = (0, import_react24.useMemo)(
|
|
1113
1158
|
() => [themeClass, root6, disabled3 && disabled].filter(Boolean).join(" "),
|
|
1114
1159
|
[themeClass, disabled3]
|
|
1115
1160
|
);
|
|
1116
|
-
const box2 = (0,
|
|
1161
|
+
const box2 = (0, import_react24.useMemo)(
|
|
1117
1162
|
() => [box, checked && boxChecked].filter(Boolean).join(" "),
|
|
1118
1163
|
[checked]
|
|
1119
1164
|
);
|
|
@@ -1121,16 +1166,16 @@ function useStyles9({ checked, disabled: disabled3 }) {
|
|
|
1121
1166
|
}
|
|
1122
1167
|
|
|
1123
1168
|
// src/components/checkbox/index.tsx
|
|
1124
|
-
var
|
|
1125
|
-
var Checkbox = (0,
|
|
1126
|
-
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 });
|
|
1127
1172
|
const { testId: dataTestId } = useTestId("toggle", testId);
|
|
1128
1173
|
const handleChange = (e) => {
|
|
1129
1174
|
if (disabled3) return;
|
|
1130
1175
|
onChange?.(e.target.checked);
|
|
1131
1176
|
};
|
|
1132
|
-
return /* @__PURE__ */ (0,
|
|
1133
|
-
/* @__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)(
|
|
1134
1179
|
"input",
|
|
1135
1180
|
{
|
|
1136
1181
|
ref,
|
|
@@ -1143,16 +1188,16 @@ var Checkbox = (0, import_react23.forwardRef)(function Checkbox2({ checked = fal
|
|
|
1143
1188
|
...rest
|
|
1144
1189
|
}
|
|
1145
1190
|
),
|
|
1146
|
-
/* @__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 }) }),
|
|
1147
1192
|
label7
|
|
1148
1193
|
] });
|
|
1149
1194
|
});
|
|
1150
1195
|
|
|
1151
1196
|
// src/components/radio/index.tsx
|
|
1152
|
-
var
|
|
1197
|
+
var import_react27 = require("react");
|
|
1153
1198
|
|
|
1154
1199
|
// src/components/radio/use-styles.ts
|
|
1155
|
-
var
|
|
1200
|
+
var import_react26 = require("react");
|
|
1156
1201
|
|
|
1157
1202
|
// src/components/radio/use-styles.css.ts
|
|
1158
1203
|
var circle = "use-styles_circle__vy61b42";
|
|
@@ -1163,12 +1208,12 @@ var label2 = "use-styles_label__vy61b44";
|
|
|
1163
1208
|
var root7 = "use-styles_root__vy61b40";
|
|
1164
1209
|
|
|
1165
1210
|
// src/components/radio/use-styles.ts
|
|
1166
|
-
function
|
|
1211
|
+
function useStyles11({
|
|
1167
1212
|
disabled: disabled3,
|
|
1168
1213
|
className
|
|
1169
1214
|
}) {
|
|
1170
1215
|
const { themeClass } = useTheme();
|
|
1171
|
-
const root24 = (0,
|
|
1216
|
+
const root24 = (0, import_react26.useMemo)(
|
|
1172
1217
|
() => [themeClass, root7, disabled3 && disabled2, className].filter(Boolean).join(" "),
|
|
1173
1218
|
[themeClass, disabled3, className]
|
|
1174
1219
|
);
|
|
@@ -1182,12 +1227,12 @@ function useStyles10({
|
|
|
1182
1227
|
}
|
|
1183
1228
|
|
|
1184
1229
|
// src/components/radio/index.tsx
|
|
1185
|
-
var
|
|
1186
|
-
var Radio = (0,
|
|
1187
|
-
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 });
|
|
1188
1233
|
const { testId: dataTestId } = useTestId("toggle", testId);
|
|
1189
|
-
return /* @__PURE__ */ (0,
|
|
1190
|
-
/* @__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)(
|
|
1191
1236
|
"input",
|
|
1192
1237
|
{
|
|
1193
1238
|
ref,
|
|
@@ -1201,16 +1246,16 @@ var Radio = (0, import_react25.forwardRef)(function Radio2({ checked, onChange,
|
|
|
1201
1246
|
...rest
|
|
1202
1247
|
}
|
|
1203
1248
|
),
|
|
1204
|
-
/* @__PURE__ */ (0,
|
|
1205
|
-
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 })
|
|
1206
1251
|
] });
|
|
1207
1252
|
});
|
|
1208
1253
|
|
|
1209
1254
|
// src/components/switch/index.tsx
|
|
1210
|
-
var
|
|
1255
|
+
var import_react29 = require("react");
|
|
1211
1256
|
|
|
1212
1257
|
// src/components/switch/use-styles.ts
|
|
1213
|
-
var
|
|
1258
|
+
var import_react28 = require("react");
|
|
1214
1259
|
|
|
1215
1260
|
// src/components/switch/use-styles.css.ts
|
|
1216
1261
|
var input3 = "surfaces_srOnly__1qa7atn0";
|
|
@@ -1222,9 +1267,9 @@ var track2 = "use-styles_track__1r6kem71";
|
|
|
1222
1267
|
var trackChecked = "use-styles_trackChecked__1r6kem72";
|
|
1223
1268
|
|
|
1224
1269
|
// src/components/switch/use-styles.ts
|
|
1225
|
-
function
|
|
1270
|
+
function useStyles12({ checked }) {
|
|
1226
1271
|
const { themeClass } = useTheme();
|
|
1227
|
-
return (0,
|
|
1272
|
+
return (0, import_react28.useMemo)(
|
|
1228
1273
|
() => ({
|
|
1229
1274
|
root: [themeClass, root8].filter(Boolean).join(" "),
|
|
1230
1275
|
input: input3,
|
|
@@ -1237,12 +1282,12 @@ function useStyles11({ checked }) {
|
|
|
1237
1282
|
}
|
|
1238
1283
|
|
|
1239
1284
|
// src/components/switch/index.tsx
|
|
1240
|
-
var
|
|
1241
|
-
var Switch = (0,
|
|
1242
|
-
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 });
|
|
1243
1288
|
const { testId: dataTestId } = useTestId("toggle", testId);
|
|
1244
|
-
return /* @__PURE__ */ (0,
|
|
1245
|
-
/* @__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)(
|
|
1246
1291
|
"input",
|
|
1247
1292
|
{
|
|
1248
1293
|
ref,
|
|
@@ -1259,19 +1304,19 @@ var Switch = (0, import_react27.forwardRef)(function Switch2({ checked = false,
|
|
|
1259
1304
|
...rest
|
|
1260
1305
|
}
|
|
1261
1306
|
),
|
|
1262
|
-
/* @__PURE__ */ (0,
|
|
1263
|
-
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 })
|
|
1264
1309
|
] });
|
|
1265
1310
|
});
|
|
1266
1311
|
|
|
1267
1312
|
// src/components/text-field/index.tsx
|
|
1268
|
-
var
|
|
1313
|
+
var import_react32 = require("react");
|
|
1269
1314
|
|
|
1270
1315
|
// src/components/base-field/index.tsx
|
|
1271
|
-
var
|
|
1316
|
+
var import_react31 = require("react");
|
|
1272
1317
|
|
|
1273
1318
|
// src/components/base-field/use-styles.ts
|
|
1274
|
-
var
|
|
1319
|
+
var import_react30 = require("react");
|
|
1275
1320
|
|
|
1276
1321
|
// src/components/base-field/use-styles.css.ts
|
|
1277
1322
|
var field = "use-styles_field__1c3cgd3";
|
|
@@ -1288,9 +1333,9 @@ var startIconSlot = "use-styles_startIconSlot__1c3cgda";
|
|
|
1288
1333
|
var trailingSlot = "use-styles_trailingSlot__1c3cgdb";
|
|
1289
1334
|
|
|
1290
1335
|
// src/components/base-field/use-styles.ts
|
|
1291
|
-
function
|
|
1336
|
+
function useStyles13({ error, hasStartIcon, hasTrailing, className }) {
|
|
1292
1337
|
const { themeClass } = useTheme();
|
|
1293
|
-
return (0,
|
|
1338
|
+
return (0, import_react30.useMemo)(() => {
|
|
1294
1339
|
const root24 = [themeClass, root9].filter(Boolean).join(" ");
|
|
1295
1340
|
const labelText2 = [labelText, error && labelTextError].filter(Boolean).join(" ");
|
|
1296
1341
|
const input6 = [
|
|
@@ -1314,15 +1359,15 @@ function useStyles12({ error, hasStartIcon, hasTrailing, className }) {
|
|
|
1314
1359
|
}
|
|
1315
1360
|
|
|
1316
1361
|
// src/components/base-field/index.tsx
|
|
1317
|
-
var
|
|
1318
|
-
var BaseField = (0,
|
|
1319
|
-
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)();
|
|
1320
1365
|
const controlId = id ?? autoId;
|
|
1321
1366
|
const errorMessage = error != null && error !== false && error !== true && error !== "" ? error : null;
|
|
1322
1367
|
const hasError = error === true || errorMessage != null;
|
|
1323
1368
|
const message2 = errorMessage ?? help;
|
|
1324
1369
|
const messageId = message2 != null ? `${controlId}-msg` : void 0;
|
|
1325
|
-
const classes =
|
|
1370
|
+
const classes = useStyles13({
|
|
1326
1371
|
error: hasError,
|
|
1327
1372
|
hasStartIcon: StartIcon != null,
|
|
1328
1373
|
hasTrailing: trailing2 != null,
|
|
@@ -1337,15 +1382,15 @@ var BaseField = (0, import_react29.forwardRef)(function BaseField2({ label: labe
|
|
|
1337
1382
|
"aria-invalid": hasError ? true : void 0,
|
|
1338
1383
|
"data-testid": slot("input")
|
|
1339
1384
|
};
|
|
1340
|
-
return /* @__PURE__ */ (0,
|
|
1341
|
-
label7 != null && /* @__PURE__ */ (0,
|
|
1342
|
-
/* @__PURE__ */ (0,
|
|
1343
|
-
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 }) }),
|
|
1344
1389
|
children(control),
|
|
1345
|
-
trailing2 != null && /* @__PURE__ */ (0,
|
|
1390
|
+
trailing2 != null && /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("span", { className: classes.trailingSlot, children: trailing2 })
|
|
1346
1391
|
] }),
|
|
1347
1392
|
message2 != null && // `aria-live` solo cuando el mensaje es un error: anuncia la validación al aparecer.
|
|
1348
|
-
/* @__PURE__ */ (0,
|
|
1393
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
1349
1394
|
"span",
|
|
1350
1395
|
{
|
|
1351
1396
|
id: messageId,
|
|
@@ -1359,12 +1404,12 @@ var BaseField = (0, import_react29.forwardRef)(function BaseField2({ label: labe
|
|
|
1359
1404
|
});
|
|
1360
1405
|
|
|
1361
1406
|
// src/components/text-field/index.tsx
|
|
1362
|
-
var
|
|
1407
|
+
var import_jsx_runtime18 = (
|
|
1363
1408
|
// En multiline el control es un <textarea>: no reenviamos `controlRef` porque el
|
|
1364
1409
|
// tipo público de la ref es HTMLInputElement (la ref aplica solo a la rama <input>).
|
|
1365
1410
|
require("react/jsx-runtime")
|
|
1366
1411
|
);
|
|
1367
|
-
var TextField = (0,
|
|
1412
|
+
var TextField = (0, import_react32.forwardRef)(function TextField2({
|
|
1368
1413
|
label: label7,
|
|
1369
1414
|
help,
|
|
1370
1415
|
error,
|
|
@@ -1379,7 +1424,7 @@ var TextField = (0, import_react30.forwardRef)(function TextField2({
|
|
|
1379
1424
|
...rest
|
|
1380
1425
|
}, ref) {
|
|
1381
1426
|
const rawTestId = rest["data-testid"];
|
|
1382
|
-
return /* @__PURE__ */ (0,
|
|
1427
|
+
return /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
|
|
1383
1428
|
BaseField,
|
|
1384
1429
|
{
|
|
1385
1430
|
ref,
|
|
@@ -1390,7 +1435,7 @@ var TextField = (0, import_react30.forwardRef)(function TextField2({
|
|
|
1390
1435
|
id,
|
|
1391
1436
|
className,
|
|
1392
1437
|
testId,
|
|
1393
|
-
children: ({ ref: controlRef, ...control }) => multiline ? /* @__PURE__ */ (0,
|
|
1438
|
+
children: ({ ref: controlRef, ...control }) => multiline ? /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
|
|
1394
1439
|
"textarea",
|
|
1395
1440
|
{
|
|
1396
1441
|
...rest,
|
|
@@ -1399,7 +1444,7 @@ var TextField = (0, import_react30.forwardRef)(function TextField2({
|
|
|
1399
1444
|
rows: rows ?? 4,
|
|
1400
1445
|
onChange: (e) => onChange?.(e.target.value)
|
|
1401
1446
|
}
|
|
1402
|
-
) : /* @__PURE__ */ (0,
|
|
1447
|
+
) : /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
|
|
1403
1448
|
"input",
|
|
1404
1449
|
{
|
|
1405
1450
|
...rest,
|
|
@@ -1415,12 +1460,12 @@ var TextField = (0, import_react30.forwardRef)(function TextField2({
|
|
|
1415
1460
|
});
|
|
1416
1461
|
|
|
1417
1462
|
// src/components/password-field/index.tsx
|
|
1418
|
-
var
|
|
1463
|
+
var import_react34 = require("react");
|
|
1419
1464
|
|
|
1420
1465
|
// src/components/icons/eye/index.tsx
|
|
1421
|
-
var
|
|
1466
|
+
var import_jsx_runtime19 = require("react/jsx-runtime");
|
|
1422
1467
|
function EyeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
1423
|
-
return /* @__PURE__ */ (0,
|
|
1468
|
+
return /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)(
|
|
1424
1469
|
"svg",
|
|
1425
1470
|
{
|
|
1426
1471
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1435,17 +1480,17 @@ function EyeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
1435
1480
|
"aria-hidden": "true",
|
|
1436
1481
|
...rest,
|
|
1437
1482
|
children: [
|
|
1438
|
-
/* @__PURE__ */ (0,
|
|
1439
|
-
/* @__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" })
|
|
1440
1485
|
]
|
|
1441
1486
|
}
|
|
1442
1487
|
);
|
|
1443
1488
|
}
|
|
1444
1489
|
|
|
1445
1490
|
// src/components/icons/eye-off/index.tsx
|
|
1446
|
-
var
|
|
1491
|
+
var import_jsx_runtime20 = require("react/jsx-runtime");
|
|
1447
1492
|
function EyeOffIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
1448
|
-
return /* @__PURE__ */ (0,
|
|
1493
|
+
return /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(
|
|
1449
1494
|
"svg",
|
|
1450
1495
|
{
|
|
1451
1496
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1460,39 +1505,39 @@ function EyeOffIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
1460
1505
|
"aria-hidden": "true",
|
|
1461
1506
|
...rest,
|
|
1462
1507
|
children: [
|
|
1463
|
-
/* @__PURE__ */ (0,
|
|
1464
|
-
/* @__PURE__ */ (0,
|
|
1465
|
-
/* @__PURE__ */ (0,
|
|
1466
|
-
/* @__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" })
|
|
1467
1512
|
]
|
|
1468
1513
|
}
|
|
1469
1514
|
);
|
|
1470
1515
|
}
|
|
1471
1516
|
|
|
1472
1517
|
// src/components/password-field/use-styles.ts
|
|
1473
|
-
var
|
|
1518
|
+
var import_react33 = require("react");
|
|
1474
1519
|
|
|
1475
1520
|
// src/components/password-field/use-styles.css.ts
|
|
1476
1521
|
var revealButton = "use-styles_revealButton__rsu9d50";
|
|
1477
1522
|
|
|
1478
1523
|
// src/components/password-field/use-styles.ts
|
|
1479
|
-
function
|
|
1480
|
-
return (0,
|
|
1524
|
+
function useStyles14() {
|
|
1525
|
+
return (0, import_react33.useMemo)(() => ({ revealButton }), []);
|
|
1481
1526
|
}
|
|
1482
1527
|
|
|
1483
1528
|
// src/components/password-field/index.tsx
|
|
1484
|
-
var
|
|
1485
|
-
var PasswordField = (0,
|
|
1529
|
+
var import_jsx_runtime21 = require("react/jsx-runtime");
|
|
1530
|
+
var PasswordField = (0, import_react34.forwardRef)(
|
|
1486
1531
|
function PasswordField2({ label: label7, help, error, startIcon, onChange, id, className, ...rest }, ref) {
|
|
1487
|
-
const [reveal, setReveal] = (0,
|
|
1488
|
-
const classes =
|
|
1532
|
+
const [reveal, setReveal] = (0, import_react34.useState)(false);
|
|
1533
|
+
const classes = useStyles14();
|
|
1489
1534
|
const handleChange = (e) => {
|
|
1490
1535
|
onChange?.(e.target.value);
|
|
1491
1536
|
};
|
|
1492
1537
|
const handleToggleMouseDown = (e) => {
|
|
1493
1538
|
e.preventDefault();
|
|
1494
1539
|
};
|
|
1495
|
-
const toggleButton = /* @__PURE__ */ (0,
|
|
1540
|
+
const toggleButton = /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
|
|
1496
1541
|
"button",
|
|
1497
1542
|
{
|
|
1498
1543
|
type: "button",
|
|
@@ -1501,10 +1546,10 @@ var PasswordField = (0, import_react32.forwardRef)(
|
|
|
1501
1546
|
"aria-label": reveal ? "Ocultar contrase\xF1a" : "Mostrar contrase\xF1a",
|
|
1502
1547
|
onMouseDown: handleToggleMouseDown,
|
|
1503
1548
|
onClick: () => setReveal((r) => !r),
|
|
1504
|
-
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 })
|
|
1505
1550
|
}
|
|
1506
1551
|
);
|
|
1507
|
-
return /* @__PURE__ */ (0,
|
|
1552
|
+
return /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
|
|
1508
1553
|
BaseField,
|
|
1509
1554
|
{
|
|
1510
1555
|
ref,
|
|
@@ -1515,7 +1560,7 @@ var PasswordField = (0, import_react32.forwardRef)(
|
|
|
1515
1560
|
trailing: toggleButton,
|
|
1516
1561
|
id,
|
|
1517
1562
|
className,
|
|
1518
|
-
children: (control) => /* @__PURE__ */ (0,
|
|
1563
|
+
children: (control) => /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
|
|
1519
1564
|
"input",
|
|
1520
1565
|
{
|
|
1521
1566
|
...rest,
|
|
@@ -1530,15 +1575,15 @@ var PasswordField = (0, import_react32.forwardRef)(
|
|
|
1530
1575
|
);
|
|
1531
1576
|
|
|
1532
1577
|
// src/components/money-field/index.tsx
|
|
1533
|
-
var
|
|
1534
|
-
var
|
|
1578
|
+
var import_react35 = require("react");
|
|
1579
|
+
var import_jsx_runtime22 = require("react/jsx-runtime");
|
|
1535
1580
|
function parseAmount(raw) {
|
|
1536
1581
|
const cleaned = raw.replace(/[^0-9.-]/g, "");
|
|
1537
1582
|
if (cleaned === "" || cleaned === "-" || cleaned === ".") return null;
|
|
1538
1583
|
const n = Number.parseFloat(cleaned);
|
|
1539
1584
|
return Number.isNaN(n) ? null : n;
|
|
1540
1585
|
}
|
|
1541
|
-
var MoneyField = (0,
|
|
1586
|
+
var MoneyField = (0, import_react35.forwardRef)(function MoneyField2({
|
|
1542
1587
|
value,
|
|
1543
1588
|
onChange,
|
|
1544
1589
|
currency = "USD",
|
|
@@ -1553,9 +1598,9 @@ var MoneyField = (0, import_react33.forwardRef)(function MoneyField2({
|
|
|
1553
1598
|
onBlur,
|
|
1554
1599
|
...rest
|
|
1555
1600
|
}, ref) {
|
|
1556
|
-
const [focused, setFocused] = (0,
|
|
1557
|
-
const [draft, setDraft] = (0,
|
|
1558
|
-
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)(
|
|
1559
1604
|
() => new Intl.NumberFormat(locale, { style: "currency", currency }),
|
|
1560
1605
|
[locale, currency]
|
|
1561
1606
|
);
|
|
@@ -1571,7 +1616,7 @@ var MoneyField = (0, import_react33.forwardRef)(function MoneyField2({
|
|
|
1571
1616
|
onChange?.(parseAmount(draft));
|
|
1572
1617
|
onBlur?.(e);
|
|
1573
1618
|
};
|
|
1574
|
-
return /* @__PURE__ */ (0,
|
|
1619
|
+
return /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|
|
1575
1620
|
BaseField,
|
|
1576
1621
|
{
|
|
1577
1622
|
ref,
|
|
@@ -1581,7 +1626,7 @@ var MoneyField = (0, import_react33.forwardRef)(function MoneyField2({
|
|
|
1581
1626
|
startIcon,
|
|
1582
1627
|
id,
|
|
1583
1628
|
className,
|
|
1584
|
-
children: (control) => /* @__PURE__ */ (0,
|
|
1629
|
+
children: (control) => /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|
|
1585
1630
|
"input",
|
|
1586
1631
|
{
|
|
1587
1632
|
...rest,
|
|
@@ -1598,10 +1643,10 @@ var MoneyField = (0, import_react33.forwardRef)(function MoneyField2({
|
|
|
1598
1643
|
});
|
|
1599
1644
|
|
|
1600
1645
|
// src/components/icon-button/index.tsx
|
|
1601
|
-
var
|
|
1646
|
+
var import_react37 = require("react");
|
|
1602
1647
|
|
|
1603
1648
|
// src/components/icon-button/use-styles.ts
|
|
1604
|
-
var
|
|
1649
|
+
var import_react36 = require("react");
|
|
1605
1650
|
|
|
1606
1651
|
// src/components/icon-button/use-styles.css.ts
|
|
1607
1652
|
var accent = "use-styles_accent__18np0q02";
|
|
@@ -1609,12 +1654,12 @@ var active = "use-styles_active__18np0q01";
|
|
|
1609
1654
|
var root10 = "use-styles_root__18np0q00";
|
|
1610
1655
|
|
|
1611
1656
|
// src/components/icon-button/use-styles.ts
|
|
1612
|
-
function
|
|
1657
|
+
function useStyles15({
|
|
1613
1658
|
active: active2 = false,
|
|
1614
1659
|
tone: tone4 = "ink"
|
|
1615
1660
|
}) {
|
|
1616
1661
|
const { themeClass } = useTheme();
|
|
1617
|
-
const root24 = (0,
|
|
1662
|
+
const root24 = (0, import_react36.useMemo)(
|
|
1618
1663
|
() => [themeClass, root10, tone4 === "accent" && accent, active2 && active].filter(Boolean).join(" "),
|
|
1619
1664
|
[themeClass, active2, tone4]
|
|
1620
1665
|
);
|
|
@@ -1622,8 +1667,8 @@ function useStyles14({
|
|
|
1622
1667
|
}
|
|
1623
1668
|
|
|
1624
1669
|
// src/components/icon-button/index.tsx
|
|
1625
|
-
var
|
|
1626
|
-
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) {
|
|
1627
1672
|
if (typeof process !== "undefined" && process.env.NODE_ENV !== "production") {
|
|
1628
1673
|
const restProps = rest;
|
|
1629
1674
|
const hasName = title.trim() !== "" || restProps["aria-label"] != null || restProps["aria-labelledby"] != null;
|
|
@@ -1631,9 +1676,9 @@ var IconButton = (0, import_react35.forwardRef)(function IconButton2({ icon: Ico
|
|
|
1631
1676
|
console.warn("IconButton: falta un nombre accesible (`title` o `aria-label`).");
|
|
1632
1677
|
}
|
|
1633
1678
|
}
|
|
1634
|
-
const { root: root24 } =
|
|
1679
|
+
const { root: root24 } = useStyles15({ active: active2, tone: tone4 });
|
|
1635
1680
|
const { testId: dataTestId } = useTestId("button", testId);
|
|
1636
|
-
return /* @__PURE__ */ (0,
|
|
1681
|
+
return /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
|
|
1637
1682
|
"button",
|
|
1638
1683
|
{
|
|
1639
1684
|
ref,
|
|
@@ -1644,16 +1689,16 @@ var IconButton = (0, import_react35.forwardRef)(function IconButton2({ icon: Ico
|
|
|
1644
1689
|
"data-testid": dataTestId,
|
|
1645
1690
|
"data-state": states({ active: active2, disabled: rest.disabled }),
|
|
1646
1691
|
...rest,
|
|
1647
|
-
children: /* @__PURE__ */ (0,
|
|
1692
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(Icon, { size: 18 })
|
|
1648
1693
|
}
|
|
1649
1694
|
);
|
|
1650
1695
|
});
|
|
1651
1696
|
|
|
1652
1697
|
// src/components/card/index.tsx
|
|
1653
|
-
var
|
|
1698
|
+
var import_react39 = require("react");
|
|
1654
1699
|
|
|
1655
1700
|
// src/components/card/use-styles.ts
|
|
1656
|
-
var
|
|
1701
|
+
var import_react38 = require("react");
|
|
1657
1702
|
|
|
1658
1703
|
// src/components/card/use-styles.css.ts
|
|
1659
1704
|
var body = "use-styles_body__1fuvd022";
|
|
@@ -1662,30 +1707,30 @@ var header = "use-styles_header__1fuvd021";
|
|
|
1662
1707
|
var root11 = "use-styles_root__1fuvd020";
|
|
1663
1708
|
|
|
1664
1709
|
// src/components/card/use-styles.ts
|
|
1665
|
-
function
|
|
1710
|
+
function useStyles16() {
|
|
1666
1711
|
const { themeClass } = useTheme();
|
|
1667
|
-
const root24 = (0,
|
|
1712
|
+
const root24 = (0, import_react38.useMemo)(() => `${themeClass} ${root11}`, [themeClass]);
|
|
1668
1713
|
return { root: root24, header, body, footer };
|
|
1669
1714
|
}
|
|
1670
1715
|
|
|
1671
1716
|
// src/components/card/index.tsx
|
|
1672
|
-
var
|
|
1673
|
-
var CardRoot = (0,
|
|
1674
|
-
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();
|
|
1675
1720
|
const { testId: dataTestId } = useTestId("layout", testId);
|
|
1676
|
-
return /* @__PURE__ */ (0,
|
|
1721
|
+
return /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("div", { ref, className: root24, "data-testid": dataTestId, ...rest, children });
|
|
1677
1722
|
});
|
|
1678
1723
|
function CardHeader({ children, ...rest }) {
|
|
1679
|
-
const { header: header3 } =
|
|
1680
|
-
return /* @__PURE__ */ (0,
|
|
1724
|
+
const { header: header3 } = useStyles16();
|
|
1725
|
+
return /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("div", { className: header3, ...rest, children });
|
|
1681
1726
|
}
|
|
1682
1727
|
function CardBody({ children, ...rest }) {
|
|
1683
|
-
const { body: body3 } =
|
|
1684
|
-
return /* @__PURE__ */ (0,
|
|
1728
|
+
const { body: body3 } = useStyles16();
|
|
1729
|
+
return /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("div", { className: body3, ...rest, children });
|
|
1685
1730
|
}
|
|
1686
1731
|
function CardFooter({ children, ...rest }) {
|
|
1687
|
-
const { footer: footer2 } =
|
|
1688
|
-
return /* @__PURE__ */ (0,
|
|
1732
|
+
const { footer: footer2 } = useStyles16();
|
|
1733
|
+
return /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("div", { className: footer2, ...rest, children });
|
|
1689
1734
|
}
|
|
1690
1735
|
CardRoot.displayName = "Card";
|
|
1691
1736
|
CardHeader.displayName = "Card.Header";
|
|
@@ -1698,12 +1743,12 @@ var Card2 = Object.assign(CardRoot, {
|
|
|
1698
1743
|
});
|
|
1699
1744
|
|
|
1700
1745
|
// src/components/alert/index.tsx
|
|
1701
|
-
var
|
|
1746
|
+
var import_react41 = require("react");
|
|
1702
1747
|
|
|
1703
1748
|
// src/components/icons/circle-check/index.tsx
|
|
1704
|
-
var
|
|
1749
|
+
var import_jsx_runtime25 = require("react/jsx-runtime");
|
|
1705
1750
|
function CircleCheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
1706
|
-
return /* @__PURE__ */ (0,
|
|
1751
|
+
return /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)(
|
|
1707
1752
|
"svg",
|
|
1708
1753
|
{
|
|
1709
1754
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1718,17 +1763,17 @@ function CircleCheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
1718
1763
|
"aria-hidden": "true",
|
|
1719
1764
|
...rest,
|
|
1720
1765
|
children: [
|
|
1721
|
-
/* @__PURE__ */ (0,
|
|
1722
|
-
/* @__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" })
|
|
1723
1768
|
]
|
|
1724
1769
|
}
|
|
1725
1770
|
);
|
|
1726
1771
|
}
|
|
1727
1772
|
|
|
1728
1773
|
// src/components/icons/circle-x/index.tsx
|
|
1729
|
-
var
|
|
1774
|
+
var import_jsx_runtime26 = require("react/jsx-runtime");
|
|
1730
1775
|
function CircleXIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
1731
|
-
return /* @__PURE__ */ (0,
|
|
1776
|
+
return /* @__PURE__ */ (0, import_jsx_runtime26.jsxs)(
|
|
1732
1777
|
"svg",
|
|
1733
1778
|
{
|
|
1734
1779
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1743,18 +1788,18 @@ function CircleXIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
1743
1788
|
"aria-hidden": "true",
|
|
1744
1789
|
...rest,
|
|
1745
1790
|
children: [
|
|
1746
|
-
/* @__PURE__ */ (0,
|
|
1747
|
-
/* @__PURE__ */ (0,
|
|
1748
|
-
/* @__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" })
|
|
1749
1794
|
]
|
|
1750
1795
|
}
|
|
1751
1796
|
);
|
|
1752
1797
|
}
|
|
1753
1798
|
|
|
1754
1799
|
// src/components/icons/info/index.tsx
|
|
1755
|
-
var
|
|
1800
|
+
var import_jsx_runtime27 = require("react/jsx-runtime");
|
|
1756
1801
|
function InfoIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
1757
|
-
return /* @__PURE__ */ (0,
|
|
1802
|
+
return /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)(
|
|
1758
1803
|
"svg",
|
|
1759
1804
|
{
|
|
1760
1805
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1769,18 +1814,18 @@ function InfoIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
1769
1814
|
"aria-hidden": "true",
|
|
1770
1815
|
...rest,
|
|
1771
1816
|
children: [
|
|
1772
|
-
/* @__PURE__ */ (0,
|
|
1773
|
-
/* @__PURE__ */ (0,
|
|
1774
|
-
/* @__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" })
|
|
1775
1820
|
]
|
|
1776
1821
|
}
|
|
1777
1822
|
);
|
|
1778
1823
|
}
|
|
1779
1824
|
|
|
1780
1825
|
// src/components/icons/triangle-alert/index.tsx
|
|
1781
|
-
var
|
|
1826
|
+
var import_jsx_runtime28 = require("react/jsx-runtime");
|
|
1782
1827
|
function TriangleAlertIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
1783
|
-
return /* @__PURE__ */ (0,
|
|
1828
|
+
return /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)(
|
|
1784
1829
|
"svg",
|
|
1785
1830
|
{
|
|
1786
1831
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1795,16 +1840,16 @@ function TriangleAlertIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
1795
1840
|
"aria-hidden": "true",
|
|
1796
1841
|
...rest,
|
|
1797
1842
|
children: [
|
|
1798
|
-
/* @__PURE__ */ (0,
|
|
1799
|
-
/* @__PURE__ */ (0,
|
|
1800
|
-
/* @__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" })
|
|
1801
1846
|
]
|
|
1802
1847
|
}
|
|
1803
1848
|
);
|
|
1804
1849
|
}
|
|
1805
1850
|
|
|
1806
1851
|
// src/components/alert/use-styles.ts
|
|
1807
|
-
var
|
|
1852
|
+
var import_react40 = require("react");
|
|
1808
1853
|
|
|
1809
1854
|
// src/components/alert/use-styles.css.ts
|
|
1810
1855
|
var content = "use-styles_content__ivsh6u6";
|
|
@@ -1813,12 +1858,12 @@ var root12 = "use-styles_root__ivsh6u0";
|
|
|
1813
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" };
|
|
1814
1859
|
|
|
1815
1860
|
// src/components/alert/use-styles.ts
|
|
1816
|
-
function
|
|
1861
|
+
function useStyles17({
|
|
1817
1862
|
severity: severity2 = "info",
|
|
1818
1863
|
className
|
|
1819
1864
|
}) {
|
|
1820
1865
|
const { themeClass } = useTheme();
|
|
1821
|
-
const root24 = (0,
|
|
1866
|
+
const root24 = (0, import_react40.useMemo)(
|
|
1822
1867
|
() => [themeClass, root12, severity[severity2], className].filter(Boolean).join(" "),
|
|
1823
1868
|
[themeClass, severity2, className]
|
|
1824
1869
|
);
|
|
@@ -1830,31 +1875,31 @@ function useStyles16({
|
|
|
1830
1875
|
}
|
|
1831
1876
|
|
|
1832
1877
|
// src/components/alert/index.tsx
|
|
1833
|
-
var
|
|
1878
|
+
var import_jsx_runtime29 = require("react/jsx-runtime");
|
|
1834
1879
|
var defaultIcons = {
|
|
1835
1880
|
info: InfoIcon,
|
|
1836
1881
|
ok: CircleCheckIcon,
|
|
1837
1882
|
warn: TriangleAlertIcon,
|
|
1838
1883
|
danger: CircleXIcon
|
|
1839
1884
|
};
|
|
1840
|
-
var Alert = (0,
|
|
1841
|
-
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 });
|
|
1842
1887
|
const { testId: dataTestId, slot } = useTestId("feedback", testId);
|
|
1843
1888
|
const IconComponent = icon ?? defaultIcons[severity2];
|
|
1844
|
-
return /* @__PURE__ */ (0,
|
|
1845
|
-
/* @__PURE__ */ (0,
|
|
1846
|
-
/* @__PURE__ */ (0,
|
|
1847
|
-
title != null && /* @__PURE__ */ (0,
|
|
1848
|
-
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 })
|
|
1849
1894
|
] })
|
|
1850
1895
|
] });
|
|
1851
1896
|
});
|
|
1852
1897
|
|
|
1853
1898
|
// src/components/tooltip/index.tsx
|
|
1854
|
-
var
|
|
1899
|
+
var import_react43 = require("react");
|
|
1855
1900
|
|
|
1856
1901
|
// src/components/tooltip/use-styles.ts
|
|
1857
|
-
var
|
|
1902
|
+
var import_react42 = require("react");
|
|
1858
1903
|
|
|
1859
1904
|
// src/components/tooltip/use-styles.css.ts
|
|
1860
1905
|
var bubble = "use-styles_bubble__h9kvh1 surfaces_inkySurface__1qa7atn2";
|
|
@@ -1862,15 +1907,15 @@ var placement = { top: "use-styles_placement_top__h9kvh2", bottom: "use-styles_p
|
|
|
1862
1907
|
var wrapper = "use-styles_wrapper__h9kvh0";
|
|
1863
1908
|
|
|
1864
1909
|
// src/components/tooltip/use-styles.ts
|
|
1865
|
-
function
|
|
1910
|
+
function useStyles18({
|
|
1866
1911
|
placement: placement2 = "top"
|
|
1867
1912
|
}) {
|
|
1868
1913
|
const { themeClass } = useTheme();
|
|
1869
|
-
const wrapper4 = (0,
|
|
1914
|
+
const wrapper4 = (0, import_react42.useMemo)(
|
|
1870
1915
|
() => [themeClass, wrapper].filter(Boolean).join(" "),
|
|
1871
1916
|
[themeClass]
|
|
1872
1917
|
);
|
|
1873
|
-
const bubble2 = (0,
|
|
1918
|
+
const bubble2 = (0, import_react42.useMemo)(
|
|
1874
1919
|
() => [bubble, placement[placement2]].filter(Boolean).join(" "),
|
|
1875
1920
|
[placement2]
|
|
1876
1921
|
);
|
|
@@ -1878,14 +1923,14 @@ function useStyles17({
|
|
|
1878
1923
|
}
|
|
1879
1924
|
|
|
1880
1925
|
// src/components/tooltip/index.tsx
|
|
1881
|
-
var
|
|
1926
|
+
var import_jsx_runtime30 = require("react/jsx-runtime");
|
|
1882
1927
|
var HIDE_DELAY = 120;
|
|
1883
|
-
var Tooltip = (0,
|
|
1884
|
-
const [open, setOpen] = (0,
|
|
1885
|
-
const tooltipId = (0,
|
|
1886
|
-
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 });
|
|
1887
1932
|
const { testId: dataTestId, slot } = useTestId("feedback", testId);
|
|
1888
|
-
const hideTimer = (0,
|
|
1933
|
+
const hideTimer = (0, import_react43.useRef)(null);
|
|
1889
1934
|
const clearHide = () => {
|
|
1890
1935
|
if (hideTimer.current) {
|
|
1891
1936
|
clearTimeout(hideTimer.current);
|
|
@@ -1904,7 +1949,7 @@ var Tooltip = (0, import_react41.forwardRef)(function Tooltip2({ label: label7,
|
|
|
1904
1949
|
clearHide();
|
|
1905
1950
|
setOpen(false);
|
|
1906
1951
|
};
|
|
1907
|
-
(0,
|
|
1952
|
+
(0, import_react43.useEffect)(() => {
|
|
1908
1953
|
return () => {
|
|
1909
1954
|
if (hideTimer.current) clearTimeout(hideTimer.current);
|
|
1910
1955
|
};
|
|
@@ -1917,8 +1962,8 @@ var Tooltip = (0, import_react41.forwardRef)(function Tooltip2({ label: label7,
|
|
|
1917
1962
|
};
|
|
1918
1963
|
const previousDescribedBy = children.props["aria-describedby"];
|
|
1919
1964
|
const describedBy = open ? [previousDescribedBy, tooltipId].filter(Boolean).join(" ") : previousDescribedBy;
|
|
1920
|
-
const trigger2 = (0,
|
|
1921
|
-
return /* @__PURE__ */ (0,
|
|
1965
|
+
const trigger2 = (0, import_react43.cloneElement)(children, { "aria-describedby": describedBy });
|
|
1966
|
+
return /* @__PURE__ */ (0, import_jsx_runtime30.jsxs)(
|
|
1922
1967
|
"span",
|
|
1923
1968
|
{
|
|
1924
1969
|
ref,
|
|
@@ -1931,7 +1976,7 @@ var Tooltip = (0, import_react41.forwardRef)(function Tooltip2({ label: label7,
|
|
|
1931
1976
|
onKeyDown: handleKeyDown,
|
|
1932
1977
|
children: [
|
|
1933
1978
|
trigger2,
|
|
1934
|
-
open && /* @__PURE__ */ (0,
|
|
1979
|
+
open && /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
|
|
1935
1980
|
"span",
|
|
1936
1981
|
{
|
|
1937
1982
|
id: tooltipId,
|
|
@@ -1949,12 +1994,12 @@ var Tooltip = (0, import_react41.forwardRef)(function Tooltip2({ label: label7,
|
|
|
1949
1994
|
});
|
|
1950
1995
|
|
|
1951
1996
|
// src/components/select/index.tsx
|
|
1952
|
-
var
|
|
1997
|
+
var import_react45 = require("react");
|
|
1953
1998
|
|
|
1954
1999
|
// src/components/icons/chevron-down/index.tsx
|
|
1955
|
-
var
|
|
2000
|
+
var import_jsx_runtime31 = require("react/jsx-runtime");
|
|
1956
2001
|
function ChevronDownIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
1957
|
-
return /* @__PURE__ */ (0,
|
|
2002
|
+
return /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
|
|
1958
2003
|
"svg",
|
|
1959
2004
|
{
|
|
1960
2005
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1968,13 +2013,13 @@ function ChevronDownIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
1968
2013
|
strokeLinejoin: "round",
|
|
1969
2014
|
"aria-hidden": "true",
|
|
1970
2015
|
...rest,
|
|
1971
|
-
children: /* @__PURE__ */ (0,
|
|
2016
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime31.jsx)("path", { d: "m6 9 6 6 6-6" })
|
|
1972
2017
|
}
|
|
1973
2018
|
);
|
|
1974
2019
|
}
|
|
1975
2020
|
|
|
1976
2021
|
// src/components/select/use-styles.ts
|
|
1977
|
-
var
|
|
2022
|
+
var import_react44 = require("react");
|
|
1978
2023
|
|
|
1979
2024
|
// src/components/select/use-styles.css.ts
|
|
1980
2025
|
var chevron = "use-styles_chevron__1w1czpb4";
|
|
@@ -1989,11 +2034,11 @@ var root13 = "use-styles_root__1w1czpb0";
|
|
|
1989
2034
|
var trigger = "use-styles_trigger__1w1czpb2";
|
|
1990
2035
|
|
|
1991
2036
|
// src/components/select/use-styles.ts
|
|
1992
|
-
function
|
|
2037
|
+
function useStyles19({
|
|
1993
2038
|
open = false
|
|
1994
2039
|
}) {
|
|
1995
2040
|
const { themeClass } = useTheme();
|
|
1996
|
-
return (0,
|
|
2041
|
+
return (0, import_react44.useMemo)(() => {
|
|
1997
2042
|
const chevron3 = [chevron, open && chevronOpen].filter(Boolean).join(" ");
|
|
1998
2043
|
return {
|
|
1999
2044
|
root: [themeClass, root13].filter(Boolean).join(" "),
|
|
@@ -2008,8 +2053,8 @@ function useStyles18({
|
|
|
2008
2053
|
}
|
|
2009
2054
|
|
|
2010
2055
|
// src/components/select/index.tsx
|
|
2011
|
-
var
|
|
2012
|
-
var Select = (0,
|
|
2056
|
+
var import_jsx_runtime32 = require("react/jsx-runtime");
|
|
2057
|
+
var Select = (0, import_react45.forwardRef)(function Select2({
|
|
2013
2058
|
options,
|
|
2014
2059
|
value,
|
|
2015
2060
|
onChange,
|
|
@@ -2020,15 +2065,15 @@ var Select = (0, import_react43.forwardRef)(function Select2({
|
|
|
2020
2065
|
"aria-labelledby": ariaLabelledBy,
|
|
2021
2066
|
...rest
|
|
2022
2067
|
}, ref) {
|
|
2023
|
-
const [open, setOpen] = (0,
|
|
2024
|
-
const [activeIndex, setActiveIndex] = (0,
|
|
2025
|
-
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);
|
|
2026
2071
|
const setRootRef = (node) => {
|
|
2027
2072
|
rootRef.current = node;
|
|
2028
2073
|
if (typeof ref === "function") ref(node);
|
|
2029
2074
|
else if (ref) ref.current = node;
|
|
2030
2075
|
};
|
|
2031
|
-
const baseId = (0,
|
|
2076
|
+
const baseId = (0, import_react45.useId)();
|
|
2032
2077
|
const labelId = `${baseId}-label`;
|
|
2033
2078
|
const optionId = (index) => `${baseId}-option-${index}`;
|
|
2034
2079
|
const triggerLabelledBy = [label7 ? labelId : null, ariaLabelledBy].filter(Boolean).join(" ") || void 0;
|
|
@@ -2040,8 +2085,8 @@ var Select = (0, import_react43.forwardRef)(function Select2({
|
|
|
2040
2085
|
chevron: chevron3,
|
|
2041
2086
|
menu: menu2,
|
|
2042
2087
|
optionClass
|
|
2043
|
-
} =
|
|
2044
|
-
(0,
|
|
2088
|
+
} = useStyles19({ open });
|
|
2089
|
+
(0, import_react45.useEffect)(() => {
|
|
2045
2090
|
if (!open) return;
|
|
2046
2091
|
const onPointerDown = (event) => {
|
|
2047
2092
|
if (rootRef.current && !rootRef.current.contains(event.target)) {
|
|
@@ -2101,9 +2146,9 @@ var Select = (0, import_react43.forwardRef)(function Select2({
|
|
|
2101
2146
|
break;
|
|
2102
2147
|
}
|
|
2103
2148
|
};
|
|
2104
|
-
return /* @__PURE__ */ (0,
|
|
2105
|
-
label7 && /* @__PURE__ */ (0,
|
|
2106
|
-
/* @__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)(
|
|
2107
2152
|
"button",
|
|
2108
2153
|
{
|
|
2109
2154
|
type: "button",
|
|
@@ -2124,17 +2169,17 @@ var Select = (0, import_react43.forwardRef)(function Select2({
|
|
|
2124
2169
|
},
|
|
2125
2170
|
onKeyDown: handleKeyDown,
|
|
2126
2171
|
children: [
|
|
2127
|
-
selected3 ? selected3.label : /* @__PURE__ */ (0,
|
|
2128
|
-
/* @__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 }) })
|
|
2129
2174
|
]
|
|
2130
2175
|
}
|
|
2131
2176
|
),
|
|
2132
|
-
open && /* @__PURE__ */ (0,
|
|
2177
|
+
open && /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("div", { className: menu2, role: "listbox", children: options.map((option2, index) => {
|
|
2133
2178
|
const isSelected = option2.value === value;
|
|
2134
2179
|
const isActive = index === activeIndex;
|
|
2135
2180
|
return (
|
|
2136
2181
|
// biome-ignore lint/a11y/useKeyWithClickEvents: keyboard nav lives on the trigger via aria-activedescendant; options are not focusable.
|
|
2137
|
-
/* @__PURE__ */ (0,
|
|
2182
|
+
/* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
|
|
2138
2183
|
"div",
|
|
2139
2184
|
{
|
|
2140
2185
|
id: optionId(index),
|
|
@@ -2153,10 +2198,10 @@ var Select = (0, import_react43.forwardRef)(function Select2({
|
|
|
2153
2198
|
});
|
|
2154
2199
|
|
|
2155
2200
|
// src/components/slider/index.tsx
|
|
2156
|
-
var
|
|
2201
|
+
var import_react47 = require("react");
|
|
2157
2202
|
|
|
2158
2203
|
// src/components/slider/use-styles.ts
|
|
2159
|
-
var
|
|
2204
|
+
var import_react46 = require("react");
|
|
2160
2205
|
|
|
2161
2206
|
// src/components/slider/use-styles.css.ts
|
|
2162
2207
|
var input5 = "use-styles_input__okw59n3";
|
|
@@ -2168,9 +2213,9 @@ var track3 = "use-styles_track__okw59n1";
|
|
|
2168
2213
|
var wrapper2 = "use-styles_wrapper__okw59n6";
|
|
2169
2214
|
|
|
2170
2215
|
// src/components/slider/use-styles.ts
|
|
2171
|
-
function
|
|
2216
|
+
function useStyles20() {
|
|
2172
2217
|
const { themeClass } = useTheme();
|
|
2173
|
-
return (0,
|
|
2218
|
+
return (0, import_react46.useMemo)(() => {
|
|
2174
2219
|
const root24 = [themeClass, root14].filter(Boolean).join(" ");
|
|
2175
2220
|
return {
|
|
2176
2221
|
wrapper: wrapper2,
|
|
@@ -2185,21 +2230,21 @@ function useStyles19() {
|
|
|
2185
2230
|
}
|
|
2186
2231
|
|
|
2187
2232
|
// src/components/slider/index.tsx
|
|
2188
|
-
var
|
|
2189
|
-
var Slider = (0,
|
|
2190
|
-
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();
|
|
2191
2236
|
const span = max - min;
|
|
2192
2237
|
const percent = span > 0 ? (value - min) / span * 100 : 0;
|
|
2193
2238
|
const clamped = Math.max(0, Math.min(100, percent));
|
|
2194
2239
|
const handleChange = (e) => {
|
|
2195
2240
|
onChange?.(Number(e.target.value));
|
|
2196
2241
|
};
|
|
2197
|
-
return /* @__PURE__ */ (0,
|
|
2198
|
-
label7 ? /* @__PURE__ */ (0,
|
|
2199
|
-
/* @__PURE__ */ (0,
|
|
2200
|
-
/* @__PURE__ */ (0,
|
|
2201
|
-
/* @__PURE__ */ (0,
|
|
2202
|
-
/* @__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)(
|
|
2203
2248
|
"input",
|
|
2204
2249
|
{
|
|
2205
2250
|
ref,
|
|
@@ -2214,16 +2259,16 @@ var Slider = (0, import_react45.forwardRef)(function Slider2({ value = 0, onChan
|
|
|
2214
2259
|
...rest
|
|
2215
2260
|
}
|
|
2216
2261
|
),
|
|
2217
|
-
/* @__PURE__ */ (0,
|
|
2262
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)("span", { className: thumb2, style: { left: `${clamped}%` } })
|
|
2218
2263
|
] })
|
|
2219
2264
|
] });
|
|
2220
2265
|
});
|
|
2221
2266
|
|
|
2222
2267
|
// src/components/accordion/index.tsx
|
|
2223
|
-
var
|
|
2268
|
+
var import_react49 = require("react");
|
|
2224
2269
|
|
|
2225
2270
|
// src/components/accordion/use-styles.ts
|
|
2226
|
-
var
|
|
2271
|
+
var import_react48 = require("react");
|
|
2227
2272
|
|
|
2228
2273
|
// src/components/accordion/use-styles.css.ts
|
|
2229
2274
|
var chevron2 = "use-styles_chevron__1cjrdh93";
|
|
@@ -2234,9 +2279,9 @@ var panel = "use-styles_panel__1cjrdh95";
|
|
|
2234
2279
|
var root15 = "use-styles_root__1cjrdh90";
|
|
2235
2280
|
|
|
2236
2281
|
// src/components/accordion/use-styles.ts
|
|
2237
|
-
function
|
|
2282
|
+
function useStyles21({ className }) {
|
|
2238
2283
|
const { themeClass } = useTheme();
|
|
2239
|
-
return (0,
|
|
2284
|
+
return (0, import_react48.useMemo)(
|
|
2240
2285
|
() => ({
|
|
2241
2286
|
root: [themeClass, root15, className].filter(Boolean).join(" "),
|
|
2242
2287
|
item,
|
|
@@ -2249,10 +2294,10 @@ function useStyles20({ className }) {
|
|
|
2249
2294
|
}
|
|
2250
2295
|
|
|
2251
2296
|
// src/components/accordion/index.tsx
|
|
2252
|
-
var
|
|
2253
|
-
var Accordion = (0,
|
|
2254
|
-
const [open, setOpen] = (0,
|
|
2255
|
-
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 });
|
|
2256
2301
|
const { testId: dataTestId, slot } = useTestId("layout", testId);
|
|
2257
2302
|
const toggle = (id) => {
|
|
2258
2303
|
setOpen((current2) => {
|
|
@@ -2261,19 +2306,19 @@ var Accordion = (0, import_react47.forwardRef)(function Accordion2({ items, mult
|
|
|
2261
2306
|
return multiple ? [...current2, id] : [id];
|
|
2262
2307
|
});
|
|
2263
2308
|
};
|
|
2264
|
-
return /* @__PURE__ */ (0,
|
|
2309
|
+
return /* @__PURE__ */ (0, import_jsx_runtime34.jsx)("div", { ref, className: root24, "data-testid": dataTestId, children: items.map((it) => {
|
|
2265
2310
|
const isOpen = open.includes(it.id);
|
|
2266
2311
|
const panelId = `accordion-panel-${it.id}`;
|
|
2267
2312
|
const headerId = `accordion-header-${it.id}`;
|
|
2268
2313
|
const itemSlot = slot(`item-${it.id}`);
|
|
2269
|
-
return /* @__PURE__ */ (0,
|
|
2314
|
+
return /* @__PURE__ */ (0, import_jsx_runtime34.jsxs)(
|
|
2270
2315
|
"div",
|
|
2271
2316
|
{
|
|
2272
2317
|
className: item3,
|
|
2273
2318
|
"data-testid": itemSlot,
|
|
2274
2319
|
"data-state": states({ expanded: isOpen }),
|
|
2275
2320
|
children: [
|
|
2276
|
-
/* @__PURE__ */ (0,
|
|
2321
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsxs)(
|
|
2277
2322
|
"button",
|
|
2278
2323
|
{
|
|
2279
2324
|
type: "button",
|
|
@@ -2285,11 +2330,11 @@ var Accordion = (0, import_react47.forwardRef)(function Accordion2({ items, mult
|
|
|
2285
2330
|
onClick: () => toggle(it.id),
|
|
2286
2331
|
children: [
|
|
2287
2332
|
it.title,
|
|
2288
|
-
/* @__PURE__ */ (0,
|
|
2333
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)(ChevronDownIcon, { className: chevronFor(isOpen) })
|
|
2289
2334
|
]
|
|
2290
2335
|
}
|
|
2291
2336
|
),
|
|
2292
|
-
isOpen && /* @__PURE__ */ (0,
|
|
2337
|
+
isOpen && /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
|
|
2293
2338
|
"div",
|
|
2294
2339
|
{
|
|
2295
2340
|
id: panelId,
|
|
@@ -2308,12 +2353,12 @@ var Accordion = (0, import_react47.forwardRef)(function Accordion2({ items, mult
|
|
|
2308
2353
|
});
|
|
2309
2354
|
|
|
2310
2355
|
// src/components/breadcrumbs/index.tsx
|
|
2311
|
-
var
|
|
2356
|
+
var import_react51 = require("react");
|
|
2312
2357
|
|
|
2313
2358
|
// src/components/icons/chevron-right/index.tsx
|
|
2314
|
-
var
|
|
2359
|
+
var import_jsx_runtime35 = require("react/jsx-runtime");
|
|
2315
2360
|
function ChevronRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
2316
|
-
return /* @__PURE__ */ (0,
|
|
2361
|
+
return /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
|
|
2317
2362
|
"svg",
|
|
2318
2363
|
{
|
|
2319
2364
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2327,13 +2372,13 @@ function ChevronRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
2327
2372
|
strokeLinejoin: "round",
|
|
2328
2373
|
"aria-hidden": "true",
|
|
2329
2374
|
...rest,
|
|
2330
|
-
children: /* @__PURE__ */ (0,
|
|
2375
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime35.jsx)("path", { d: "m9 18 6-6-6-6" })
|
|
2331
2376
|
}
|
|
2332
2377
|
);
|
|
2333
2378
|
}
|
|
2334
2379
|
|
|
2335
2380
|
// src/components/breadcrumbs/use-styles.ts
|
|
2336
|
-
var
|
|
2381
|
+
var import_react50 = require("react");
|
|
2337
2382
|
|
|
2338
2383
|
// src/components/breadcrumbs/use-styles.css.ts
|
|
2339
2384
|
var crumb = "use-styles_crumb__7u0du61";
|
|
@@ -2342,9 +2387,9 @@ var root16 = "use-styles_root__7u0du60";
|
|
|
2342
2387
|
var separator = "use-styles_separator__7u0du63";
|
|
2343
2388
|
|
|
2344
2389
|
// src/components/breadcrumbs/use-styles.ts
|
|
2345
|
-
function
|
|
2390
|
+
function useStyles22({ className }) {
|
|
2346
2391
|
const { themeClass } = useTheme();
|
|
2347
|
-
const root24 = (0,
|
|
2392
|
+
const root24 = (0, import_react50.useMemo)(
|
|
2348
2393
|
() => [themeClass, root16, className].filter(Boolean).join(" "),
|
|
2349
2394
|
[themeClass, className]
|
|
2350
2395
|
);
|
|
@@ -2352,27 +2397,27 @@ function useStyles21({ className }) {
|
|
|
2352
2397
|
}
|
|
2353
2398
|
|
|
2354
2399
|
// src/components/breadcrumbs/index.tsx
|
|
2355
|
-
var
|
|
2356
|
-
var Breadcrumbs = (0,
|
|
2357
|
-
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 });
|
|
2358
2403
|
const { testId: dataTestId, slot } = useTestId("nav", testId);
|
|
2359
|
-
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) => {
|
|
2360
2405
|
const isLast = index === items.length - 1;
|
|
2361
2406
|
const key = index;
|
|
2362
|
-
return /* @__PURE__ */ (0,
|
|
2363
|
-
isLast ? /* @__PURE__ */ (0,
|
|
2364
|
-
!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 }) })
|
|
2365
2410
|
] }, key);
|
|
2366
2411
|
}) });
|
|
2367
2412
|
});
|
|
2368
2413
|
|
|
2369
2414
|
// src/components/pagination/index.tsx
|
|
2370
|
-
var
|
|
2415
|
+
var import_react53 = require("react");
|
|
2371
2416
|
|
|
2372
2417
|
// src/components/icons/chevron-left/index.tsx
|
|
2373
|
-
var
|
|
2418
|
+
var import_jsx_runtime37 = require("react/jsx-runtime");
|
|
2374
2419
|
function ChevronLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
2375
|
-
return /* @__PURE__ */ (0,
|
|
2420
|
+
return /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
|
|
2376
2421
|
"svg",
|
|
2377
2422
|
{
|
|
2378
2423
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2386,13 +2431,13 @@ function ChevronLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
2386
2431
|
strokeLinejoin: "round",
|
|
2387
2432
|
"aria-hidden": "true",
|
|
2388
2433
|
...rest,
|
|
2389
|
-
children: /* @__PURE__ */ (0,
|
|
2434
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("path", { d: "m15 18-6-6 6-6" })
|
|
2390
2435
|
}
|
|
2391
2436
|
);
|
|
2392
2437
|
}
|
|
2393
2438
|
|
|
2394
2439
|
// src/components/pagination/use-styles.ts
|
|
2395
|
-
var
|
|
2440
|
+
var import_react52 = require("react");
|
|
2396
2441
|
|
|
2397
2442
|
// src/components/pagination/use-styles.css.ts
|
|
2398
2443
|
var ellipsis = "use-styles_ellipsis__1azgzoh3";
|
|
@@ -2402,9 +2447,9 @@ var pageBtn = "use-styles_pageBtn__1azgzoh1";
|
|
|
2402
2447
|
var root17 = "use-styles_root__1azgzoh0";
|
|
2403
2448
|
|
|
2404
2449
|
// src/components/pagination/use-styles.ts
|
|
2405
|
-
function
|
|
2450
|
+
function useStyles23() {
|
|
2406
2451
|
const { themeClass } = useTheme();
|
|
2407
|
-
return (0,
|
|
2452
|
+
return (0, import_react52.useMemo)(
|
|
2408
2453
|
() => ({
|
|
2409
2454
|
root: [themeClass, root17].filter(Boolean).join(" "),
|
|
2410
2455
|
pageBtnFor: (active2) => [pageBtn, active2 && pageActive].filter(Boolean).join(" "),
|
|
@@ -2416,7 +2461,7 @@ function useStyles22() {
|
|
|
2416
2461
|
}
|
|
2417
2462
|
|
|
2418
2463
|
// src/components/pagination/index.tsx
|
|
2419
|
-
var
|
|
2464
|
+
var import_jsx_runtime38 = require("react/jsx-runtime");
|
|
2420
2465
|
function buildItems(count, page, siblingCount) {
|
|
2421
2466
|
const total = Math.max(1, count);
|
|
2422
2467
|
const first = 1;
|
|
@@ -2430,15 +2475,15 @@ function buildItems(count, page, siblingCount) {
|
|
|
2430
2475
|
if (last > first) items.push(last);
|
|
2431
2476
|
return items;
|
|
2432
2477
|
}
|
|
2433
|
-
var Pagination = (0,
|
|
2434
|
-
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();
|
|
2435
2480
|
const { testId: dataTestId, slot } = useTestId("nav", testId);
|
|
2436
2481
|
const total = Math.max(1, count);
|
|
2437
2482
|
const current2 = Math.min(Math.max(1, page), total);
|
|
2438
2483
|
const items = buildItems(total, current2, siblingCount);
|
|
2439
2484
|
const go = (n) => onChange?.(Math.min(Math.max(1, n), total));
|
|
2440
|
-
return /* @__PURE__ */ (0,
|
|
2441
|
-
/* @__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)(
|
|
2442
2487
|
"button",
|
|
2443
2488
|
{
|
|
2444
2489
|
type: "button",
|
|
@@ -2447,11 +2492,11 @@ var Pagination = (0, import_react51.forwardRef)(function Pagination2({ count, pa
|
|
|
2447
2492
|
disabled: current2 <= 1,
|
|
2448
2493
|
"data-testid": slot("prev"),
|
|
2449
2494
|
onClick: () => go(current2 - 1),
|
|
2450
|
-
children: /* @__PURE__ */ (0,
|
|
2495
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(ChevronLeftIcon, { size: 18 })
|
|
2451
2496
|
}
|
|
2452
2497
|
),
|
|
2453
2498
|
items.map(
|
|
2454
|
-
(item3, index) => item3 === "ellipsis" ? /* @__PURE__ */ (0,
|
|
2499
|
+
(item3, index) => item3 === "ellipsis" ? /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
|
|
2455
2500
|
"span",
|
|
2456
2501
|
{
|
|
2457
2502
|
className: ellipsis2,
|
|
@@ -2459,7 +2504,7 @@ var Pagination = (0, import_react51.forwardRef)(function Pagination2({ count, pa
|
|
|
2459
2504
|
children: "\u2026"
|
|
2460
2505
|
},
|
|
2461
2506
|
`ellipsis-${index}`
|
|
2462
|
-
) : /* @__PURE__ */ (0,
|
|
2507
|
+
) : /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
|
|
2463
2508
|
"button",
|
|
2464
2509
|
{
|
|
2465
2510
|
type: "button",
|
|
@@ -2472,7 +2517,7 @@ var Pagination = (0, import_react51.forwardRef)(function Pagination2({ count, pa
|
|
|
2472
2517
|
item3
|
|
2473
2518
|
)
|
|
2474
2519
|
),
|
|
2475
|
-
/* @__PURE__ */ (0,
|
|
2520
|
+
/* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
|
|
2476
2521
|
"button",
|
|
2477
2522
|
{
|
|
2478
2523
|
type: "button",
|
|
@@ -2481,17 +2526,17 @@ var Pagination = (0, import_react51.forwardRef)(function Pagination2({ count, pa
|
|
|
2481
2526
|
disabled: current2 >= total,
|
|
2482
2527
|
"data-testid": slot("next"),
|
|
2483
2528
|
onClick: () => go(current2 + 1),
|
|
2484
|
-
children: /* @__PURE__ */ (0,
|
|
2529
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(ChevronRightIcon, { size: 18 })
|
|
2485
2530
|
}
|
|
2486
2531
|
)
|
|
2487
2532
|
] });
|
|
2488
2533
|
});
|
|
2489
2534
|
|
|
2490
2535
|
// src/components/stepper/index.tsx
|
|
2491
|
-
var
|
|
2536
|
+
var import_react55 = require("react");
|
|
2492
2537
|
|
|
2493
2538
|
// src/components/stepper/use-styles.ts
|
|
2494
|
-
var
|
|
2539
|
+
var import_react54 = require("react");
|
|
2495
2540
|
|
|
2496
2541
|
// src/components/stepper/use-styles.css.ts
|
|
2497
2542
|
var connector = "use-styles_connector__79pt4e7";
|
|
@@ -2504,9 +2549,9 @@ var root18 = "use-styles_root__79pt4e0";
|
|
|
2504
2549
|
var step = "use-styles_step__79pt4e1";
|
|
2505
2550
|
|
|
2506
2551
|
// src/components/stepper/use-styles.ts
|
|
2507
|
-
function
|
|
2552
|
+
function useStyles24({ className }) {
|
|
2508
2553
|
const { themeClass } = useTheme();
|
|
2509
|
-
return (0,
|
|
2554
|
+
return (0, import_react54.useMemo)(() => {
|
|
2510
2555
|
const root24 = [themeClass, root18, className].filter(Boolean).join(" ");
|
|
2511
2556
|
const markerFor = (state) => [
|
|
2512
2557
|
marker,
|
|
@@ -2519,17 +2564,17 @@ function useStyles23({ className }) {
|
|
|
2519
2564
|
}
|
|
2520
2565
|
|
|
2521
2566
|
// src/components/stepper/index.tsx
|
|
2522
|
-
var
|
|
2523
|
-
var Stepper = (0,
|
|
2524
|
-
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 });
|
|
2525
2570
|
const { testId: dataTestId, slot } = useTestId("nav", testId);
|
|
2526
|
-
return /* @__PURE__ */ (0,
|
|
2571
|
+
return /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("div", { ref, className: root24, "data-testid": dataTestId, ...rest, children: steps.map((s, index) => {
|
|
2527
2572
|
const state = index < active2 ? "done" : index === active2 ? "active" : "upcoming";
|
|
2528
2573
|
const isActive = state === "active";
|
|
2529
2574
|
return (
|
|
2530
2575
|
// biome-ignore lint/suspicious/noArrayIndexKey: steps are a static, ordered list with no stable id.
|
|
2531
|
-
/* @__PURE__ */ (0,
|
|
2532
|
-
/* @__PURE__ */ (0,
|
|
2576
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsxs)(import_react55.Fragment, { children: [
|
|
2577
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsxs)(
|
|
2533
2578
|
"div",
|
|
2534
2579
|
{
|
|
2535
2580
|
className: step2,
|
|
@@ -2537,22 +2582,22 @@ var Stepper = (0, import_react53.forwardRef)(function Stepper2({ steps, active:
|
|
|
2537
2582
|
"data-testid": slot(`step-${index}`),
|
|
2538
2583
|
"data-state": states({ done: state === "done", active: isActive }),
|
|
2539
2584
|
children: [
|
|
2540
|
-
/* @__PURE__ */ (0,
|
|
2541
|
-
/* @__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 })
|
|
2542
2587
|
]
|
|
2543
2588
|
}
|
|
2544
2589
|
),
|
|
2545
|
-
index < steps.length - 1 && /* @__PURE__ */ (0,
|
|
2590
|
+
index < steps.length - 1 && /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("span", { "data-part": "connector", className: connector2 })
|
|
2546
2591
|
] }, index)
|
|
2547
2592
|
);
|
|
2548
2593
|
}) });
|
|
2549
2594
|
});
|
|
2550
2595
|
|
|
2551
2596
|
// src/components/tabs/index.tsx
|
|
2552
|
-
var
|
|
2597
|
+
var import_react57 = require("react");
|
|
2553
2598
|
|
|
2554
2599
|
// src/components/tabs/use-styles.ts
|
|
2555
|
-
var
|
|
2600
|
+
var import_react56 = require("react");
|
|
2556
2601
|
|
|
2557
2602
|
// src/components/tabs/use-styles.css.ts
|
|
2558
2603
|
var panel2 = "use-styles_panel__1l4m7t43";
|
|
@@ -2561,9 +2606,9 @@ var tab = "use-styles_tab__1l4m7t41";
|
|
|
2561
2606
|
var tabActive = "use-styles_tabActive__1l4m7t42";
|
|
2562
2607
|
|
|
2563
2608
|
// src/components/tabs/use-styles.ts
|
|
2564
|
-
function
|
|
2609
|
+
function useStyles25() {
|
|
2565
2610
|
const { themeClass } = useTheme();
|
|
2566
|
-
return (0,
|
|
2611
|
+
return (0, import_react56.useMemo)(() => {
|
|
2567
2612
|
const root24 = [themeClass, root19].filter(Boolean).join(" ");
|
|
2568
2613
|
const tabClass = (active2) => [tab, active2 && tabActive].filter(Boolean).join(" ");
|
|
2569
2614
|
return { root: root24, tab, tabClass, panel: panel2 };
|
|
@@ -2571,13 +2616,13 @@ function useStyles24() {
|
|
|
2571
2616
|
}
|
|
2572
2617
|
|
|
2573
2618
|
// src/components/tabs/index.tsx
|
|
2574
|
-
var
|
|
2619
|
+
var import_jsx_runtime40 = require("react/jsx-runtime");
|
|
2575
2620
|
var ICON_SIZE3 = 16;
|
|
2576
|
-
var Tabs = (0,
|
|
2577
|
-
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();
|
|
2578
2623
|
const { testId: dataTestId, slot } = useTestId("nav", testId);
|
|
2579
|
-
const baseId = (0,
|
|
2580
|
-
const tabRefs = (0,
|
|
2624
|
+
const baseId = (0, import_react57.useId)();
|
|
2625
|
+
const tabRefs = (0, import_react57.useRef)([]);
|
|
2581
2626
|
const hasPanels = items.some((item3) => item3.content !== void 0);
|
|
2582
2627
|
const activeIndex = items.findIndex((item3) => item3.value === value);
|
|
2583
2628
|
const tabId = (v) => `${baseId}-tab-${v}`;
|
|
@@ -2609,12 +2654,12 @@ var Tabs = (0, import_react55.forwardRef)(function Tabs2({ items, value, onChang
|
|
|
2609
2654
|
break;
|
|
2610
2655
|
}
|
|
2611
2656
|
};
|
|
2612
|
-
return /* @__PURE__ */ (0,
|
|
2613
|
-
/* @__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) => {
|
|
2614
2659
|
const active2 = item3.value === value;
|
|
2615
2660
|
const tabbable = active2 || activeIndex === -1 && index === 0;
|
|
2616
2661
|
const ItemIcon = item3.icon;
|
|
2617
|
-
return /* @__PURE__ */ (0,
|
|
2662
|
+
return /* @__PURE__ */ (0, import_jsx_runtime40.jsxs)(
|
|
2618
2663
|
"button",
|
|
2619
2664
|
{
|
|
2620
2665
|
ref: (el) => {
|
|
@@ -2632,14 +2677,14 @@ var Tabs = (0, import_react55.forwardRef)(function Tabs2({ items, value, onChang
|
|
|
2632
2677
|
onClick: () => onChange?.(item3.value),
|
|
2633
2678
|
onKeyDown: (event) => onKeyDown(event, index),
|
|
2634
2679
|
children: [
|
|
2635
|
-
ItemIcon ? /* @__PURE__ */ (0,
|
|
2680
|
+
ItemIcon ? /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(ItemIcon, { size: ICON_SIZE3 }) : null,
|
|
2636
2681
|
item3.label
|
|
2637
2682
|
]
|
|
2638
2683
|
},
|
|
2639
2684
|
item3.value
|
|
2640
2685
|
);
|
|
2641
2686
|
}) }),
|
|
2642
|
-
hasPanels && items.map((item3) => /* @__PURE__ */ (0,
|
|
2687
|
+
hasPanels && items.map((item3) => /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
|
|
2643
2688
|
"div",
|
|
2644
2689
|
{
|
|
2645
2690
|
role: "tabpanel",
|
|
@@ -2657,10 +2702,10 @@ var Tabs = (0, import_react55.forwardRef)(function Tabs2({ items, value, onChang
|
|
|
2657
2702
|
});
|
|
2658
2703
|
|
|
2659
2704
|
// src/components/menu/index.tsx
|
|
2660
|
-
var
|
|
2705
|
+
var import_react59 = require("react");
|
|
2661
2706
|
|
|
2662
2707
|
// src/components/menu/use-styles.ts
|
|
2663
|
-
var
|
|
2708
|
+
var import_react58 = require("react");
|
|
2664
2709
|
|
|
2665
2710
|
// src/components/menu/use-styles.css.ts
|
|
2666
2711
|
var danger = "use-styles_danger__1uyxaj3";
|
|
@@ -2669,9 +2714,9 @@ var list = "use-styles_list__1uyxaj1 surfaces_panelSurface__1qa7atn1";
|
|
|
2669
2714
|
var wrapper3 = "use-styles_wrapper__1uyxaj0";
|
|
2670
2715
|
|
|
2671
2716
|
// src/components/menu/use-styles.ts
|
|
2672
|
-
function
|
|
2717
|
+
function useStyles26() {
|
|
2673
2718
|
const { themeClass } = useTheme();
|
|
2674
|
-
return (0,
|
|
2719
|
+
return (0, import_react58.useMemo)(
|
|
2675
2720
|
() => ({
|
|
2676
2721
|
wrapper: [themeClass, wrapper3].filter(Boolean).join(" "),
|
|
2677
2722
|
list,
|
|
@@ -2683,24 +2728,24 @@ function useStyles25() {
|
|
|
2683
2728
|
}
|
|
2684
2729
|
|
|
2685
2730
|
// src/components/menu/index.tsx
|
|
2686
|
-
var
|
|
2731
|
+
var import_jsx_runtime41 = require("react/jsx-runtime");
|
|
2687
2732
|
var ICON_SIZE4 = 16;
|
|
2688
2733
|
function assignRef(ref, value) {
|
|
2689
2734
|
if (typeof ref === "function") ref(value);
|
|
2690
2735
|
else if (ref) ref.current = value;
|
|
2691
2736
|
}
|
|
2692
|
-
var Menu = (0,
|
|
2693
|
-
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();
|
|
2694
2739
|
const { testId: rootTestId, slot } = useTestId("menu", testId);
|
|
2695
|
-
const [open, setOpen] = (0,
|
|
2696
|
-
const [alignEnd, setAlignEnd] = (0,
|
|
2697
|
-
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);
|
|
2698
2743
|
const setRootRef = (node) => {
|
|
2699
2744
|
rootRef.current = node;
|
|
2700
2745
|
assignRef(ref, node);
|
|
2701
2746
|
};
|
|
2702
|
-
const listRef = (0,
|
|
2703
|
-
const triggerRef = (0,
|
|
2747
|
+
const listRef = (0, import_react59.useRef)(null);
|
|
2748
|
+
const triggerRef = (0, import_react59.useRef)(null);
|
|
2704
2749
|
const getMenuItems = () => Array.from(listRef.current?.querySelectorAll('[role="menuitem"]') ?? []);
|
|
2705
2750
|
const focusItemAt = (index) => {
|
|
2706
2751
|
const menuItems = getMenuItems();
|
|
@@ -2712,7 +2757,7 @@ var Menu = (0, import_react57.forwardRef)(function Menu2({ trigger: trigger2, it
|
|
|
2712
2757
|
setOpen(false);
|
|
2713
2758
|
triggerRef.current?.focus();
|
|
2714
2759
|
};
|
|
2715
|
-
(0,
|
|
2760
|
+
(0, import_react59.useLayoutEffect)(() => {
|
|
2716
2761
|
if (!open) {
|
|
2717
2762
|
setAlignEnd(false);
|
|
2718
2763
|
return;
|
|
@@ -2724,7 +2769,7 @@ var Menu = (0, import_react57.forwardRef)(function Menu2({ trigger: trigger2, it
|
|
|
2724
2769
|
const viewport = document.documentElement.clientWidth;
|
|
2725
2770
|
setAlignEnd(rootLeft + listEl.offsetWidth > viewport);
|
|
2726
2771
|
}, [open]);
|
|
2727
|
-
(0,
|
|
2772
|
+
(0, import_react59.useEffect)(() => {
|
|
2728
2773
|
if (!open) return;
|
|
2729
2774
|
listRef.current?.querySelector('[role="menuitem"]')?.focus();
|
|
2730
2775
|
const onDocMouseDown = (event) => {
|
|
@@ -2780,7 +2825,7 @@ var Menu = (0, import_react57.forwardRef)(function Menu2({ trigger: trigger2, it
|
|
|
2780
2825
|
triggerRef.current = node;
|
|
2781
2826
|
assignRef(consumerRef, node);
|
|
2782
2827
|
};
|
|
2783
|
-
const clonedTrigger = (0,
|
|
2828
|
+
const clonedTrigger = (0, import_react59.cloneElement)(trigger2, {
|
|
2784
2829
|
ref: mergedTriggerRef,
|
|
2785
2830
|
"aria-haspopup": "menu",
|
|
2786
2831
|
"aria-expanded": open,
|
|
@@ -2789,7 +2834,7 @@ var Menu = (0, import_react57.forwardRef)(function Menu2({ trigger: trigger2, it
|
|
|
2789
2834
|
setOpen((prev) => !prev);
|
|
2790
2835
|
}
|
|
2791
2836
|
});
|
|
2792
|
-
return /* @__PURE__ */ (0,
|
|
2837
|
+
return /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)(
|
|
2793
2838
|
"div",
|
|
2794
2839
|
{
|
|
2795
2840
|
ref: setRootRef,
|
|
@@ -2798,7 +2843,7 @@ var Menu = (0, import_react57.forwardRef)(function Menu2({ trigger: trigger2, it
|
|
|
2798
2843
|
"data-state": open ? "open" : "closed",
|
|
2799
2844
|
children: [
|
|
2800
2845
|
clonedTrigger,
|
|
2801
|
-
open && /* @__PURE__ */ (0,
|
|
2846
|
+
open && /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
|
|
2802
2847
|
"div",
|
|
2803
2848
|
{
|
|
2804
2849
|
ref: listRef,
|
|
@@ -2809,7 +2854,7 @@ var Menu = (0, import_react57.forwardRef)(function Menu2({ trigger: trigger2, it
|
|
|
2809
2854
|
onKeyDown: onMenuKeyDown,
|
|
2810
2855
|
children: items.map((entry, index) => {
|
|
2811
2856
|
const ItemIcon = entry.icon;
|
|
2812
|
-
return /* @__PURE__ */ (0,
|
|
2857
|
+
return /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)(
|
|
2813
2858
|
"button",
|
|
2814
2859
|
{
|
|
2815
2860
|
type: "button",
|
|
@@ -2822,7 +2867,7 @@ var Menu = (0, import_react57.forwardRef)(function Menu2({ trigger: trigger2, it
|
|
|
2822
2867
|
setOpen(false);
|
|
2823
2868
|
},
|
|
2824
2869
|
children: [
|
|
2825
|
-
ItemIcon ? /* @__PURE__ */ (0,
|
|
2870
|
+
ItemIcon ? /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(ItemIcon, { size: ICON_SIZE4 }) : null,
|
|
2826
2871
|
entry.label
|
|
2827
2872
|
]
|
|
2828
2873
|
},
|
|
@@ -2837,25 +2882,25 @@ var Menu = (0, import_react57.forwardRef)(function Menu2({ trigger: trigger2, it
|
|
|
2837
2882
|
});
|
|
2838
2883
|
|
|
2839
2884
|
// src/components/dialog/index.tsx
|
|
2840
|
-
var
|
|
2885
|
+
var import_react61 = require("react");
|
|
2841
2886
|
var import_react_dom = require("react-dom");
|
|
2842
2887
|
|
|
2843
2888
|
// src/components/dialog/use-styles.ts
|
|
2844
|
-
var
|
|
2889
|
+
var import_react60 = require("react");
|
|
2845
2890
|
|
|
2846
2891
|
// src/components/dialog/use-styles.css.ts
|
|
2847
2892
|
var actions = "use-styles_actions__5tstu83";
|
|
2848
2893
|
var body2 = "use-styles_body__5tstu82";
|
|
2849
2894
|
var overlay = "use-styles_overlay__5tstu80";
|
|
2850
|
-
var
|
|
2895
|
+
var surface2 = "use-styles_surface__5tstu81";
|
|
2851
2896
|
|
|
2852
2897
|
// src/components/dialog/use-styles.ts
|
|
2853
|
-
function
|
|
2898
|
+
function useStyles27() {
|
|
2854
2899
|
const { themeClass } = useTheme();
|
|
2855
|
-
return (0,
|
|
2900
|
+
return (0, import_react60.useMemo)(
|
|
2856
2901
|
() => ({
|
|
2857
2902
|
overlay: [themeClass, overlay].filter(Boolean).join(" "),
|
|
2858
|
-
surface,
|
|
2903
|
+
surface: surface2,
|
|
2859
2904
|
body: body2,
|
|
2860
2905
|
actions
|
|
2861
2906
|
}),
|
|
@@ -2864,24 +2909,24 @@ function useStyles26() {
|
|
|
2864
2909
|
}
|
|
2865
2910
|
|
|
2866
2911
|
// src/components/dialog/index.tsx
|
|
2867
|
-
var
|
|
2912
|
+
var import_jsx_runtime42 = require("react/jsx-runtime");
|
|
2868
2913
|
var FOCUSABLE = 'a[href], button:not([disabled]), textarea:not([disabled]), input:not([disabled]), select:not([disabled]), [tabindex]:not([tabindex="-1"])';
|
|
2869
2914
|
function assignRef2(ref, value) {
|
|
2870
2915
|
if (typeof ref === "function") ref(value);
|
|
2871
2916
|
else if (ref) ref.current = value;
|
|
2872
2917
|
}
|
|
2873
|
-
var Dialog = (0,
|
|
2874
|
-
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();
|
|
2875
2920
|
const { testId: rootTestId, slot } = useTestId("dialog", testId);
|
|
2876
|
-
const surfaceRef = (0,
|
|
2921
|
+
const surfaceRef = (0, import_react61.useRef)(null);
|
|
2877
2922
|
const setSurfaceRef = (node) => {
|
|
2878
2923
|
surfaceRef.current = node;
|
|
2879
2924
|
assignRef2(ref, node);
|
|
2880
2925
|
};
|
|
2881
|
-
const previouslyFocused = (0,
|
|
2882
|
-
const generatedId = (0,
|
|
2926
|
+
const previouslyFocused = (0, import_react61.useRef)(null);
|
|
2927
|
+
const generatedId = (0, import_react61.useId)();
|
|
2883
2928
|
const titleId = title != null ? generatedId : void 0;
|
|
2884
|
-
(0,
|
|
2929
|
+
(0, import_react61.useEffect)(() => {
|
|
2885
2930
|
if (!open) return;
|
|
2886
2931
|
const onKeyDown = (event) => {
|
|
2887
2932
|
if (event.key === "Escape") onClose();
|
|
@@ -2889,13 +2934,13 @@ var Dialog = (0, import_react59.forwardRef)(function Dialog2({ open, onClose, ti
|
|
|
2889
2934
|
document.addEventListener("keydown", onKeyDown);
|
|
2890
2935
|
return () => document.removeEventListener("keydown", onKeyDown);
|
|
2891
2936
|
}, [open, onClose]);
|
|
2892
|
-
(0,
|
|
2937
|
+
(0, import_react61.useEffect)(() => {
|
|
2893
2938
|
if (!open) return;
|
|
2894
2939
|
previouslyFocused.current = document.activeElement;
|
|
2895
2940
|
surfaceRef.current?.focus();
|
|
2896
2941
|
return () => previouslyFocused.current?.focus?.();
|
|
2897
2942
|
}, [open]);
|
|
2898
|
-
(0,
|
|
2943
|
+
(0, import_react61.useEffect)(() => {
|
|
2899
2944
|
if (!open) return;
|
|
2900
2945
|
const previousOverflow = document.body.style.overflow;
|
|
2901
2946
|
document.body.style.overflow = "hidden";
|
|
@@ -2933,11 +2978,11 @@ var Dialog = (0, import_react59.forwardRef)(function Dialog2({ open, onClose, ti
|
|
|
2933
2978
|
};
|
|
2934
2979
|
return (0, import_react_dom.createPortal)(
|
|
2935
2980
|
// biome-ignore lint/a11y/useKeyWithClickEvents: ESC handled by a document keydown listener.
|
|
2936
|
-
/* @__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)(
|
|
2937
2982
|
"div",
|
|
2938
2983
|
{
|
|
2939
2984
|
ref: setSurfaceRef,
|
|
2940
|
-
className:
|
|
2985
|
+
className: surface3,
|
|
2941
2986
|
role: "dialog",
|
|
2942
2987
|
"aria-modal": "true",
|
|
2943
2988
|
"aria-labelledby": titleId,
|
|
@@ -2946,9 +2991,9 @@ var Dialog = (0, import_react59.forwardRef)(function Dialog2({ open, onClose, ti
|
|
|
2946
2991
|
onClick: stop,
|
|
2947
2992
|
onKeyDown: onSurfaceKeyDown,
|
|
2948
2993
|
children: [
|
|
2949
|
-
title != null && /* @__PURE__ */ (0,
|
|
2950
|
-
children != null && /* @__PURE__ */ (0,
|
|
2951
|
-
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 })
|
|
2952
2997
|
]
|
|
2953
2998
|
}
|
|
2954
2999
|
) }),
|
|
@@ -2957,11 +3002,11 @@ var Dialog = (0, import_react59.forwardRef)(function Dialog2({ open, onClose, ti
|
|
|
2957
3002
|
});
|
|
2958
3003
|
|
|
2959
3004
|
// src/components/snackbar/index.tsx
|
|
2960
|
-
var
|
|
3005
|
+
var import_react63 = require("react");
|
|
2961
3006
|
var import_react_dom2 = require("react-dom");
|
|
2962
3007
|
|
|
2963
3008
|
// src/components/snackbar/use-styles.ts
|
|
2964
|
-
var
|
|
3009
|
+
var import_react62 = require("react");
|
|
2965
3010
|
|
|
2966
3011
|
// src/components/snackbar/use-styles.css.ts
|
|
2967
3012
|
var closeBtn = "use-styles_closeBtn__ihzsep2";
|
|
@@ -2969,9 +3014,9 @@ var message = "use-styles_message__ihzsep1";
|
|
|
2969
3014
|
var root20 = "use-styles_root__ihzsep0 surfaces_inkySurface__1qa7atn2";
|
|
2970
3015
|
|
|
2971
3016
|
// src/components/snackbar/use-styles.ts
|
|
2972
|
-
function
|
|
3017
|
+
function useStyles28() {
|
|
2973
3018
|
const { themeClass } = useTheme();
|
|
2974
|
-
return (0,
|
|
3019
|
+
return (0, import_react62.useMemo)(
|
|
2975
3020
|
() => ({
|
|
2976
3021
|
root: [themeClass, root20].filter(Boolean).join(" "),
|
|
2977
3022
|
message,
|
|
@@ -2982,16 +3027,16 @@ function useStyles27() {
|
|
|
2982
3027
|
}
|
|
2983
3028
|
|
|
2984
3029
|
// src/components/snackbar/index.tsx
|
|
2985
|
-
var
|
|
2986
|
-
var Snackbar = (0,
|
|
2987
|
-
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();
|
|
2988
3033
|
const { testId: dataTestId, slot } = useTestId("feedback", testId);
|
|
2989
3034
|
if (!open || typeof document === "undefined") return null;
|
|
2990
3035
|
return (0, import_react_dom2.createPortal)(
|
|
2991
|
-
/* @__PURE__ */ (0,
|
|
2992
|
-
/* @__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 }),
|
|
2993
3038
|
action,
|
|
2994
|
-
onClose && /* @__PURE__ */ (0,
|
|
3039
|
+
onClose && /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
|
|
2995
3040
|
"button",
|
|
2996
3041
|
{
|
|
2997
3042
|
type: "button",
|
|
@@ -2999,7 +3044,7 @@ var Snackbar = (0, import_react61.forwardRef)(function Snackbar2({ open, message
|
|
|
2999
3044
|
className: closeBtn2,
|
|
3000
3045
|
"data-testid": slot("close"),
|
|
3001
3046
|
onClick: onClose,
|
|
3002
|
-
children: /* @__PURE__ */ (0,
|
|
3047
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(XIcon, { size: 18 })
|
|
3003
3048
|
}
|
|
3004
3049
|
)
|
|
3005
3050
|
] }),
|
|
@@ -3008,10 +3053,10 @@ var Snackbar = (0, import_react61.forwardRef)(function Snackbar2({ open, message
|
|
|
3008
3053
|
});
|
|
3009
3054
|
|
|
3010
3055
|
// src/components/table/index.tsx
|
|
3011
|
-
var
|
|
3056
|
+
var import_react65 = require("react");
|
|
3012
3057
|
|
|
3013
3058
|
// src/components/table/use-styles.ts
|
|
3014
|
-
var
|
|
3059
|
+
var import_react64 = require("react");
|
|
3015
3060
|
|
|
3016
3061
|
// src/components/table/use-styles.css.ts
|
|
3017
3062
|
var alignRight = "use-styles_alignRight__1n2cz6i3";
|
|
@@ -3021,9 +3066,9 @@ var td = "use-styles_td__1n2cz6i2";
|
|
|
3021
3066
|
var th = "use-styles_th__1n2cz6i1";
|
|
3022
3067
|
|
|
3023
3068
|
// src/components/table/use-styles.ts
|
|
3024
|
-
function
|
|
3069
|
+
function useStyles29({ className }) {
|
|
3025
3070
|
const { themeClass } = useTheme();
|
|
3026
|
-
const root24 = (0,
|
|
3071
|
+
const root24 = (0, import_react64.useMemo)(
|
|
3027
3072
|
() => [themeClass, root21, className].filter(Boolean).join(" "),
|
|
3028
3073
|
[themeClass, className]
|
|
3029
3074
|
);
|
|
@@ -3037,27 +3082,27 @@ function useStyles28({ className }) {
|
|
|
3037
3082
|
}
|
|
3038
3083
|
|
|
3039
3084
|
// src/components/table/index.tsx
|
|
3040
|
-
var
|
|
3085
|
+
var import_jsx_runtime44 = require("react/jsx-runtime");
|
|
3041
3086
|
function TableInner({ columns, rows, getRowKey, className, caption: caption2, testId, ...rest }, ref) {
|
|
3042
|
-
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 });
|
|
3043
3088
|
const { testId: dataTestId, slot } = useTestId("list", testId);
|
|
3044
3089
|
const headClass = (column) => column.align === "right" ? `${th2} ${alignRight2}` : th2;
|
|
3045
3090
|
const cellClass = (column) => column.align === "right" ? `${td2} ${alignRight2}` : td2;
|
|
3046
|
-
return /* @__PURE__ */ (0,
|
|
3047
|
-
caption2 != null && /* @__PURE__ */ (0,
|
|
3048
|
-
/* @__PURE__ */ (0,
|
|
3049
|
-
/* @__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)) })
|
|
3050
3095
|
] });
|
|
3051
3096
|
}
|
|
3052
|
-
var TableForwarded = (0,
|
|
3097
|
+
var TableForwarded = (0, import_react65.forwardRef)(TableInner);
|
|
3053
3098
|
TableForwarded.displayName = "Table";
|
|
3054
3099
|
var Table = TableForwarded;
|
|
3055
3100
|
|
|
3056
3101
|
// src/components/app-bar/index.tsx
|
|
3057
|
-
var
|
|
3102
|
+
var import_react67 = require("react");
|
|
3058
3103
|
|
|
3059
3104
|
// src/components/app-bar/use-styles.ts
|
|
3060
|
-
var
|
|
3105
|
+
var import_react66 = require("react");
|
|
3061
3106
|
|
|
3062
3107
|
// src/components/app-bar/use-styles.css.ts
|
|
3063
3108
|
var actions2 = "use-styles_actions__1h133nh2";
|
|
@@ -3065,9 +3110,9 @@ var brand = "use-styles_brand__1h133nh1";
|
|
|
3065
3110
|
var root22 = "use-styles_root__1h133nh0";
|
|
3066
3111
|
|
|
3067
3112
|
// src/components/app-bar/use-styles.ts
|
|
3068
|
-
function
|
|
3113
|
+
function useStyles30({ className }) {
|
|
3069
3114
|
const { themeClass } = useTheme();
|
|
3070
|
-
const root24 = (0,
|
|
3115
|
+
const root24 = (0, import_react66.useMemo)(
|
|
3071
3116
|
() => [themeClass, root22, className].filter(Boolean).join(" "),
|
|
3072
3117
|
[themeClass, className]
|
|
3073
3118
|
);
|
|
@@ -3075,22 +3120,22 @@ function useStyles29({ className }) {
|
|
|
3075
3120
|
}
|
|
3076
3121
|
|
|
3077
3122
|
// src/components/app-bar/index.tsx
|
|
3078
|
-
var
|
|
3079
|
-
var AppBar = (0,
|
|
3080
|
-
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 });
|
|
3081
3126
|
const { testId: dataTestId, slot } = useTestId("nav", testId);
|
|
3082
|
-
return /* @__PURE__ */ (0,
|
|
3083
|
-
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,
|
|
3084
3129
|
children,
|
|
3085
|
-
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
|
|
3086
3131
|
] });
|
|
3087
3132
|
});
|
|
3088
3133
|
|
|
3089
3134
|
// src/components/list-item/index.tsx
|
|
3090
|
-
var
|
|
3135
|
+
var import_react69 = require("react");
|
|
3091
3136
|
|
|
3092
3137
|
// src/components/list-item/use-styles.ts
|
|
3093
|
-
var
|
|
3138
|
+
var import_react68 = require("react");
|
|
3094
3139
|
|
|
3095
3140
|
// src/components/list-item/use-styles.css.ts
|
|
3096
3141
|
var content2 = "use-styles_content__kbreq13";
|
|
@@ -3100,12 +3145,12 @@ var selected2 = "use-styles_selected__kbreq11";
|
|
|
3100
3145
|
var trailing = "use-styles_trailing__kbreq14";
|
|
3101
3146
|
|
|
3102
3147
|
// src/components/list-item/use-styles.ts
|
|
3103
|
-
function
|
|
3148
|
+
function useStyles31({
|
|
3104
3149
|
selected: selected3,
|
|
3105
3150
|
className
|
|
3106
3151
|
}) {
|
|
3107
3152
|
const { themeClass } = useTheme();
|
|
3108
|
-
const root24 = (0,
|
|
3153
|
+
const root24 = (0, import_react68.useMemo)(
|
|
3109
3154
|
() => [themeClass, root23, selected3 && selected2, className].filter(Boolean).join(" "),
|
|
3110
3155
|
[themeClass, selected3, className]
|
|
3111
3156
|
);
|
|
@@ -3113,11 +3158,11 @@ function useStyles30({
|
|
|
3113
3158
|
}
|
|
3114
3159
|
|
|
3115
3160
|
// src/components/list-item/index.tsx
|
|
3116
|
-
var
|
|
3117
|
-
var ListItem = (0,
|
|
3118
|
-
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 });
|
|
3119
3164
|
const { testId: dataTestId, slot } = useTestId("list", testId);
|
|
3120
|
-
return /* @__PURE__ */ (0,
|
|
3165
|
+
return /* @__PURE__ */ (0, import_jsx_runtime46.jsxs)(
|
|
3121
3166
|
"div",
|
|
3122
3167
|
{
|
|
3123
3168
|
ref,
|
|
@@ -3126,18 +3171,18 @@ var ListItem = (0, import_react67.forwardRef)(function ListItem2({ leading: lead
|
|
|
3126
3171
|
"data-state": states({ selected: selected3 }),
|
|
3127
3172
|
...rest,
|
|
3128
3173
|
children: [
|
|
3129
|
-
leading2 != null && /* @__PURE__ */ (0,
|
|
3130
|
-
/* @__PURE__ */ (0,
|
|
3131
|
-
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 })
|
|
3132
3177
|
]
|
|
3133
3178
|
}
|
|
3134
3179
|
);
|
|
3135
3180
|
});
|
|
3136
3181
|
|
|
3137
3182
|
// src/components/icons/alert-circle/index.tsx
|
|
3138
|
-
var
|
|
3183
|
+
var import_jsx_runtime47 = require("react/jsx-runtime");
|
|
3139
3184
|
function AlertCircleIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3140
|
-
return /* @__PURE__ */ (0,
|
|
3185
|
+
return /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)(
|
|
3141
3186
|
"svg",
|
|
3142
3187
|
{
|
|
3143
3188
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3152,18 +3197,18 @@ function AlertCircleIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3152
3197
|
"aria-hidden": "true",
|
|
3153
3198
|
...rest,
|
|
3154
3199
|
children: [
|
|
3155
|
-
/* @__PURE__ */ (0,
|
|
3156
|
-
/* @__PURE__ */ (0,
|
|
3157
|
-
/* @__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" })
|
|
3158
3203
|
]
|
|
3159
3204
|
}
|
|
3160
3205
|
);
|
|
3161
3206
|
}
|
|
3162
3207
|
|
|
3163
3208
|
// src/components/icons/archive/index.tsx
|
|
3164
|
-
var
|
|
3209
|
+
var import_jsx_runtime48 = require("react/jsx-runtime");
|
|
3165
3210
|
function ArchiveIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3166
|
-
return /* @__PURE__ */ (0,
|
|
3211
|
+
return /* @__PURE__ */ (0, import_jsx_runtime48.jsxs)(
|
|
3167
3212
|
"svg",
|
|
3168
3213
|
{
|
|
3169
3214
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3178,18 +3223,18 @@ function ArchiveIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3178
3223
|
"aria-hidden": "true",
|
|
3179
3224
|
...rest,
|
|
3180
3225
|
children: [
|
|
3181
|
-
/* @__PURE__ */ (0,
|
|
3182
|
-
/* @__PURE__ */ (0,
|
|
3183
|
-
/* @__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" })
|
|
3184
3229
|
]
|
|
3185
3230
|
}
|
|
3186
3231
|
);
|
|
3187
3232
|
}
|
|
3188
3233
|
|
|
3189
3234
|
// src/components/icons/arrow-down/index.tsx
|
|
3190
|
-
var
|
|
3235
|
+
var import_jsx_runtime49 = require("react/jsx-runtime");
|
|
3191
3236
|
function ArrowDownIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3192
|
-
return /* @__PURE__ */ (0,
|
|
3237
|
+
return /* @__PURE__ */ (0, import_jsx_runtime49.jsxs)(
|
|
3193
3238
|
"svg",
|
|
3194
3239
|
{
|
|
3195
3240
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3204,17 +3249,17 @@ function ArrowDownIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3204
3249
|
"aria-hidden": "true",
|
|
3205
3250
|
...rest,
|
|
3206
3251
|
children: [
|
|
3207
|
-
/* @__PURE__ */ (0,
|
|
3208
|
-
/* @__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" })
|
|
3209
3254
|
]
|
|
3210
3255
|
}
|
|
3211
3256
|
);
|
|
3212
3257
|
}
|
|
3213
3258
|
|
|
3214
3259
|
// src/components/icons/arrow-left/index.tsx
|
|
3215
|
-
var
|
|
3260
|
+
var import_jsx_runtime50 = require("react/jsx-runtime");
|
|
3216
3261
|
function ArrowLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3217
|
-
return /* @__PURE__ */ (0,
|
|
3262
|
+
return /* @__PURE__ */ (0, import_jsx_runtime50.jsxs)(
|
|
3218
3263
|
"svg",
|
|
3219
3264
|
{
|
|
3220
3265
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3229,17 +3274,17 @@ function ArrowLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3229
3274
|
"aria-hidden": "true",
|
|
3230
3275
|
...rest,
|
|
3231
3276
|
children: [
|
|
3232
|
-
/* @__PURE__ */ (0,
|
|
3233
|
-
/* @__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" })
|
|
3234
3279
|
]
|
|
3235
3280
|
}
|
|
3236
3281
|
);
|
|
3237
3282
|
}
|
|
3238
3283
|
|
|
3239
3284
|
// src/components/icons/arrow-right/index.tsx
|
|
3240
|
-
var
|
|
3285
|
+
var import_jsx_runtime51 = require("react/jsx-runtime");
|
|
3241
3286
|
function ArrowRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3242
|
-
return /* @__PURE__ */ (0,
|
|
3287
|
+
return /* @__PURE__ */ (0, import_jsx_runtime51.jsxs)(
|
|
3243
3288
|
"svg",
|
|
3244
3289
|
{
|
|
3245
3290
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3254,17 +3299,17 @@ function ArrowRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3254
3299
|
"aria-hidden": "true",
|
|
3255
3300
|
...rest,
|
|
3256
3301
|
children: [
|
|
3257
|
-
/* @__PURE__ */ (0,
|
|
3258
|
-
/* @__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" })
|
|
3259
3304
|
]
|
|
3260
3305
|
}
|
|
3261
3306
|
);
|
|
3262
3307
|
}
|
|
3263
3308
|
|
|
3264
3309
|
// src/components/icons/arrow-up/index.tsx
|
|
3265
|
-
var
|
|
3310
|
+
var import_jsx_runtime52 = require("react/jsx-runtime");
|
|
3266
3311
|
function ArrowUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3267
|
-
return /* @__PURE__ */ (0,
|
|
3312
|
+
return /* @__PURE__ */ (0, import_jsx_runtime52.jsxs)(
|
|
3268
3313
|
"svg",
|
|
3269
3314
|
{
|
|
3270
3315
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3279,17 +3324,17 @@ function ArrowUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3279
3324
|
"aria-hidden": "true",
|
|
3280
3325
|
...rest,
|
|
3281
3326
|
children: [
|
|
3282
|
-
/* @__PURE__ */ (0,
|
|
3283
|
-
/* @__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" })
|
|
3284
3329
|
]
|
|
3285
3330
|
}
|
|
3286
3331
|
);
|
|
3287
3332
|
}
|
|
3288
3333
|
|
|
3289
3334
|
// src/components/icons/at-sign/index.tsx
|
|
3290
|
-
var
|
|
3335
|
+
var import_jsx_runtime53 = require("react/jsx-runtime");
|
|
3291
3336
|
function AtSignIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3292
|
-
return /* @__PURE__ */ (0,
|
|
3337
|
+
return /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)(
|
|
3293
3338
|
"svg",
|
|
3294
3339
|
{
|
|
3295
3340
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3304,17 +3349,17 @@ function AtSignIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3304
3349
|
"aria-hidden": "true",
|
|
3305
3350
|
...rest,
|
|
3306
3351
|
children: [
|
|
3307
|
-
/* @__PURE__ */ (0,
|
|
3308
|
-
/* @__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" })
|
|
3309
3354
|
]
|
|
3310
3355
|
}
|
|
3311
3356
|
);
|
|
3312
3357
|
}
|
|
3313
3358
|
|
|
3314
3359
|
// src/components/icons/bell/index.tsx
|
|
3315
|
-
var
|
|
3360
|
+
var import_jsx_runtime54 = require("react/jsx-runtime");
|
|
3316
3361
|
function BellIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3317
|
-
return /* @__PURE__ */ (0,
|
|
3362
|
+
return /* @__PURE__ */ (0, import_jsx_runtime54.jsxs)(
|
|
3318
3363
|
"svg",
|
|
3319
3364
|
{
|
|
3320
3365
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3329,17 +3374,17 @@ function BellIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3329
3374
|
"aria-hidden": "true",
|
|
3330
3375
|
...rest,
|
|
3331
3376
|
children: [
|
|
3332
|
-
/* @__PURE__ */ (0,
|
|
3333
|
-
/* @__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" })
|
|
3334
3379
|
]
|
|
3335
3380
|
}
|
|
3336
3381
|
);
|
|
3337
3382
|
}
|
|
3338
3383
|
|
|
3339
3384
|
// src/components/icons/bell-off/index.tsx
|
|
3340
|
-
var
|
|
3385
|
+
var import_jsx_runtime55 = require("react/jsx-runtime");
|
|
3341
3386
|
function BellOffIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3342
|
-
return /* @__PURE__ */ (0,
|
|
3387
|
+
return /* @__PURE__ */ (0, import_jsx_runtime55.jsxs)(
|
|
3343
3388
|
"svg",
|
|
3344
3389
|
{
|
|
3345
3390
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3354,19 +3399,19 @@ function BellOffIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3354
3399
|
"aria-hidden": "true",
|
|
3355
3400
|
...rest,
|
|
3356
3401
|
children: [
|
|
3357
|
-
/* @__PURE__ */ (0,
|
|
3358
|
-
/* @__PURE__ */ (0,
|
|
3359
|
-
/* @__PURE__ */ (0,
|
|
3360
|
-
/* @__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" })
|
|
3361
3406
|
]
|
|
3362
3407
|
}
|
|
3363
3408
|
);
|
|
3364
3409
|
}
|
|
3365
3410
|
|
|
3366
3411
|
// src/components/icons/bookmark/index.tsx
|
|
3367
|
-
var
|
|
3412
|
+
var import_jsx_runtime56 = require("react/jsx-runtime");
|
|
3368
3413
|
function BookmarkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3369
|
-
return /* @__PURE__ */ (0,
|
|
3414
|
+
return /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
|
|
3370
3415
|
"svg",
|
|
3371
3416
|
{
|
|
3372
3417
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3380,15 +3425,15 @@ function BookmarkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3380
3425
|
strokeLinejoin: "round",
|
|
3381
3426
|
"aria-hidden": "true",
|
|
3382
3427
|
...rest,
|
|
3383
|
-
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" })
|
|
3384
3429
|
}
|
|
3385
3430
|
);
|
|
3386
3431
|
}
|
|
3387
3432
|
|
|
3388
3433
|
// src/components/icons/calendar/index.tsx
|
|
3389
|
-
var
|
|
3434
|
+
var import_jsx_runtime57 = require("react/jsx-runtime");
|
|
3390
3435
|
function CalendarIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3391
|
-
return /* @__PURE__ */ (0,
|
|
3436
|
+
return /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)(
|
|
3392
3437
|
"svg",
|
|
3393
3438
|
{
|
|
3394
3439
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3403,19 +3448,19 @@ function CalendarIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3403
3448
|
"aria-hidden": "true",
|
|
3404
3449
|
...rest,
|
|
3405
3450
|
children: [
|
|
3406
|
-
/* @__PURE__ */ (0,
|
|
3407
|
-
/* @__PURE__ */ (0,
|
|
3408
|
-
/* @__PURE__ */ (0,
|
|
3409
|
-
/* @__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" })
|
|
3410
3455
|
]
|
|
3411
3456
|
}
|
|
3412
3457
|
);
|
|
3413
3458
|
}
|
|
3414
3459
|
|
|
3415
3460
|
// src/components/icons/camera/index.tsx
|
|
3416
|
-
var
|
|
3461
|
+
var import_jsx_runtime58 = require("react/jsx-runtime");
|
|
3417
3462
|
function CameraIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3418
|
-
return /* @__PURE__ */ (0,
|
|
3463
|
+
return /* @__PURE__ */ (0, import_jsx_runtime58.jsxs)(
|
|
3419
3464
|
"svg",
|
|
3420
3465
|
{
|
|
3421
3466
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3430,17 +3475,17 @@ function CameraIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3430
3475
|
"aria-hidden": "true",
|
|
3431
3476
|
...rest,
|
|
3432
3477
|
children: [
|
|
3433
|
-
/* @__PURE__ */ (0,
|
|
3434
|
-
/* @__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" })
|
|
3435
3480
|
]
|
|
3436
3481
|
}
|
|
3437
3482
|
);
|
|
3438
3483
|
}
|
|
3439
3484
|
|
|
3440
3485
|
// src/components/icons/chevron-up/index.tsx
|
|
3441
|
-
var
|
|
3486
|
+
var import_jsx_runtime59 = require("react/jsx-runtime");
|
|
3442
3487
|
function ChevronUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3443
|
-
return /* @__PURE__ */ (0,
|
|
3488
|
+
return /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
|
|
3444
3489
|
"svg",
|
|
3445
3490
|
{
|
|
3446
3491
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3454,15 +3499,15 @@ function ChevronUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3454
3499
|
strokeLinejoin: "round",
|
|
3455
3500
|
"aria-hidden": "true",
|
|
3456
3501
|
...rest,
|
|
3457
|
-
children: /* @__PURE__ */ (0,
|
|
3502
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime59.jsx)("path", { d: "m18 15-6-6-6 6" })
|
|
3458
3503
|
}
|
|
3459
3504
|
);
|
|
3460
3505
|
}
|
|
3461
3506
|
|
|
3462
3507
|
// src/components/icons/chevrons-left/index.tsx
|
|
3463
|
-
var
|
|
3508
|
+
var import_jsx_runtime60 = require("react/jsx-runtime");
|
|
3464
3509
|
function ChevronsLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3465
|
-
return /* @__PURE__ */ (0,
|
|
3510
|
+
return /* @__PURE__ */ (0, import_jsx_runtime60.jsxs)(
|
|
3466
3511
|
"svg",
|
|
3467
3512
|
{
|
|
3468
3513
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3477,17 +3522,17 @@ function ChevronsLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3477
3522
|
"aria-hidden": "true",
|
|
3478
3523
|
...rest,
|
|
3479
3524
|
children: [
|
|
3480
|
-
/* @__PURE__ */ (0,
|
|
3481
|
-
/* @__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" })
|
|
3482
3527
|
]
|
|
3483
3528
|
}
|
|
3484
3529
|
);
|
|
3485
3530
|
}
|
|
3486
3531
|
|
|
3487
3532
|
// src/components/icons/chevrons-right/index.tsx
|
|
3488
|
-
var
|
|
3533
|
+
var import_jsx_runtime61 = require("react/jsx-runtime");
|
|
3489
3534
|
function ChevronsRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3490
|
-
return /* @__PURE__ */ (0,
|
|
3535
|
+
return /* @__PURE__ */ (0, import_jsx_runtime61.jsxs)(
|
|
3491
3536
|
"svg",
|
|
3492
3537
|
{
|
|
3493
3538
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3502,17 +3547,17 @@ function ChevronsRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3502
3547
|
"aria-hidden": "true",
|
|
3503
3548
|
...rest,
|
|
3504
3549
|
children: [
|
|
3505
|
-
/* @__PURE__ */ (0,
|
|
3506
|
-
/* @__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" })
|
|
3507
3552
|
]
|
|
3508
3553
|
}
|
|
3509
3554
|
);
|
|
3510
3555
|
}
|
|
3511
3556
|
|
|
3512
3557
|
// src/components/icons/clipboard/index.tsx
|
|
3513
|
-
var
|
|
3558
|
+
var import_jsx_runtime62 = require("react/jsx-runtime");
|
|
3514
3559
|
function ClipboardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3515
|
-
return /* @__PURE__ */ (0,
|
|
3560
|
+
return /* @__PURE__ */ (0, import_jsx_runtime62.jsxs)(
|
|
3516
3561
|
"svg",
|
|
3517
3562
|
{
|
|
3518
3563
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3527,17 +3572,17 @@ function ClipboardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3527
3572
|
"aria-hidden": "true",
|
|
3528
3573
|
...rest,
|
|
3529
3574
|
children: [
|
|
3530
|
-
/* @__PURE__ */ (0,
|
|
3531
|
-
/* @__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" })
|
|
3532
3577
|
]
|
|
3533
3578
|
}
|
|
3534
3579
|
);
|
|
3535
3580
|
}
|
|
3536
3581
|
|
|
3537
3582
|
// src/components/icons/clock/index.tsx
|
|
3538
|
-
var
|
|
3583
|
+
var import_jsx_runtime63 = require("react/jsx-runtime");
|
|
3539
3584
|
function ClockIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3540
|
-
return /* @__PURE__ */ (0,
|
|
3585
|
+
return /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)(
|
|
3541
3586
|
"svg",
|
|
3542
3587
|
{
|
|
3543
3588
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3552,17 +3597,17 @@ function ClockIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3552
3597
|
"aria-hidden": "true",
|
|
3553
3598
|
...rest,
|
|
3554
3599
|
children: [
|
|
3555
|
-
/* @__PURE__ */ (0,
|
|
3556
|
-
/* @__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" })
|
|
3557
3602
|
]
|
|
3558
3603
|
}
|
|
3559
3604
|
);
|
|
3560
3605
|
}
|
|
3561
3606
|
|
|
3562
3607
|
// src/components/icons/cloud/index.tsx
|
|
3563
|
-
var
|
|
3608
|
+
var import_jsx_runtime64 = require("react/jsx-runtime");
|
|
3564
3609
|
function CloudIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3565
|
-
return /* @__PURE__ */ (0,
|
|
3610
|
+
return /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
|
|
3566
3611
|
"svg",
|
|
3567
3612
|
{
|
|
3568
3613
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3576,15 +3621,15 @@ function CloudIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3576
3621
|
strokeLinejoin: "round",
|
|
3577
3622
|
"aria-hidden": "true",
|
|
3578
3623
|
...rest,
|
|
3579
|
-
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" })
|
|
3580
3625
|
}
|
|
3581
3626
|
);
|
|
3582
3627
|
}
|
|
3583
3628
|
|
|
3584
3629
|
// src/components/icons/copy/index.tsx
|
|
3585
|
-
var
|
|
3630
|
+
var import_jsx_runtime65 = require("react/jsx-runtime");
|
|
3586
3631
|
function CopyIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3587
|
-
return /* @__PURE__ */ (0,
|
|
3632
|
+
return /* @__PURE__ */ (0, import_jsx_runtime65.jsxs)(
|
|
3588
3633
|
"svg",
|
|
3589
3634
|
{
|
|
3590
3635
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3599,17 +3644,17 @@ function CopyIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3599
3644
|
"aria-hidden": "true",
|
|
3600
3645
|
...rest,
|
|
3601
3646
|
children: [
|
|
3602
|
-
/* @__PURE__ */ (0,
|
|
3603
|
-
/* @__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" })
|
|
3604
3649
|
]
|
|
3605
3650
|
}
|
|
3606
3651
|
);
|
|
3607
3652
|
}
|
|
3608
3653
|
|
|
3609
3654
|
// src/components/icons/corner-down-right/index.tsx
|
|
3610
|
-
var
|
|
3655
|
+
var import_jsx_runtime66 = require("react/jsx-runtime");
|
|
3611
3656
|
function CornerDownRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3612
|
-
return /* @__PURE__ */ (0,
|
|
3657
|
+
return /* @__PURE__ */ (0, import_jsx_runtime66.jsxs)(
|
|
3613
3658
|
"svg",
|
|
3614
3659
|
{
|
|
3615
3660
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3624,17 +3669,17 @@ function CornerDownRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest })
|
|
|
3624
3669
|
"aria-hidden": "true",
|
|
3625
3670
|
...rest,
|
|
3626
3671
|
children: [
|
|
3627
|
-
/* @__PURE__ */ (0,
|
|
3628
|
-
/* @__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" })
|
|
3629
3674
|
]
|
|
3630
3675
|
}
|
|
3631
3676
|
);
|
|
3632
3677
|
}
|
|
3633
3678
|
|
|
3634
3679
|
// src/components/icons/credit-card/index.tsx
|
|
3635
|
-
var
|
|
3680
|
+
var import_jsx_runtime67 = require("react/jsx-runtime");
|
|
3636
3681
|
function CreditCardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3637
|
-
return /* @__PURE__ */ (0,
|
|
3682
|
+
return /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)(
|
|
3638
3683
|
"svg",
|
|
3639
3684
|
{
|
|
3640
3685
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3649,17 +3694,17 @@ function CreditCardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3649
3694
|
"aria-hidden": "true",
|
|
3650
3695
|
...rest,
|
|
3651
3696
|
children: [
|
|
3652
|
-
/* @__PURE__ */ (0,
|
|
3653
|
-
/* @__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" })
|
|
3654
3699
|
]
|
|
3655
3700
|
}
|
|
3656
3701
|
);
|
|
3657
3702
|
}
|
|
3658
3703
|
|
|
3659
3704
|
// src/components/icons/dollar-sign/index.tsx
|
|
3660
|
-
var
|
|
3705
|
+
var import_jsx_runtime68 = require("react/jsx-runtime");
|
|
3661
3706
|
function DollarSignIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3662
|
-
return /* @__PURE__ */ (0,
|
|
3707
|
+
return /* @__PURE__ */ (0, import_jsx_runtime68.jsxs)(
|
|
3663
3708
|
"svg",
|
|
3664
3709
|
{
|
|
3665
3710
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3674,17 +3719,17 @@ function DollarSignIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3674
3719
|
"aria-hidden": "true",
|
|
3675
3720
|
...rest,
|
|
3676
3721
|
children: [
|
|
3677
|
-
/* @__PURE__ */ (0,
|
|
3678
|
-
/* @__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" })
|
|
3679
3724
|
]
|
|
3680
3725
|
}
|
|
3681
3726
|
);
|
|
3682
3727
|
}
|
|
3683
3728
|
|
|
3684
3729
|
// src/components/icons/download/index.tsx
|
|
3685
|
-
var
|
|
3730
|
+
var import_jsx_runtime69 = require("react/jsx-runtime");
|
|
3686
3731
|
function DownloadIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3687
|
-
return /* @__PURE__ */ (0,
|
|
3732
|
+
return /* @__PURE__ */ (0, import_jsx_runtime69.jsxs)(
|
|
3688
3733
|
"svg",
|
|
3689
3734
|
{
|
|
3690
3735
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3699,18 +3744,18 @@ function DownloadIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3699
3744
|
"aria-hidden": "true",
|
|
3700
3745
|
...rest,
|
|
3701
3746
|
children: [
|
|
3702
|
-
/* @__PURE__ */ (0,
|
|
3703
|
-
/* @__PURE__ */ (0,
|
|
3704
|
-
/* @__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" })
|
|
3705
3750
|
]
|
|
3706
3751
|
}
|
|
3707
3752
|
);
|
|
3708
3753
|
}
|
|
3709
3754
|
|
|
3710
3755
|
// src/components/icons/external-link/index.tsx
|
|
3711
|
-
var
|
|
3756
|
+
var import_jsx_runtime70 = require("react/jsx-runtime");
|
|
3712
3757
|
function ExternalLinkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3713
|
-
return /* @__PURE__ */ (0,
|
|
3758
|
+
return /* @__PURE__ */ (0, import_jsx_runtime70.jsxs)(
|
|
3714
3759
|
"svg",
|
|
3715
3760
|
{
|
|
3716
3761
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3725,18 +3770,18 @@ function ExternalLinkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3725
3770
|
"aria-hidden": "true",
|
|
3726
3771
|
...rest,
|
|
3727
3772
|
children: [
|
|
3728
|
-
/* @__PURE__ */ (0,
|
|
3729
|
-
/* @__PURE__ */ (0,
|
|
3730
|
-
/* @__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" })
|
|
3731
3776
|
]
|
|
3732
3777
|
}
|
|
3733
3778
|
);
|
|
3734
3779
|
}
|
|
3735
3780
|
|
|
3736
3781
|
// src/components/icons/file/index.tsx
|
|
3737
|
-
var
|
|
3782
|
+
var import_jsx_runtime71 = require("react/jsx-runtime");
|
|
3738
3783
|
function FileIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3739
|
-
return /* @__PURE__ */ (0,
|
|
3784
|
+
return /* @__PURE__ */ (0, import_jsx_runtime71.jsxs)(
|
|
3740
3785
|
"svg",
|
|
3741
3786
|
{
|
|
3742
3787
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3751,17 +3796,17 @@ function FileIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3751
3796
|
"aria-hidden": "true",
|
|
3752
3797
|
...rest,
|
|
3753
3798
|
children: [
|
|
3754
|
-
/* @__PURE__ */ (0,
|
|
3755
|
-
/* @__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" })
|
|
3756
3801
|
]
|
|
3757
3802
|
}
|
|
3758
3803
|
);
|
|
3759
3804
|
}
|
|
3760
3805
|
|
|
3761
3806
|
// src/components/icons/file-text/index.tsx
|
|
3762
|
-
var
|
|
3807
|
+
var import_jsx_runtime72 = require("react/jsx-runtime");
|
|
3763
3808
|
function FileTextIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3764
|
-
return /* @__PURE__ */ (0,
|
|
3809
|
+
return /* @__PURE__ */ (0, import_jsx_runtime72.jsxs)(
|
|
3765
3810
|
"svg",
|
|
3766
3811
|
{
|
|
3767
3812
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3776,20 +3821,20 @@ function FileTextIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3776
3821
|
"aria-hidden": "true",
|
|
3777
3822
|
...rest,
|
|
3778
3823
|
children: [
|
|
3779
|
-
/* @__PURE__ */ (0,
|
|
3780
|
-
/* @__PURE__ */ (0,
|
|
3781
|
-
/* @__PURE__ */ (0,
|
|
3782
|
-
/* @__PURE__ */ (0,
|
|
3783
|
-
/* @__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" })
|
|
3784
3829
|
]
|
|
3785
3830
|
}
|
|
3786
3831
|
);
|
|
3787
3832
|
}
|
|
3788
3833
|
|
|
3789
3834
|
// src/components/icons/filter/index.tsx
|
|
3790
|
-
var
|
|
3835
|
+
var import_jsx_runtime73 = require("react/jsx-runtime");
|
|
3791
3836
|
function FilterIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3792
|
-
return /* @__PURE__ */ (0,
|
|
3837
|
+
return /* @__PURE__ */ (0, import_jsx_runtime73.jsx)(
|
|
3793
3838
|
"svg",
|
|
3794
3839
|
{
|
|
3795
3840
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3803,15 +3848,15 @@ function FilterIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3803
3848
|
strokeLinejoin: "round",
|
|
3804
3849
|
"aria-hidden": "true",
|
|
3805
3850
|
...rest,
|
|
3806
|
-
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" })
|
|
3807
3852
|
}
|
|
3808
3853
|
);
|
|
3809
3854
|
}
|
|
3810
3855
|
|
|
3811
3856
|
// src/components/icons/fingerprint/index.tsx
|
|
3812
|
-
var
|
|
3857
|
+
var import_jsx_runtime74 = require("react/jsx-runtime");
|
|
3813
3858
|
function FingerprintIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3814
|
-
return /* @__PURE__ */ (0,
|
|
3859
|
+
return /* @__PURE__ */ (0, import_jsx_runtime74.jsxs)(
|
|
3815
3860
|
"svg",
|
|
3816
3861
|
{
|
|
3817
3862
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3826,24 +3871,24 @@ function FingerprintIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3826
3871
|
"aria-hidden": "true",
|
|
3827
3872
|
...rest,
|
|
3828
3873
|
children: [
|
|
3829
|
-
/* @__PURE__ */ (0,
|
|
3830
|
-
/* @__PURE__ */ (0,
|
|
3831
|
-
/* @__PURE__ */ (0,
|
|
3832
|
-
/* @__PURE__ */ (0,
|
|
3833
|
-
/* @__PURE__ */ (0,
|
|
3834
|
-
/* @__PURE__ */ (0,
|
|
3835
|
-
/* @__PURE__ */ (0,
|
|
3836
|
-
/* @__PURE__ */ (0,
|
|
3837
|
-
/* @__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" })
|
|
3838
3883
|
]
|
|
3839
3884
|
}
|
|
3840
3885
|
);
|
|
3841
3886
|
}
|
|
3842
3887
|
|
|
3843
3888
|
// src/components/icons/folder/index.tsx
|
|
3844
|
-
var
|
|
3889
|
+
var import_jsx_runtime75 = require("react/jsx-runtime");
|
|
3845
3890
|
function FolderIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3846
|
-
return /* @__PURE__ */ (0,
|
|
3891
|
+
return /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
3847
3892
|
"svg",
|
|
3848
3893
|
{
|
|
3849
3894
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3857,15 +3902,15 @@ function FolderIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3857
3902
|
strokeLinejoin: "round",
|
|
3858
3903
|
"aria-hidden": "true",
|
|
3859
3904
|
...rest,
|
|
3860
|
-
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" })
|
|
3861
3906
|
}
|
|
3862
3907
|
);
|
|
3863
3908
|
}
|
|
3864
3909
|
|
|
3865
3910
|
// src/components/icons/folder-open/index.tsx
|
|
3866
|
-
var
|
|
3911
|
+
var import_jsx_runtime76 = require("react/jsx-runtime");
|
|
3867
3912
|
function FolderOpenIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3868
|
-
return /* @__PURE__ */ (0,
|
|
3913
|
+
return /* @__PURE__ */ (0, import_jsx_runtime76.jsx)(
|
|
3869
3914
|
"svg",
|
|
3870
3915
|
{
|
|
3871
3916
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3879,15 +3924,15 @@ function FolderOpenIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3879
3924
|
strokeLinejoin: "round",
|
|
3880
3925
|
"aria-hidden": "true",
|
|
3881
3926
|
...rest,
|
|
3882
|
-
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" })
|
|
3883
3928
|
}
|
|
3884
3929
|
);
|
|
3885
3930
|
}
|
|
3886
3931
|
|
|
3887
3932
|
// src/components/icons/gift/index.tsx
|
|
3888
|
-
var
|
|
3933
|
+
var import_jsx_runtime77 = require("react/jsx-runtime");
|
|
3889
3934
|
function GiftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3890
|
-
return /* @__PURE__ */ (0,
|
|
3935
|
+
return /* @__PURE__ */ (0, import_jsx_runtime77.jsxs)(
|
|
3891
3936
|
"svg",
|
|
3892
3937
|
{
|
|
3893
3938
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3902,19 +3947,19 @@ function GiftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3902
3947
|
"aria-hidden": "true",
|
|
3903
3948
|
...rest,
|
|
3904
3949
|
children: [
|
|
3905
|
-
/* @__PURE__ */ (0,
|
|
3906
|
-
/* @__PURE__ */ (0,
|
|
3907
|
-
/* @__PURE__ */ (0,
|
|
3908
|
-
/* @__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" })
|
|
3909
3954
|
]
|
|
3910
3955
|
}
|
|
3911
3956
|
);
|
|
3912
3957
|
}
|
|
3913
3958
|
|
|
3914
3959
|
// src/components/icons/globe/index.tsx
|
|
3915
|
-
var
|
|
3960
|
+
var import_jsx_runtime78 = require("react/jsx-runtime");
|
|
3916
3961
|
function GlobeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3917
|
-
return /* @__PURE__ */ (0,
|
|
3962
|
+
return /* @__PURE__ */ (0, import_jsx_runtime78.jsxs)(
|
|
3918
3963
|
"svg",
|
|
3919
3964
|
{
|
|
3920
3965
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3929,18 +3974,18 @@ function GlobeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3929
3974
|
"aria-hidden": "true",
|
|
3930
3975
|
...rest,
|
|
3931
3976
|
children: [
|
|
3932
|
-
/* @__PURE__ */ (0,
|
|
3933
|
-
/* @__PURE__ */ (0,
|
|
3934
|
-
/* @__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" })
|
|
3935
3980
|
]
|
|
3936
3981
|
}
|
|
3937
3982
|
);
|
|
3938
3983
|
}
|
|
3939
3984
|
|
|
3940
3985
|
// src/components/icons/grid/index.tsx
|
|
3941
|
-
var
|
|
3986
|
+
var import_jsx_runtime79 = require("react/jsx-runtime");
|
|
3942
3987
|
function GridIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3943
|
-
return /* @__PURE__ */ (0,
|
|
3988
|
+
return /* @__PURE__ */ (0, import_jsx_runtime79.jsxs)(
|
|
3944
3989
|
"svg",
|
|
3945
3990
|
{
|
|
3946
3991
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3955,20 +4000,20 @@ function GridIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3955
4000
|
"aria-hidden": "true",
|
|
3956
4001
|
...rest,
|
|
3957
4002
|
children: [
|
|
3958
|
-
/* @__PURE__ */ (0,
|
|
3959
|
-
/* @__PURE__ */ (0,
|
|
3960
|
-
/* @__PURE__ */ (0,
|
|
3961
|
-
/* @__PURE__ */ (0,
|
|
3962
|
-
/* @__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" })
|
|
3963
4008
|
]
|
|
3964
4009
|
}
|
|
3965
4010
|
);
|
|
3966
4011
|
}
|
|
3967
4012
|
|
|
3968
4013
|
// src/components/icons/heart/index.tsx
|
|
3969
|
-
var
|
|
4014
|
+
var import_jsx_runtime80 = require("react/jsx-runtime");
|
|
3970
4015
|
function HeartIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3971
|
-
return /* @__PURE__ */ (0,
|
|
4016
|
+
return /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(
|
|
3972
4017
|
"svg",
|
|
3973
4018
|
{
|
|
3974
4019
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3982,15 +4027,15 @@ function HeartIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
3982
4027
|
strokeLinejoin: "round",
|
|
3983
4028
|
"aria-hidden": "true",
|
|
3984
4029
|
...rest,
|
|
3985
|
-
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" })
|
|
3986
4031
|
}
|
|
3987
4032
|
);
|
|
3988
4033
|
}
|
|
3989
4034
|
|
|
3990
4035
|
// src/components/icons/help-circle/index.tsx
|
|
3991
|
-
var
|
|
4036
|
+
var import_jsx_runtime81 = require("react/jsx-runtime");
|
|
3992
4037
|
function HelpCircleIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
3993
|
-
return /* @__PURE__ */ (0,
|
|
4038
|
+
return /* @__PURE__ */ (0, import_jsx_runtime81.jsxs)(
|
|
3994
4039
|
"svg",
|
|
3995
4040
|
{
|
|
3996
4041
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4005,18 +4050,18 @@ function HelpCircleIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4005
4050
|
"aria-hidden": "true",
|
|
4006
4051
|
...rest,
|
|
4007
4052
|
children: [
|
|
4008
|
-
/* @__PURE__ */ (0,
|
|
4009
|
-
/* @__PURE__ */ (0,
|
|
4010
|
-
/* @__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" })
|
|
4011
4056
|
]
|
|
4012
4057
|
}
|
|
4013
4058
|
);
|
|
4014
4059
|
}
|
|
4015
4060
|
|
|
4016
4061
|
// src/components/icons/home/index.tsx
|
|
4017
|
-
var
|
|
4062
|
+
var import_jsx_runtime82 = require("react/jsx-runtime");
|
|
4018
4063
|
function HomeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4019
|
-
return /* @__PURE__ */ (0,
|
|
4064
|
+
return /* @__PURE__ */ (0, import_jsx_runtime82.jsxs)(
|
|
4020
4065
|
"svg",
|
|
4021
4066
|
{
|
|
4022
4067
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4031,17 +4076,17 @@ function HomeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4031
4076
|
"aria-hidden": "true",
|
|
4032
4077
|
...rest,
|
|
4033
4078
|
children: [
|
|
4034
|
-
/* @__PURE__ */ (0,
|
|
4035
|
-
/* @__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" })
|
|
4036
4081
|
]
|
|
4037
4082
|
}
|
|
4038
4083
|
);
|
|
4039
4084
|
}
|
|
4040
4085
|
|
|
4041
4086
|
// src/components/icons/image/index.tsx
|
|
4042
|
-
var
|
|
4087
|
+
var import_jsx_runtime83 = require("react/jsx-runtime");
|
|
4043
4088
|
function ImageIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4044
|
-
return /* @__PURE__ */ (0,
|
|
4089
|
+
return /* @__PURE__ */ (0, import_jsx_runtime83.jsxs)(
|
|
4045
4090
|
"svg",
|
|
4046
4091
|
{
|
|
4047
4092
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4056,18 +4101,18 @@ function ImageIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4056
4101
|
"aria-hidden": "true",
|
|
4057
4102
|
...rest,
|
|
4058
4103
|
children: [
|
|
4059
|
-
/* @__PURE__ */ (0,
|
|
4060
|
-
/* @__PURE__ */ (0,
|
|
4061
|
-
/* @__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" })
|
|
4062
4107
|
]
|
|
4063
4108
|
}
|
|
4064
4109
|
);
|
|
4065
4110
|
}
|
|
4066
4111
|
|
|
4067
4112
|
// src/components/icons/inbox/index.tsx
|
|
4068
|
-
var
|
|
4113
|
+
var import_jsx_runtime84 = require("react/jsx-runtime");
|
|
4069
4114
|
function InboxIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4070
|
-
return /* @__PURE__ */ (0,
|
|
4115
|
+
return /* @__PURE__ */ (0, import_jsx_runtime84.jsxs)(
|
|
4071
4116
|
"svg",
|
|
4072
4117
|
{
|
|
4073
4118
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4082,17 +4127,17 @@ function InboxIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4082
4127
|
"aria-hidden": "true",
|
|
4083
4128
|
...rest,
|
|
4084
4129
|
children: [
|
|
4085
|
-
/* @__PURE__ */ (0,
|
|
4086
|
-
/* @__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" })
|
|
4087
4132
|
]
|
|
4088
4133
|
}
|
|
4089
4134
|
);
|
|
4090
4135
|
}
|
|
4091
4136
|
|
|
4092
4137
|
// src/components/icons/key/index.tsx
|
|
4093
|
-
var
|
|
4138
|
+
var import_jsx_runtime85 = require("react/jsx-runtime");
|
|
4094
4139
|
function KeyIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4095
|
-
return /* @__PURE__ */ (0,
|
|
4140
|
+
return /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)(
|
|
4096
4141
|
"svg",
|
|
4097
4142
|
{
|
|
4098
4143
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4107,18 +4152,18 @@ function KeyIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4107
4152
|
"aria-hidden": "true",
|
|
4108
4153
|
...rest,
|
|
4109
4154
|
children: [
|
|
4110
|
-
/* @__PURE__ */ (0,
|
|
4111
|
-
/* @__PURE__ */ (0,
|
|
4112
|
-
/* @__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" })
|
|
4113
4158
|
]
|
|
4114
4159
|
}
|
|
4115
4160
|
);
|
|
4116
4161
|
}
|
|
4117
4162
|
|
|
4118
4163
|
// src/components/icons/layout/index.tsx
|
|
4119
|
-
var
|
|
4164
|
+
var import_jsx_runtime86 = require("react/jsx-runtime");
|
|
4120
4165
|
function LayoutIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4121
|
-
return /* @__PURE__ */ (0,
|
|
4166
|
+
return /* @__PURE__ */ (0, import_jsx_runtime86.jsxs)(
|
|
4122
4167
|
"svg",
|
|
4123
4168
|
{
|
|
4124
4169
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4133,19 +4178,19 @@ function LayoutIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4133
4178
|
"aria-hidden": "true",
|
|
4134
4179
|
...rest,
|
|
4135
4180
|
children: [
|
|
4136
|
-
/* @__PURE__ */ (0,
|
|
4137
|
-
/* @__PURE__ */ (0,
|
|
4138
|
-
/* @__PURE__ */ (0,
|
|
4139
|
-
/* @__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" })
|
|
4140
4185
|
]
|
|
4141
4186
|
}
|
|
4142
4187
|
);
|
|
4143
4188
|
}
|
|
4144
4189
|
|
|
4145
4190
|
// src/components/icons/link/index.tsx
|
|
4146
|
-
var
|
|
4191
|
+
var import_jsx_runtime87 = require("react/jsx-runtime");
|
|
4147
4192
|
function LinkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4148
|
-
return /* @__PURE__ */ (0,
|
|
4193
|
+
return /* @__PURE__ */ (0, import_jsx_runtime87.jsxs)(
|
|
4149
4194
|
"svg",
|
|
4150
4195
|
{
|
|
4151
4196
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4160,17 +4205,17 @@ function LinkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4160
4205
|
"aria-hidden": "true",
|
|
4161
4206
|
...rest,
|
|
4162
4207
|
children: [
|
|
4163
|
-
/* @__PURE__ */ (0,
|
|
4164
|
-
/* @__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" })
|
|
4165
4210
|
]
|
|
4166
4211
|
}
|
|
4167
4212
|
);
|
|
4168
4213
|
}
|
|
4169
4214
|
|
|
4170
4215
|
// src/components/icons/list/index.tsx
|
|
4171
|
-
var
|
|
4216
|
+
var import_jsx_runtime88 = require("react/jsx-runtime");
|
|
4172
4217
|
function ListIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4173
|
-
return /* @__PURE__ */ (0,
|
|
4218
|
+
return /* @__PURE__ */ (0, import_jsx_runtime88.jsxs)(
|
|
4174
4219
|
"svg",
|
|
4175
4220
|
{
|
|
4176
4221
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4185,21 +4230,21 @@ function ListIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4185
4230
|
"aria-hidden": "true",
|
|
4186
4231
|
...rest,
|
|
4187
4232
|
children: [
|
|
4188
|
-
/* @__PURE__ */ (0,
|
|
4189
|
-
/* @__PURE__ */ (0,
|
|
4190
|
-
/* @__PURE__ */ (0,
|
|
4191
|
-
/* @__PURE__ */ (0,
|
|
4192
|
-
/* @__PURE__ */ (0,
|
|
4193
|
-
/* @__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" })
|
|
4194
4239
|
]
|
|
4195
4240
|
}
|
|
4196
4241
|
);
|
|
4197
4242
|
}
|
|
4198
4243
|
|
|
4199
4244
|
// src/components/icons/loader/index.tsx
|
|
4200
|
-
var
|
|
4245
|
+
var import_jsx_runtime89 = require("react/jsx-runtime");
|
|
4201
4246
|
function LoaderIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4202
|
-
return /* @__PURE__ */ (0,
|
|
4247
|
+
return /* @__PURE__ */ (0, import_jsx_runtime89.jsxs)(
|
|
4203
4248
|
"svg",
|
|
4204
4249
|
{
|
|
4205
4250
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4214,23 +4259,23 @@ function LoaderIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4214
4259
|
"aria-hidden": "true",
|
|
4215
4260
|
...rest,
|
|
4216
4261
|
children: [
|
|
4217
|
-
/* @__PURE__ */ (0,
|
|
4218
|
-
/* @__PURE__ */ (0,
|
|
4219
|
-
/* @__PURE__ */ (0,
|
|
4220
|
-
/* @__PURE__ */ (0,
|
|
4221
|
-
/* @__PURE__ */ (0,
|
|
4222
|
-
/* @__PURE__ */ (0,
|
|
4223
|
-
/* @__PURE__ */ (0,
|
|
4224
|
-
/* @__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" })
|
|
4225
4270
|
]
|
|
4226
4271
|
}
|
|
4227
4272
|
);
|
|
4228
4273
|
}
|
|
4229
4274
|
|
|
4230
4275
|
// src/components/icons/lock/index.tsx
|
|
4231
|
-
var
|
|
4276
|
+
var import_jsx_runtime90 = require("react/jsx-runtime");
|
|
4232
4277
|
function LockIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4233
|
-
return /* @__PURE__ */ (0,
|
|
4278
|
+
return /* @__PURE__ */ (0, import_jsx_runtime90.jsxs)(
|
|
4234
4279
|
"svg",
|
|
4235
4280
|
{
|
|
4236
4281
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4245,17 +4290,17 @@ function LockIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4245
4290
|
"aria-hidden": "true",
|
|
4246
4291
|
...rest,
|
|
4247
4292
|
children: [
|
|
4248
|
-
/* @__PURE__ */ (0,
|
|
4249
|
-
/* @__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" })
|
|
4250
4295
|
]
|
|
4251
4296
|
}
|
|
4252
4297
|
);
|
|
4253
4298
|
}
|
|
4254
4299
|
|
|
4255
4300
|
// src/components/icons/log-in/index.tsx
|
|
4256
|
-
var
|
|
4301
|
+
var import_jsx_runtime91 = require("react/jsx-runtime");
|
|
4257
4302
|
function LogInIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4258
|
-
return /* @__PURE__ */ (0,
|
|
4303
|
+
return /* @__PURE__ */ (0, import_jsx_runtime91.jsxs)(
|
|
4259
4304
|
"svg",
|
|
4260
4305
|
{
|
|
4261
4306
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4270,18 +4315,18 @@ function LogInIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4270
4315
|
"aria-hidden": "true",
|
|
4271
4316
|
...rest,
|
|
4272
4317
|
children: [
|
|
4273
|
-
/* @__PURE__ */ (0,
|
|
4274
|
-
/* @__PURE__ */ (0,
|
|
4275
|
-
/* @__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" })
|
|
4276
4321
|
]
|
|
4277
4322
|
}
|
|
4278
4323
|
);
|
|
4279
4324
|
}
|
|
4280
4325
|
|
|
4281
4326
|
// src/components/icons/log-out/index.tsx
|
|
4282
|
-
var
|
|
4327
|
+
var import_jsx_runtime92 = require("react/jsx-runtime");
|
|
4283
4328
|
function LogOutIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4284
|
-
return /* @__PURE__ */ (0,
|
|
4329
|
+
return /* @__PURE__ */ (0, import_jsx_runtime92.jsxs)(
|
|
4285
4330
|
"svg",
|
|
4286
4331
|
{
|
|
4287
4332
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4296,18 +4341,18 @@ function LogOutIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4296
4341
|
"aria-hidden": "true",
|
|
4297
4342
|
...rest,
|
|
4298
4343
|
children: [
|
|
4299
|
-
/* @__PURE__ */ (0,
|
|
4300
|
-
/* @__PURE__ */ (0,
|
|
4301
|
-
/* @__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" })
|
|
4302
4347
|
]
|
|
4303
4348
|
}
|
|
4304
4349
|
);
|
|
4305
4350
|
}
|
|
4306
4351
|
|
|
4307
4352
|
// src/components/icons/mail/index.tsx
|
|
4308
|
-
var
|
|
4353
|
+
var import_jsx_runtime93 = require("react/jsx-runtime");
|
|
4309
4354
|
function MailIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4310
|
-
return /* @__PURE__ */ (0,
|
|
4355
|
+
return /* @__PURE__ */ (0, import_jsx_runtime93.jsxs)(
|
|
4311
4356
|
"svg",
|
|
4312
4357
|
{
|
|
4313
4358
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4322,17 +4367,17 @@ function MailIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4322
4367
|
"aria-hidden": "true",
|
|
4323
4368
|
...rest,
|
|
4324
4369
|
children: [
|
|
4325
|
-
/* @__PURE__ */ (0,
|
|
4326
|
-
/* @__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" })
|
|
4327
4372
|
]
|
|
4328
4373
|
}
|
|
4329
4374
|
);
|
|
4330
4375
|
}
|
|
4331
4376
|
|
|
4332
4377
|
// src/components/icons/map-pin/index.tsx
|
|
4333
|
-
var
|
|
4378
|
+
var import_jsx_runtime94 = require("react/jsx-runtime");
|
|
4334
4379
|
function MapPinIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4335
|
-
return /* @__PURE__ */ (0,
|
|
4380
|
+
return /* @__PURE__ */ (0, import_jsx_runtime94.jsxs)(
|
|
4336
4381
|
"svg",
|
|
4337
4382
|
{
|
|
4338
4383
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4347,17 +4392,17 @@ function MapPinIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4347
4392
|
"aria-hidden": "true",
|
|
4348
4393
|
...rest,
|
|
4349
4394
|
children: [
|
|
4350
|
-
/* @__PURE__ */ (0,
|
|
4351
|
-
/* @__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" })
|
|
4352
4397
|
]
|
|
4353
4398
|
}
|
|
4354
4399
|
);
|
|
4355
4400
|
}
|
|
4356
4401
|
|
|
4357
4402
|
// src/components/icons/maximize/index.tsx
|
|
4358
|
-
var
|
|
4403
|
+
var import_jsx_runtime95 = require("react/jsx-runtime");
|
|
4359
4404
|
function MaximizeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4360
|
-
return /* @__PURE__ */ (0,
|
|
4405
|
+
return /* @__PURE__ */ (0, import_jsx_runtime95.jsxs)(
|
|
4361
4406
|
"svg",
|
|
4362
4407
|
{
|
|
4363
4408
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4372,19 +4417,19 @@ function MaximizeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4372
4417
|
"aria-hidden": "true",
|
|
4373
4418
|
...rest,
|
|
4374
4419
|
children: [
|
|
4375
|
-
/* @__PURE__ */ (0,
|
|
4376
|
-
/* @__PURE__ */ (0,
|
|
4377
|
-
/* @__PURE__ */ (0,
|
|
4378
|
-
/* @__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" })
|
|
4379
4424
|
]
|
|
4380
4425
|
}
|
|
4381
4426
|
);
|
|
4382
4427
|
}
|
|
4383
4428
|
|
|
4384
4429
|
// src/components/icons/menu/index.tsx
|
|
4385
|
-
var
|
|
4430
|
+
var import_jsx_runtime96 = require("react/jsx-runtime");
|
|
4386
4431
|
function MenuIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4387
|
-
return /* @__PURE__ */ (0,
|
|
4432
|
+
return /* @__PURE__ */ (0, import_jsx_runtime96.jsxs)(
|
|
4388
4433
|
"svg",
|
|
4389
4434
|
{
|
|
4390
4435
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4399,18 +4444,18 @@ function MenuIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4399
4444
|
"aria-hidden": "true",
|
|
4400
4445
|
...rest,
|
|
4401
4446
|
children: [
|
|
4402
|
-
/* @__PURE__ */ (0,
|
|
4403
|
-
/* @__PURE__ */ (0,
|
|
4404
|
-
/* @__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" })
|
|
4405
4450
|
]
|
|
4406
4451
|
}
|
|
4407
4452
|
);
|
|
4408
4453
|
}
|
|
4409
4454
|
|
|
4410
4455
|
// src/components/icons/message-circle/index.tsx
|
|
4411
|
-
var
|
|
4456
|
+
var import_jsx_runtime97 = require("react/jsx-runtime");
|
|
4412
4457
|
function MessageCircleIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4413
|
-
return /* @__PURE__ */ (0,
|
|
4458
|
+
return /* @__PURE__ */ (0, import_jsx_runtime97.jsx)(
|
|
4414
4459
|
"svg",
|
|
4415
4460
|
{
|
|
4416
4461
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4424,15 +4469,15 @@ function MessageCircleIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4424
4469
|
strokeLinejoin: "round",
|
|
4425
4470
|
"aria-hidden": "true",
|
|
4426
4471
|
...rest,
|
|
4427
|
-
children: /* @__PURE__ */ (0,
|
|
4472
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime97.jsx)("path", { d: "M7.9 20A9 9 0 1 0 4 16.1L2 22Z" })
|
|
4428
4473
|
}
|
|
4429
4474
|
);
|
|
4430
4475
|
}
|
|
4431
4476
|
|
|
4432
4477
|
// src/components/icons/message-square/index.tsx
|
|
4433
|
-
var
|
|
4478
|
+
var import_jsx_runtime98 = require("react/jsx-runtime");
|
|
4434
4479
|
function MessageSquareIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4435
|
-
return /* @__PURE__ */ (0,
|
|
4480
|
+
return /* @__PURE__ */ (0, import_jsx_runtime98.jsx)(
|
|
4436
4481
|
"svg",
|
|
4437
4482
|
{
|
|
4438
4483
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4446,15 +4491,15 @@ function MessageSquareIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4446
4491
|
strokeLinejoin: "round",
|
|
4447
4492
|
"aria-hidden": "true",
|
|
4448
4493
|
...rest,
|
|
4449
|
-
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" })
|
|
4450
4495
|
}
|
|
4451
4496
|
);
|
|
4452
4497
|
}
|
|
4453
4498
|
|
|
4454
4499
|
// src/components/icons/mic/index.tsx
|
|
4455
|
-
var
|
|
4500
|
+
var import_jsx_runtime99 = require("react/jsx-runtime");
|
|
4456
4501
|
function MicIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4457
|
-
return /* @__PURE__ */ (0,
|
|
4502
|
+
return /* @__PURE__ */ (0, import_jsx_runtime99.jsxs)(
|
|
4458
4503
|
"svg",
|
|
4459
4504
|
{
|
|
4460
4505
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4469,18 +4514,18 @@ function MicIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4469
4514
|
"aria-hidden": "true",
|
|
4470
4515
|
...rest,
|
|
4471
4516
|
children: [
|
|
4472
|
-
/* @__PURE__ */ (0,
|
|
4473
|
-
/* @__PURE__ */ (0,
|
|
4474
|
-
/* @__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" })
|
|
4475
4520
|
]
|
|
4476
4521
|
}
|
|
4477
4522
|
);
|
|
4478
4523
|
}
|
|
4479
4524
|
|
|
4480
4525
|
// src/components/icons/minimize/index.tsx
|
|
4481
|
-
var
|
|
4526
|
+
var import_jsx_runtime100 = require("react/jsx-runtime");
|
|
4482
4527
|
function MinimizeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4483
|
-
return /* @__PURE__ */ (0,
|
|
4528
|
+
return /* @__PURE__ */ (0, import_jsx_runtime100.jsxs)(
|
|
4484
4529
|
"svg",
|
|
4485
4530
|
{
|
|
4486
4531
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4495,19 +4540,19 @@ function MinimizeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4495
4540
|
"aria-hidden": "true",
|
|
4496
4541
|
...rest,
|
|
4497
4542
|
children: [
|
|
4498
|
-
/* @__PURE__ */ (0,
|
|
4499
|
-
/* @__PURE__ */ (0,
|
|
4500
|
-
/* @__PURE__ */ (0,
|
|
4501
|
-
/* @__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" })
|
|
4502
4547
|
]
|
|
4503
4548
|
}
|
|
4504
4549
|
);
|
|
4505
4550
|
}
|
|
4506
4551
|
|
|
4507
4552
|
// src/components/icons/minus/index.tsx
|
|
4508
|
-
var
|
|
4553
|
+
var import_jsx_runtime101 = require("react/jsx-runtime");
|
|
4509
4554
|
function MinusIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4510
|
-
return /* @__PURE__ */ (0,
|
|
4555
|
+
return /* @__PURE__ */ (0, import_jsx_runtime101.jsx)(
|
|
4511
4556
|
"svg",
|
|
4512
4557
|
{
|
|
4513
4558
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4521,15 +4566,15 @@ function MinusIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4521
4566
|
strokeLinejoin: "round",
|
|
4522
4567
|
"aria-hidden": "true",
|
|
4523
4568
|
...rest,
|
|
4524
|
-
children: /* @__PURE__ */ (0,
|
|
4569
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime101.jsx)("path", { d: "M5 12h14" })
|
|
4525
4570
|
}
|
|
4526
4571
|
);
|
|
4527
4572
|
}
|
|
4528
4573
|
|
|
4529
4574
|
// src/components/icons/moon/index.tsx
|
|
4530
|
-
var
|
|
4575
|
+
var import_jsx_runtime102 = require("react/jsx-runtime");
|
|
4531
4576
|
function MoonIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4532
|
-
return /* @__PURE__ */ (0,
|
|
4577
|
+
return /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(
|
|
4533
4578
|
"svg",
|
|
4534
4579
|
{
|
|
4535
4580
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4543,15 +4588,15 @@ function MoonIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4543
4588
|
strokeLinejoin: "round",
|
|
4544
4589
|
"aria-hidden": "true",
|
|
4545
4590
|
...rest,
|
|
4546
|
-
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" })
|
|
4547
4592
|
}
|
|
4548
4593
|
);
|
|
4549
4594
|
}
|
|
4550
4595
|
|
|
4551
4596
|
// src/components/icons/more-horizontal/index.tsx
|
|
4552
|
-
var
|
|
4597
|
+
var import_jsx_runtime103 = require("react/jsx-runtime");
|
|
4553
4598
|
function MoreHorizontalIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4554
|
-
return /* @__PURE__ */ (0,
|
|
4599
|
+
return /* @__PURE__ */ (0, import_jsx_runtime103.jsxs)(
|
|
4555
4600
|
"svg",
|
|
4556
4601
|
{
|
|
4557
4602
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4566,18 +4611,18 @@ function MoreHorizontalIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4566
4611
|
"aria-hidden": "true",
|
|
4567
4612
|
...rest,
|
|
4568
4613
|
children: [
|
|
4569
|
-
/* @__PURE__ */ (0,
|
|
4570
|
-
/* @__PURE__ */ (0,
|
|
4571
|
-
/* @__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" })
|
|
4572
4617
|
]
|
|
4573
4618
|
}
|
|
4574
4619
|
);
|
|
4575
4620
|
}
|
|
4576
4621
|
|
|
4577
4622
|
// src/components/icons/more-vertical/index.tsx
|
|
4578
|
-
var
|
|
4623
|
+
var import_jsx_runtime104 = require("react/jsx-runtime");
|
|
4579
4624
|
function MoreVerticalIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4580
|
-
return /* @__PURE__ */ (0,
|
|
4625
|
+
return /* @__PURE__ */ (0, import_jsx_runtime104.jsxs)(
|
|
4581
4626
|
"svg",
|
|
4582
4627
|
{
|
|
4583
4628
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4592,18 +4637,18 @@ function MoreVerticalIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4592
4637
|
"aria-hidden": "true",
|
|
4593
4638
|
...rest,
|
|
4594
4639
|
children: [
|
|
4595
|
-
/* @__PURE__ */ (0,
|
|
4596
|
-
/* @__PURE__ */ (0,
|
|
4597
|
-
/* @__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" })
|
|
4598
4643
|
]
|
|
4599
4644
|
}
|
|
4600
4645
|
);
|
|
4601
4646
|
}
|
|
4602
4647
|
|
|
4603
4648
|
// src/components/icons/package/index.tsx
|
|
4604
|
-
var
|
|
4649
|
+
var import_jsx_runtime105 = require("react/jsx-runtime");
|
|
4605
4650
|
function PackageIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4606
|
-
return /* @__PURE__ */ (0,
|
|
4651
|
+
return /* @__PURE__ */ (0, import_jsx_runtime105.jsxs)(
|
|
4607
4652
|
"svg",
|
|
4608
4653
|
{
|
|
4609
4654
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4618,18 +4663,18 @@ function PackageIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4618
4663
|
"aria-hidden": "true",
|
|
4619
4664
|
...rest,
|
|
4620
4665
|
children: [
|
|
4621
|
-
/* @__PURE__ */ (0,
|
|
4622
|
-
/* @__PURE__ */ (0,
|
|
4623
|
-
/* @__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" })
|
|
4624
4669
|
]
|
|
4625
4670
|
}
|
|
4626
4671
|
);
|
|
4627
4672
|
}
|
|
4628
4673
|
|
|
4629
4674
|
// src/components/icons/paperclip/index.tsx
|
|
4630
|
-
var
|
|
4675
|
+
var import_jsx_runtime106 = require("react/jsx-runtime");
|
|
4631
4676
|
function PaperclipIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4632
|
-
return /* @__PURE__ */ (0,
|
|
4677
|
+
return /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
|
|
4633
4678
|
"svg",
|
|
4634
4679
|
{
|
|
4635
4680
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4643,15 +4688,15 @@ function PaperclipIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4643
4688
|
strokeLinejoin: "round",
|
|
4644
4689
|
"aria-hidden": "true",
|
|
4645
4690
|
...rest,
|
|
4646
|
-
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" })
|
|
4647
4692
|
}
|
|
4648
4693
|
);
|
|
4649
4694
|
}
|
|
4650
4695
|
|
|
4651
4696
|
// src/components/icons/pause/index.tsx
|
|
4652
|
-
var
|
|
4697
|
+
var import_jsx_runtime107 = require("react/jsx-runtime");
|
|
4653
4698
|
function PauseIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4654
|
-
return /* @__PURE__ */ (0,
|
|
4699
|
+
return /* @__PURE__ */ (0, import_jsx_runtime107.jsxs)(
|
|
4655
4700
|
"svg",
|
|
4656
4701
|
{
|
|
4657
4702
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4666,17 +4711,17 @@ function PauseIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4666
4711
|
"aria-hidden": "true",
|
|
4667
4712
|
...rest,
|
|
4668
4713
|
children: [
|
|
4669
|
-
/* @__PURE__ */ (0,
|
|
4670
|
-
/* @__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" })
|
|
4671
4716
|
]
|
|
4672
4717
|
}
|
|
4673
4718
|
);
|
|
4674
4719
|
}
|
|
4675
4720
|
|
|
4676
4721
|
// src/components/icons/pencil/index.tsx
|
|
4677
|
-
var
|
|
4722
|
+
var import_jsx_runtime108 = require("react/jsx-runtime");
|
|
4678
4723
|
function PencilIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4679
|
-
return /* @__PURE__ */ (0,
|
|
4724
|
+
return /* @__PURE__ */ (0, import_jsx_runtime108.jsxs)(
|
|
4680
4725
|
"svg",
|
|
4681
4726
|
{
|
|
4682
4727
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4691,17 +4736,17 @@ function PencilIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4691
4736
|
"aria-hidden": "true",
|
|
4692
4737
|
...rest,
|
|
4693
4738
|
children: [
|
|
4694
|
-
/* @__PURE__ */ (0,
|
|
4695
|
-
/* @__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" })
|
|
4696
4741
|
]
|
|
4697
4742
|
}
|
|
4698
4743
|
);
|
|
4699
4744
|
}
|
|
4700
4745
|
|
|
4701
4746
|
// src/components/icons/phone/index.tsx
|
|
4702
|
-
var
|
|
4747
|
+
var import_jsx_runtime109 = require("react/jsx-runtime");
|
|
4703
4748
|
function PhoneIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4704
|
-
return /* @__PURE__ */ (0,
|
|
4749
|
+
return /* @__PURE__ */ (0, import_jsx_runtime109.jsx)(
|
|
4705
4750
|
"svg",
|
|
4706
4751
|
{
|
|
4707
4752
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4715,15 +4760,15 @@ function PhoneIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4715
4760
|
strokeLinejoin: "round",
|
|
4716
4761
|
"aria-hidden": "true",
|
|
4717
4762
|
...rest,
|
|
4718
|
-
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" })
|
|
4719
4764
|
}
|
|
4720
4765
|
);
|
|
4721
4766
|
}
|
|
4722
4767
|
|
|
4723
4768
|
// src/components/icons/play/index.tsx
|
|
4724
|
-
var
|
|
4769
|
+
var import_jsx_runtime110 = require("react/jsx-runtime");
|
|
4725
4770
|
function PlayIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4726
|
-
return /* @__PURE__ */ (0,
|
|
4771
|
+
return /* @__PURE__ */ (0, import_jsx_runtime110.jsx)(
|
|
4727
4772
|
"svg",
|
|
4728
4773
|
{
|
|
4729
4774
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4737,15 +4782,15 @@ function PlayIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4737
4782
|
strokeLinejoin: "round",
|
|
4738
4783
|
"aria-hidden": "true",
|
|
4739
4784
|
...rest,
|
|
4740
|
-
children: /* @__PURE__ */ (0,
|
|
4785
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime110.jsx)("polygon", { points: "6 3 20 12 6 21 6 3" })
|
|
4741
4786
|
}
|
|
4742
4787
|
);
|
|
4743
4788
|
}
|
|
4744
4789
|
|
|
4745
4790
|
// src/components/icons/plus/index.tsx
|
|
4746
|
-
var
|
|
4791
|
+
var import_jsx_runtime111 = require("react/jsx-runtime");
|
|
4747
4792
|
function PlusIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4748
|
-
return /* @__PURE__ */ (0,
|
|
4793
|
+
return /* @__PURE__ */ (0, import_jsx_runtime111.jsxs)(
|
|
4749
4794
|
"svg",
|
|
4750
4795
|
{
|
|
4751
4796
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4760,17 +4805,17 @@ function PlusIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4760
4805
|
"aria-hidden": "true",
|
|
4761
4806
|
...rest,
|
|
4762
4807
|
children: [
|
|
4763
|
-
/* @__PURE__ */ (0,
|
|
4764
|
-
/* @__PURE__ */ (0,
|
|
4808
|
+
/* @__PURE__ */ (0, import_jsx_runtime111.jsx)("path", { d: "M5 12h14" }),
|
|
4809
|
+
/* @__PURE__ */ (0, import_jsx_runtime111.jsx)("path", { d: "M12 5v14" })
|
|
4765
4810
|
]
|
|
4766
4811
|
}
|
|
4767
4812
|
);
|
|
4768
4813
|
}
|
|
4769
4814
|
|
|
4770
4815
|
// src/components/icons/printer/index.tsx
|
|
4771
|
-
var
|
|
4816
|
+
var import_jsx_runtime112 = require("react/jsx-runtime");
|
|
4772
4817
|
function PrinterIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4773
|
-
return /* @__PURE__ */ (0,
|
|
4818
|
+
return /* @__PURE__ */ (0, import_jsx_runtime112.jsxs)(
|
|
4774
4819
|
"svg",
|
|
4775
4820
|
{
|
|
4776
4821
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4785,18 +4830,18 @@ function PrinterIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4785
4830
|
"aria-hidden": "true",
|
|
4786
4831
|
...rest,
|
|
4787
4832
|
children: [
|
|
4788
|
-
/* @__PURE__ */ (0,
|
|
4789
|
-
/* @__PURE__ */ (0,
|
|
4790
|
-
/* @__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" })
|
|
4791
4836
|
]
|
|
4792
4837
|
}
|
|
4793
4838
|
);
|
|
4794
4839
|
}
|
|
4795
4840
|
|
|
4796
4841
|
// src/components/icons/redo/index.tsx
|
|
4797
|
-
var
|
|
4842
|
+
var import_jsx_runtime113 = require("react/jsx-runtime");
|
|
4798
4843
|
function RedoIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4799
|
-
return /* @__PURE__ */ (0,
|
|
4844
|
+
return /* @__PURE__ */ (0, import_jsx_runtime113.jsxs)(
|
|
4800
4845
|
"svg",
|
|
4801
4846
|
{
|
|
4802
4847
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4811,17 +4856,17 @@ function RedoIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4811
4856
|
"aria-hidden": "true",
|
|
4812
4857
|
...rest,
|
|
4813
4858
|
children: [
|
|
4814
|
-
/* @__PURE__ */ (0,
|
|
4815
|
-
/* @__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" })
|
|
4816
4861
|
]
|
|
4817
4862
|
}
|
|
4818
4863
|
);
|
|
4819
4864
|
}
|
|
4820
4865
|
|
|
4821
4866
|
// src/components/icons/refresh-cw/index.tsx
|
|
4822
|
-
var
|
|
4867
|
+
var import_jsx_runtime114 = require("react/jsx-runtime");
|
|
4823
4868
|
function RefreshCwIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4824
|
-
return /* @__PURE__ */ (0,
|
|
4869
|
+
return /* @__PURE__ */ (0, import_jsx_runtime114.jsxs)(
|
|
4825
4870
|
"svg",
|
|
4826
4871
|
{
|
|
4827
4872
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4836,19 +4881,19 @@ function RefreshCwIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4836
4881
|
"aria-hidden": "true",
|
|
4837
4882
|
...rest,
|
|
4838
4883
|
children: [
|
|
4839
|
-
/* @__PURE__ */ (0,
|
|
4840
|
-
/* @__PURE__ */ (0,
|
|
4841
|
-
/* @__PURE__ */ (0,
|
|
4842
|
-
/* @__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" })
|
|
4843
4888
|
]
|
|
4844
4889
|
}
|
|
4845
4890
|
);
|
|
4846
4891
|
}
|
|
4847
4892
|
|
|
4848
4893
|
// src/components/icons/save/index.tsx
|
|
4849
|
-
var
|
|
4894
|
+
var import_jsx_runtime115 = require("react/jsx-runtime");
|
|
4850
4895
|
function SaveIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4851
|
-
return /* @__PURE__ */ (0,
|
|
4896
|
+
return /* @__PURE__ */ (0, import_jsx_runtime115.jsxs)(
|
|
4852
4897
|
"svg",
|
|
4853
4898
|
{
|
|
4854
4899
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4863,18 +4908,18 @@ function SaveIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4863
4908
|
"aria-hidden": "true",
|
|
4864
4909
|
...rest,
|
|
4865
4910
|
children: [
|
|
4866
|
-
/* @__PURE__ */ (0,
|
|
4867
|
-
/* @__PURE__ */ (0,
|
|
4868
|
-
/* @__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" })
|
|
4869
4914
|
]
|
|
4870
4915
|
}
|
|
4871
4916
|
);
|
|
4872
4917
|
}
|
|
4873
4918
|
|
|
4874
4919
|
// src/components/icons/search/index.tsx
|
|
4875
|
-
var
|
|
4920
|
+
var import_jsx_runtime116 = require("react/jsx-runtime");
|
|
4876
4921
|
function SearchIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4877
|
-
return /* @__PURE__ */ (0,
|
|
4922
|
+
return /* @__PURE__ */ (0, import_jsx_runtime116.jsxs)(
|
|
4878
4923
|
"svg",
|
|
4879
4924
|
{
|
|
4880
4925
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4889,17 +4934,17 @@ function SearchIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4889
4934
|
"aria-hidden": "true",
|
|
4890
4935
|
...rest,
|
|
4891
4936
|
children: [
|
|
4892
|
-
/* @__PURE__ */ (0,
|
|
4893
|
-
/* @__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" })
|
|
4894
4939
|
]
|
|
4895
4940
|
}
|
|
4896
4941
|
);
|
|
4897
4942
|
}
|
|
4898
4943
|
|
|
4899
4944
|
// src/components/icons/send/index.tsx
|
|
4900
|
-
var
|
|
4945
|
+
var import_jsx_runtime117 = require("react/jsx-runtime");
|
|
4901
4946
|
function SendIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4902
|
-
return /* @__PURE__ */ (0,
|
|
4947
|
+
return /* @__PURE__ */ (0, import_jsx_runtime117.jsxs)(
|
|
4903
4948
|
"svg",
|
|
4904
4949
|
{
|
|
4905
4950
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4914,17 +4959,17 @@ function SendIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4914
4959
|
"aria-hidden": "true",
|
|
4915
4960
|
...rest,
|
|
4916
4961
|
children: [
|
|
4917
|
-
/* @__PURE__ */ (0,
|
|
4918
|
-
/* @__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" })
|
|
4919
4964
|
]
|
|
4920
4965
|
}
|
|
4921
4966
|
);
|
|
4922
4967
|
}
|
|
4923
4968
|
|
|
4924
4969
|
// src/components/icons/settings/index.tsx
|
|
4925
|
-
var
|
|
4970
|
+
var import_jsx_runtime118 = require("react/jsx-runtime");
|
|
4926
4971
|
function SettingsIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4927
|
-
return /* @__PURE__ */ (0,
|
|
4972
|
+
return /* @__PURE__ */ (0, import_jsx_runtime118.jsxs)(
|
|
4928
4973
|
"svg",
|
|
4929
4974
|
{
|
|
4930
4975
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4939,17 +4984,17 @@ function SettingsIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4939
4984
|
"aria-hidden": "true",
|
|
4940
4985
|
...rest,
|
|
4941
4986
|
children: [
|
|
4942
|
-
/* @__PURE__ */ (0,
|
|
4943
|
-
/* @__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" })
|
|
4944
4989
|
]
|
|
4945
4990
|
}
|
|
4946
4991
|
);
|
|
4947
4992
|
}
|
|
4948
4993
|
|
|
4949
4994
|
// src/components/icons/share/index.tsx
|
|
4950
|
-
var
|
|
4995
|
+
var import_jsx_runtime119 = require("react/jsx-runtime");
|
|
4951
4996
|
function ShareIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4952
|
-
return /* @__PURE__ */ (0,
|
|
4997
|
+
return /* @__PURE__ */ (0, import_jsx_runtime119.jsxs)(
|
|
4953
4998
|
"svg",
|
|
4954
4999
|
{
|
|
4955
5000
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4964,18 +5009,18 @@ function ShareIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4964
5009
|
"aria-hidden": "true",
|
|
4965
5010
|
...rest,
|
|
4966
5011
|
children: [
|
|
4967
|
-
/* @__PURE__ */ (0,
|
|
4968
|
-
/* @__PURE__ */ (0,
|
|
4969
|
-
/* @__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" })
|
|
4970
5015
|
]
|
|
4971
5016
|
}
|
|
4972
5017
|
);
|
|
4973
5018
|
}
|
|
4974
5019
|
|
|
4975
5020
|
// src/components/icons/shield/index.tsx
|
|
4976
|
-
var
|
|
5021
|
+
var import_jsx_runtime120 = require("react/jsx-runtime");
|
|
4977
5022
|
function ShieldIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
4978
|
-
return /* @__PURE__ */ (0,
|
|
5023
|
+
return /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
4979
5024
|
"svg",
|
|
4980
5025
|
{
|
|
4981
5026
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4989,15 +5034,15 @@ function ShieldIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
4989
5034
|
strokeLinejoin: "round",
|
|
4990
5035
|
"aria-hidden": "true",
|
|
4991
5036
|
...rest,
|
|
4992
|
-
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" })
|
|
4993
5038
|
}
|
|
4994
5039
|
);
|
|
4995
5040
|
}
|
|
4996
5041
|
|
|
4997
5042
|
// src/components/icons/shield-check/index.tsx
|
|
4998
|
-
var
|
|
5043
|
+
var import_jsx_runtime121 = require("react/jsx-runtime");
|
|
4999
5044
|
function ShieldCheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5000
|
-
return /* @__PURE__ */ (0,
|
|
5045
|
+
return /* @__PURE__ */ (0, import_jsx_runtime121.jsxs)(
|
|
5001
5046
|
"svg",
|
|
5002
5047
|
{
|
|
5003
5048
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5012,17 +5057,17 @@ function ShieldCheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5012
5057
|
"aria-hidden": "true",
|
|
5013
5058
|
...rest,
|
|
5014
5059
|
children: [
|
|
5015
|
-
/* @__PURE__ */ (0,
|
|
5016
|
-
/* @__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" })
|
|
5017
5062
|
]
|
|
5018
5063
|
}
|
|
5019
5064
|
);
|
|
5020
5065
|
}
|
|
5021
5066
|
|
|
5022
5067
|
// src/components/icons/shopping-bag/index.tsx
|
|
5023
|
-
var
|
|
5068
|
+
var import_jsx_runtime122 = require("react/jsx-runtime");
|
|
5024
5069
|
function ShoppingBagIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5025
|
-
return /* @__PURE__ */ (0,
|
|
5070
|
+
return /* @__PURE__ */ (0, import_jsx_runtime122.jsxs)(
|
|
5026
5071
|
"svg",
|
|
5027
5072
|
{
|
|
5028
5073
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5037,18 +5082,18 @@ function ShoppingBagIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5037
5082
|
"aria-hidden": "true",
|
|
5038
5083
|
...rest,
|
|
5039
5084
|
children: [
|
|
5040
|
-
/* @__PURE__ */ (0,
|
|
5041
|
-
/* @__PURE__ */ (0,
|
|
5042
|
-
/* @__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" })
|
|
5043
5088
|
]
|
|
5044
5089
|
}
|
|
5045
5090
|
);
|
|
5046
5091
|
}
|
|
5047
5092
|
|
|
5048
5093
|
// src/components/icons/shopping-cart/index.tsx
|
|
5049
|
-
var
|
|
5094
|
+
var import_jsx_runtime123 = require("react/jsx-runtime");
|
|
5050
5095
|
function ShoppingCartIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5051
|
-
return /* @__PURE__ */ (0,
|
|
5096
|
+
return /* @__PURE__ */ (0, import_jsx_runtime123.jsxs)(
|
|
5052
5097
|
"svg",
|
|
5053
5098
|
{
|
|
5054
5099
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5063,18 +5108,18 @@ function ShoppingCartIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5063
5108
|
"aria-hidden": "true",
|
|
5064
5109
|
...rest,
|
|
5065
5110
|
children: [
|
|
5066
|
-
/* @__PURE__ */ (0,
|
|
5067
|
-
/* @__PURE__ */ (0,
|
|
5068
|
-
/* @__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" })
|
|
5069
5114
|
]
|
|
5070
5115
|
}
|
|
5071
5116
|
);
|
|
5072
5117
|
}
|
|
5073
5118
|
|
|
5074
5119
|
// src/components/icons/sidebar/index.tsx
|
|
5075
|
-
var
|
|
5120
|
+
var import_jsx_runtime124 = require("react/jsx-runtime");
|
|
5076
5121
|
function SidebarIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5077
|
-
return /* @__PURE__ */ (0,
|
|
5122
|
+
return /* @__PURE__ */ (0, import_jsx_runtime124.jsxs)(
|
|
5078
5123
|
"svg",
|
|
5079
5124
|
{
|
|
5080
5125
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5089,17 +5134,17 @@ function SidebarIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5089
5134
|
"aria-hidden": "true",
|
|
5090
5135
|
...rest,
|
|
5091
5136
|
children: [
|
|
5092
|
-
/* @__PURE__ */ (0,
|
|
5093
|
-
/* @__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" })
|
|
5094
5139
|
]
|
|
5095
5140
|
}
|
|
5096
5141
|
);
|
|
5097
5142
|
}
|
|
5098
5143
|
|
|
5099
5144
|
// src/components/icons/skip-back/index.tsx
|
|
5100
|
-
var
|
|
5145
|
+
var import_jsx_runtime125 = require("react/jsx-runtime");
|
|
5101
5146
|
function SkipBackIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5102
|
-
return /* @__PURE__ */ (0,
|
|
5147
|
+
return /* @__PURE__ */ (0, import_jsx_runtime125.jsxs)(
|
|
5103
5148
|
"svg",
|
|
5104
5149
|
{
|
|
5105
5150
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5114,17 +5159,17 @@ function SkipBackIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5114
5159
|
"aria-hidden": "true",
|
|
5115
5160
|
...rest,
|
|
5116
5161
|
children: [
|
|
5117
|
-
/* @__PURE__ */ (0,
|
|
5118
|
-
/* @__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" })
|
|
5119
5164
|
]
|
|
5120
5165
|
}
|
|
5121
5166
|
);
|
|
5122
5167
|
}
|
|
5123
5168
|
|
|
5124
5169
|
// src/components/icons/skip-forward/index.tsx
|
|
5125
|
-
var
|
|
5170
|
+
var import_jsx_runtime126 = require("react/jsx-runtime");
|
|
5126
5171
|
function SkipForwardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5127
|
-
return /* @__PURE__ */ (0,
|
|
5172
|
+
return /* @__PURE__ */ (0, import_jsx_runtime126.jsxs)(
|
|
5128
5173
|
"svg",
|
|
5129
5174
|
{
|
|
5130
5175
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5139,17 +5184,17 @@ function SkipForwardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5139
5184
|
"aria-hidden": "true",
|
|
5140
5185
|
...rest,
|
|
5141
5186
|
children: [
|
|
5142
|
-
/* @__PURE__ */ (0,
|
|
5143
|
-
/* @__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" })
|
|
5144
5189
|
]
|
|
5145
5190
|
}
|
|
5146
5191
|
);
|
|
5147
5192
|
}
|
|
5148
5193
|
|
|
5149
5194
|
// src/components/icons/sliders/index.tsx
|
|
5150
|
-
var
|
|
5195
|
+
var import_jsx_runtime127 = require("react/jsx-runtime");
|
|
5151
5196
|
function SlidersIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5152
|
-
return /* @__PURE__ */ (0,
|
|
5197
|
+
return /* @__PURE__ */ (0, import_jsx_runtime127.jsxs)(
|
|
5153
5198
|
"svg",
|
|
5154
5199
|
{
|
|
5155
5200
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5164,24 +5209,24 @@ function SlidersIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5164
5209
|
"aria-hidden": "true",
|
|
5165
5210
|
...rest,
|
|
5166
5211
|
children: [
|
|
5167
|
-
/* @__PURE__ */ (0,
|
|
5168
|
-
/* @__PURE__ */ (0,
|
|
5169
|
-
/* @__PURE__ */ (0,
|
|
5170
|
-
/* @__PURE__ */ (0,
|
|
5171
|
-
/* @__PURE__ */ (0,
|
|
5172
|
-
/* @__PURE__ */ (0,
|
|
5173
|
-
/* @__PURE__ */ (0,
|
|
5174
|
-
/* @__PURE__ */ (0,
|
|
5175
|
-
/* @__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" })
|
|
5176
5221
|
]
|
|
5177
5222
|
}
|
|
5178
5223
|
);
|
|
5179
5224
|
}
|
|
5180
5225
|
|
|
5181
5226
|
// src/components/icons/smile/index.tsx
|
|
5182
|
-
var
|
|
5227
|
+
var import_jsx_runtime128 = require("react/jsx-runtime");
|
|
5183
5228
|
function SmileIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5184
|
-
return /* @__PURE__ */ (0,
|
|
5229
|
+
return /* @__PURE__ */ (0, import_jsx_runtime128.jsxs)(
|
|
5185
5230
|
"svg",
|
|
5186
5231
|
{
|
|
5187
5232
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5196,19 +5241,19 @@ function SmileIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5196
5241
|
"aria-hidden": "true",
|
|
5197
5242
|
...rest,
|
|
5198
5243
|
children: [
|
|
5199
|
-
/* @__PURE__ */ (0,
|
|
5200
|
-
/* @__PURE__ */ (0,
|
|
5201
|
-
/* @__PURE__ */ (0,
|
|
5202
|
-
/* @__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" })
|
|
5203
5248
|
]
|
|
5204
5249
|
}
|
|
5205
5250
|
);
|
|
5206
5251
|
}
|
|
5207
5252
|
|
|
5208
5253
|
// src/components/icons/star/index.tsx
|
|
5209
|
-
var
|
|
5254
|
+
var import_jsx_runtime129 = require("react/jsx-runtime");
|
|
5210
5255
|
function StarIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5211
|
-
return /* @__PURE__ */ (0,
|
|
5256
|
+
return /* @__PURE__ */ (0, import_jsx_runtime129.jsx)(
|
|
5212
5257
|
"svg",
|
|
5213
5258
|
{
|
|
5214
5259
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5222,15 +5267,15 @@ function StarIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5222
5267
|
strokeLinejoin: "round",
|
|
5223
5268
|
"aria-hidden": "true",
|
|
5224
5269
|
...rest,
|
|
5225
|
-
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" })
|
|
5226
5271
|
}
|
|
5227
5272
|
);
|
|
5228
5273
|
}
|
|
5229
5274
|
|
|
5230
5275
|
// src/components/icons/sun/index.tsx
|
|
5231
|
-
var
|
|
5276
|
+
var import_jsx_runtime130 = require("react/jsx-runtime");
|
|
5232
5277
|
function SunIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5233
|
-
return /* @__PURE__ */ (0,
|
|
5278
|
+
return /* @__PURE__ */ (0, import_jsx_runtime130.jsxs)(
|
|
5234
5279
|
"svg",
|
|
5235
5280
|
{
|
|
5236
5281
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5245,24 +5290,24 @@ function SunIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5245
5290
|
"aria-hidden": "true",
|
|
5246
5291
|
...rest,
|
|
5247
5292
|
children: [
|
|
5248
|
-
/* @__PURE__ */ (0,
|
|
5249
|
-
/* @__PURE__ */ (0,
|
|
5250
|
-
/* @__PURE__ */ (0,
|
|
5251
|
-
/* @__PURE__ */ (0,
|
|
5252
|
-
/* @__PURE__ */ (0,
|
|
5253
|
-
/* @__PURE__ */ (0,
|
|
5254
|
-
/* @__PURE__ */ (0,
|
|
5255
|
-
/* @__PURE__ */ (0,
|
|
5256
|
-
/* @__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" })
|
|
5257
5302
|
]
|
|
5258
5303
|
}
|
|
5259
5304
|
);
|
|
5260
5305
|
}
|
|
5261
5306
|
|
|
5262
5307
|
// src/components/icons/tag/index.tsx
|
|
5263
|
-
var
|
|
5308
|
+
var import_jsx_runtime131 = require("react/jsx-runtime");
|
|
5264
5309
|
function TagIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5265
|
-
return /* @__PURE__ */ (0,
|
|
5310
|
+
return /* @__PURE__ */ (0, import_jsx_runtime131.jsxs)(
|
|
5266
5311
|
"svg",
|
|
5267
5312
|
{
|
|
5268
5313
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5277,17 +5322,17 @@ function TagIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5277
5322
|
"aria-hidden": "true",
|
|
5278
5323
|
...rest,
|
|
5279
5324
|
children: [
|
|
5280
|
-
/* @__PURE__ */ (0,
|
|
5281
|
-
/* @__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" })
|
|
5282
5327
|
]
|
|
5283
5328
|
}
|
|
5284
5329
|
);
|
|
5285
5330
|
}
|
|
5286
5331
|
|
|
5287
5332
|
// src/components/icons/thumbs-down/index.tsx
|
|
5288
|
-
var
|
|
5333
|
+
var import_jsx_runtime132 = require("react/jsx-runtime");
|
|
5289
5334
|
function ThumbsDownIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5290
|
-
return /* @__PURE__ */ (0,
|
|
5335
|
+
return /* @__PURE__ */ (0, import_jsx_runtime132.jsxs)(
|
|
5291
5336
|
"svg",
|
|
5292
5337
|
{
|
|
5293
5338
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5302,17 +5347,17 @@ function ThumbsDownIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5302
5347
|
"aria-hidden": "true",
|
|
5303
5348
|
...rest,
|
|
5304
5349
|
children: [
|
|
5305
|
-
/* @__PURE__ */ (0,
|
|
5306
|
-
/* @__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" })
|
|
5307
5352
|
]
|
|
5308
5353
|
}
|
|
5309
5354
|
);
|
|
5310
5355
|
}
|
|
5311
5356
|
|
|
5312
5357
|
// src/components/icons/thumbs-up/index.tsx
|
|
5313
|
-
var
|
|
5358
|
+
var import_jsx_runtime133 = require("react/jsx-runtime");
|
|
5314
5359
|
function ThumbsUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5315
|
-
return /* @__PURE__ */ (0,
|
|
5360
|
+
return /* @__PURE__ */ (0, import_jsx_runtime133.jsxs)(
|
|
5316
5361
|
"svg",
|
|
5317
5362
|
{
|
|
5318
5363
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5327,17 +5372,17 @@ function ThumbsUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5327
5372
|
"aria-hidden": "true",
|
|
5328
5373
|
...rest,
|
|
5329
5374
|
children: [
|
|
5330
|
-
/* @__PURE__ */ (0,
|
|
5331
|
-
/* @__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" })
|
|
5332
5377
|
]
|
|
5333
5378
|
}
|
|
5334
5379
|
);
|
|
5335
5380
|
}
|
|
5336
5381
|
|
|
5337
5382
|
// src/components/icons/trash/index.tsx
|
|
5338
|
-
var
|
|
5383
|
+
var import_jsx_runtime134 = require("react/jsx-runtime");
|
|
5339
5384
|
function TrashIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5340
|
-
return /* @__PURE__ */ (0,
|
|
5385
|
+
return /* @__PURE__ */ (0, import_jsx_runtime134.jsxs)(
|
|
5341
5386
|
"svg",
|
|
5342
5387
|
{
|
|
5343
5388
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5352,18 +5397,18 @@ function TrashIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5352
5397
|
"aria-hidden": "true",
|
|
5353
5398
|
...rest,
|
|
5354
5399
|
children: [
|
|
5355
|
-
/* @__PURE__ */ (0,
|
|
5356
|
-
/* @__PURE__ */ (0,
|
|
5357
|
-
/* @__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" })
|
|
5358
5403
|
]
|
|
5359
5404
|
}
|
|
5360
5405
|
);
|
|
5361
5406
|
}
|
|
5362
5407
|
|
|
5363
5408
|
// src/components/icons/undo/index.tsx
|
|
5364
|
-
var
|
|
5409
|
+
var import_jsx_runtime135 = require("react/jsx-runtime");
|
|
5365
5410
|
function UndoIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5366
|
-
return /* @__PURE__ */ (0,
|
|
5411
|
+
return /* @__PURE__ */ (0, import_jsx_runtime135.jsxs)(
|
|
5367
5412
|
"svg",
|
|
5368
5413
|
{
|
|
5369
5414
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5378,17 +5423,17 @@ function UndoIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5378
5423
|
"aria-hidden": "true",
|
|
5379
5424
|
...rest,
|
|
5380
5425
|
children: [
|
|
5381
|
-
/* @__PURE__ */ (0,
|
|
5382
|
-
/* @__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" })
|
|
5383
5428
|
]
|
|
5384
5429
|
}
|
|
5385
5430
|
);
|
|
5386
5431
|
}
|
|
5387
5432
|
|
|
5388
5433
|
// src/components/icons/unlock/index.tsx
|
|
5389
|
-
var
|
|
5434
|
+
var import_jsx_runtime136 = require("react/jsx-runtime");
|
|
5390
5435
|
function UnlockIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5391
|
-
return /* @__PURE__ */ (0,
|
|
5436
|
+
return /* @__PURE__ */ (0, import_jsx_runtime136.jsxs)(
|
|
5392
5437
|
"svg",
|
|
5393
5438
|
{
|
|
5394
5439
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5403,17 +5448,17 @@ function UnlockIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5403
5448
|
"aria-hidden": "true",
|
|
5404
5449
|
...rest,
|
|
5405
5450
|
children: [
|
|
5406
|
-
/* @__PURE__ */ (0,
|
|
5407
|
-
/* @__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" })
|
|
5408
5453
|
]
|
|
5409
5454
|
}
|
|
5410
5455
|
);
|
|
5411
5456
|
}
|
|
5412
5457
|
|
|
5413
5458
|
// src/components/icons/upload/index.tsx
|
|
5414
|
-
var
|
|
5459
|
+
var import_jsx_runtime137 = require("react/jsx-runtime");
|
|
5415
5460
|
function UploadIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5416
|
-
return /* @__PURE__ */ (0,
|
|
5461
|
+
return /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)(
|
|
5417
5462
|
"svg",
|
|
5418
5463
|
{
|
|
5419
5464
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5428,18 +5473,18 @@ function UploadIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5428
5473
|
"aria-hidden": "true",
|
|
5429
5474
|
...rest,
|
|
5430
5475
|
children: [
|
|
5431
|
-
/* @__PURE__ */ (0,
|
|
5432
|
-
/* @__PURE__ */ (0,
|
|
5433
|
-
/* @__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" })
|
|
5434
5479
|
]
|
|
5435
5480
|
}
|
|
5436
5481
|
);
|
|
5437
5482
|
}
|
|
5438
5483
|
|
|
5439
5484
|
// src/components/icons/user/index.tsx
|
|
5440
|
-
var
|
|
5485
|
+
var import_jsx_runtime138 = require("react/jsx-runtime");
|
|
5441
5486
|
function UserIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5442
|
-
return /* @__PURE__ */ (0,
|
|
5487
|
+
return /* @__PURE__ */ (0, import_jsx_runtime138.jsxs)(
|
|
5443
5488
|
"svg",
|
|
5444
5489
|
{
|
|
5445
5490
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5454,17 +5499,17 @@ function UserIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5454
5499
|
"aria-hidden": "true",
|
|
5455
5500
|
...rest,
|
|
5456
5501
|
children: [
|
|
5457
|
-
/* @__PURE__ */ (0,
|
|
5458
|
-
/* @__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" })
|
|
5459
5504
|
]
|
|
5460
5505
|
}
|
|
5461
5506
|
);
|
|
5462
5507
|
}
|
|
5463
5508
|
|
|
5464
5509
|
// src/components/icons/user-check/index.tsx
|
|
5465
|
-
var
|
|
5510
|
+
var import_jsx_runtime139 = require("react/jsx-runtime");
|
|
5466
5511
|
function UserCheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5467
|
-
return /* @__PURE__ */ (0,
|
|
5512
|
+
return /* @__PURE__ */ (0, import_jsx_runtime139.jsxs)(
|
|
5468
5513
|
"svg",
|
|
5469
5514
|
{
|
|
5470
5515
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5479,18 +5524,18 @@ function UserCheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5479
5524
|
"aria-hidden": "true",
|
|
5480
5525
|
...rest,
|
|
5481
5526
|
children: [
|
|
5482
|
-
/* @__PURE__ */ (0,
|
|
5483
|
-
/* @__PURE__ */ (0,
|
|
5484
|
-
/* @__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" })
|
|
5485
5530
|
]
|
|
5486
5531
|
}
|
|
5487
5532
|
);
|
|
5488
5533
|
}
|
|
5489
5534
|
|
|
5490
5535
|
// src/components/icons/user-plus/index.tsx
|
|
5491
|
-
var
|
|
5536
|
+
var import_jsx_runtime140 = require("react/jsx-runtime");
|
|
5492
5537
|
function UserPlusIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5493
|
-
return /* @__PURE__ */ (0,
|
|
5538
|
+
return /* @__PURE__ */ (0, import_jsx_runtime140.jsxs)(
|
|
5494
5539
|
"svg",
|
|
5495
5540
|
{
|
|
5496
5541
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5505,19 +5550,19 @@ function UserPlusIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5505
5550
|
"aria-hidden": "true",
|
|
5506
5551
|
...rest,
|
|
5507
5552
|
children: [
|
|
5508
|
-
/* @__PURE__ */ (0,
|
|
5509
|
-
/* @__PURE__ */ (0,
|
|
5510
|
-
/* @__PURE__ */ (0,
|
|
5511
|
-
/* @__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" })
|
|
5512
5557
|
]
|
|
5513
5558
|
}
|
|
5514
5559
|
);
|
|
5515
5560
|
}
|
|
5516
5561
|
|
|
5517
5562
|
// src/components/icons/users/index.tsx
|
|
5518
|
-
var
|
|
5563
|
+
var import_jsx_runtime141 = require("react/jsx-runtime");
|
|
5519
5564
|
function UsersIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5520
|
-
return /* @__PURE__ */ (0,
|
|
5565
|
+
return /* @__PURE__ */ (0, import_jsx_runtime141.jsxs)(
|
|
5521
5566
|
"svg",
|
|
5522
5567
|
{
|
|
5523
5568
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5532,19 +5577,19 @@ function UsersIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5532
5577
|
"aria-hidden": "true",
|
|
5533
5578
|
...rest,
|
|
5534
5579
|
children: [
|
|
5535
|
-
/* @__PURE__ */ (0,
|
|
5536
|
-
/* @__PURE__ */ (0,
|
|
5537
|
-
/* @__PURE__ */ (0,
|
|
5538
|
-
/* @__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" })
|
|
5539
5584
|
]
|
|
5540
5585
|
}
|
|
5541
5586
|
);
|
|
5542
5587
|
}
|
|
5543
5588
|
|
|
5544
5589
|
// src/components/icons/volume-2/index.tsx
|
|
5545
|
-
var
|
|
5590
|
+
var import_jsx_runtime142 = require("react/jsx-runtime");
|
|
5546
5591
|
function Volume2Icon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5547
|
-
return /* @__PURE__ */ (0,
|
|
5592
|
+
return /* @__PURE__ */ (0, import_jsx_runtime142.jsxs)(
|
|
5548
5593
|
"svg",
|
|
5549
5594
|
{
|
|
5550
5595
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5559,18 +5604,18 @@ function Volume2Icon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5559
5604
|
"aria-hidden": "true",
|
|
5560
5605
|
...rest,
|
|
5561
5606
|
children: [
|
|
5562
|
-
/* @__PURE__ */ (0,
|
|
5563
|
-
/* @__PURE__ */ (0,
|
|
5564
|
-
/* @__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" })
|
|
5565
5610
|
]
|
|
5566
5611
|
}
|
|
5567
5612
|
);
|
|
5568
5613
|
}
|
|
5569
5614
|
|
|
5570
5615
|
// src/components/icons/volume-x/index.tsx
|
|
5571
|
-
var
|
|
5616
|
+
var import_jsx_runtime143 = require("react/jsx-runtime");
|
|
5572
5617
|
function VolumeXIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5573
|
-
return /* @__PURE__ */ (0,
|
|
5618
|
+
return /* @__PURE__ */ (0, import_jsx_runtime143.jsxs)(
|
|
5574
5619
|
"svg",
|
|
5575
5620
|
{
|
|
5576
5621
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5585,18 +5630,18 @@ function VolumeXIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5585
5630
|
"aria-hidden": "true",
|
|
5586
5631
|
...rest,
|
|
5587
5632
|
children: [
|
|
5588
|
-
/* @__PURE__ */ (0,
|
|
5589
|
-
/* @__PURE__ */ (0,
|
|
5590
|
-
/* @__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" })
|
|
5591
5636
|
]
|
|
5592
5637
|
}
|
|
5593
5638
|
);
|
|
5594
5639
|
}
|
|
5595
5640
|
|
|
5596
5641
|
// src/components/icons/wifi/index.tsx
|
|
5597
|
-
var
|
|
5642
|
+
var import_jsx_runtime144 = require("react/jsx-runtime");
|
|
5598
5643
|
function WifiIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5599
|
-
return /* @__PURE__ */ (0,
|
|
5644
|
+
return /* @__PURE__ */ (0, import_jsx_runtime144.jsxs)(
|
|
5600
5645
|
"svg",
|
|
5601
5646
|
{
|
|
5602
5647
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5611,19 +5656,19 @@ function WifiIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5611
5656
|
"aria-hidden": "true",
|
|
5612
5657
|
...rest,
|
|
5613
5658
|
children: [
|
|
5614
|
-
/* @__PURE__ */ (0,
|
|
5615
|
-
/* @__PURE__ */ (0,
|
|
5616
|
-
/* @__PURE__ */ (0,
|
|
5617
|
-
/* @__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" })
|
|
5618
5663
|
]
|
|
5619
5664
|
}
|
|
5620
5665
|
);
|
|
5621
5666
|
}
|
|
5622
5667
|
|
|
5623
5668
|
// src/components/icons/zap/index.tsx
|
|
5624
|
-
var
|
|
5669
|
+
var import_jsx_runtime145 = require("react/jsx-runtime");
|
|
5625
5670
|
function ZapIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
5626
|
-
return /* @__PURE__ */ (0,
|
|
5671
|
+
return /* @__PURE__ */ (0, import_jsx_runtime145.jsx)(
|
|
5627
5672
|
"svg",
|
|
5628
5673
|
{
|
|
5629
5674
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5637,7 +5682,7 @@ function ZapIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
|
|
|
5637
5682
|
strokeLinejoin: "round",
|
|
5638
5683
|
"aria-hidden": "true",
|
|
5639
5684
|
...rest,
|
|
5640
|
-
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" })
|
|
5641
5686
|
}
|
|
5642
5687
|
);
|
|
5643
5688
|
}
|
|
@@ -5875,6 +5920,7 @@ var iconCatalog = [
|
|
|
5875
5920
|
StarIcon,
|
|
5876
5921
|
Stepper,
|
|
5877
5922
|
SunIcon,
|
|
5923
|
+
Surface,
|
|
5878
5924
|
Switch,
|
|
5879
5925
|
Table,
|
|
5880
5926
|
Tabs,
|