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