luaniverse 4.0.41 → 4.0.43
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 +456 -203
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +23 -1
- package/dist/index.d.ts +23 -1
- package/dist/index.js +446 -204
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import
|
|
1
|
+
import * as React116 from 'react';
|
|
2
|
+
import React116__default from 'react';
|
|
3
3
|
import { Slot } from '@radix-ui/react-slot';
|
|
4
4
|
import { cva } from 'class-variance-authority';
|
|
5
5
|
import { clsx } from 'clsx';
|
|
@@ -201,7 +201,7 @@ var buttonVariants = cva(
|
|
|
201
201
|
}
|
|
202
202
|
);
|
|
203
203
|
var iconStyles = "lua:w-4 lua:h-4 lua:flex lua:items-center lua:justify-center";
|
|
204
|
-
var Button =
|
|
204
|
+
var Button = React116.forwardRef(
|
|
205
205
|
({
|
|
206
206
|
className,
|
|
207
207
|
variant,
|
|
@@ -219,7 +219,7 @@ var Button = React105.forwardRef(
|
|
|
219
219
|
const Comp = asChild ? Slot : "button";
|
|
220
220
|
const hasStartAdornment = !!startAdornment;
|
|
221
221
|
const hasEndAdornment = !!endAdornment;
|
|
222
|
-
const hasTextContent =
|
|
222
|
+
const hasTextContent = React116.Children.toArray(children).some(
|
|
223
223
|
(child) => typeof child === "string" && child.trim().length > 0
|
|
224
224
|
);
|
|
225
225
|
const needsAriaLabel = !hasTextContent && !ariaLabel;
|
|
@@ -274,7 +274,7 @@ var iconButtonVariants = {
|
|
|
274
274
|
large: "lua:p-3 lua:size-12"
|
|
275
275
|
}
|
|
276
276
|
};
|
|
277
|
-
var IconButton =
|
|
277
|
+
var IconButton = React116.forwardRef(
|
|
278
278
|
({
|
|
279
279
|
className,
|
|
280
280
|
variant,
|
|
@@ -315,7 +315,7 @@ var IconButton = React105.forwardRef(
|
|
|
315
315
|
className: "lua:text-current",
|
|
316
316
|
"aria-hidden": "true"
|
|
317
317
|
}
|
|
318
|
-
) }) : /* @__PURE__ */ jsx(Fragment, { children:
|
|
318
|
+
) }) : /* @__PURE__ */ jsx(Fragment, { children: React116.cloneElement(children, {
|
|
319
319
|
"aria-hidden": "true"
|
|
320
320
|
}) })
|
|
321
321
|
}
|
|
@@ -323,7 +323,7 @@ var IconButton = React105.forwardRef(
|
|
|
323
323
|
}
|
|
324
324
|
);
|
|
325
325
|
IconButton.displayName = "IconButton";
|
|
326
|
-
var Input =
|
|
326
|
+
var Input = React116.forwardRef(
|
|
327
327
|
({
|
|
328
328
|
className,
|
|
329
329
|
type = "text",
|
|
@@ -339,7 +339,7 @@ var Input = React105.forwardRef(
|
|
|
339
339
|
disabled,
|
|
340
340
|
...props
|
|
341
341
|
}, ref) => {
|
|
342
|
-
const generatedId =
|
|
342
|
+
const generatedId = React116.useId();
|
|
343
343
|
const inputId = id || generatedId;
|
|
344
344
|
const descriptionId = description ? `${inputId}-description` : void 0;
|
|
345
345
|
const errorId = error ? `${inputId}-error` : void 0;
|
|
@@ -486,7 +486,7 @@ var badgeVariants = cva(
|
|
|
486
486
|
}
|
|
487
487
|
}
|
|
488
488
|
);
|
|
489
|
-
var Badge =
|
|
489
|
+
var Badge = React116.forwardRef(
|
|
490
490
|
({ className, variant, asChild = false, ...props }, ref) => {
|
|
491
491
|
const Comp = asChild ? Slot : "span";
|
|
492
492
|
return /* @__PURE__ */ jsx(
|
|
@@ -501,7 +501,7 @@ var Badge = React105.forwardRef(
|
|
|
501
501
|
}
|
|
502
502
|
);
|
|
503
503
|
Badge.displayName = "Badge";
|
|
504
|
-
var Textarea =
|
|
504
|
+
var Textarea = React116.forwardRef(
|
|
505
505
|
({
|
|
506
506
|
className,
|
|
507
507
|
description,
|
|
@@ -514,7 +514,7 @@ var Textarea = React105.forwardRef(
|
|
|
514
514
|
disabled,
|
|
515
515
|
...props
|
|
516
516
|
}, ref) => {
|
|
517
|
-
const generatedId =
|
|
517
|
+
const generatedId = React116.useId();
|
|
518
518
|
const textareaId = id || generatedId;
|
|
519
519
|
const descriptionId = description ? `${textareaId}-description` : void 0;
|
|
520
520
|
const errorId = error ? `${textareaId}-error` : void 0;
|
|
@@ -609,7 +609,7 @@ var Tabs = TabsPrimitive.Root;
|
|
|
609
609
|
var tabsListVariants = cva([
|
|
610
610
|
"lua:inline-flex lua:items-center lua:justify-start lua:border-b lua:border-gray-200 lua:text-gray-600"
|
|
611
611
|
].join(" "));
|
|
612
|
-
var TabsList =
|
|
612
|
+
var TabsList = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
613
613
|
TabsPrimitive.List,
|
|
614
614
|
{
|
|
615
615
|
ref,
|
|
@@ -625,7 +625,7 @@ var tabsTriggerVariants = cva([
|
|
|
625
625
|
"lua:data-[state=active]:text-blue-600 lua:data-[state=active]:border-b-2 lua:data-[state=active]:border-blue-600 lua:data-[state=active]:-mb-px",
|
|
626
626
|
"lua:hover:text-gray-900 lua:text-gray-600"
|
|
627
627
|
].join(" "));
|
|
628
|
-
var TabsTrigger =
|
|
628
|
+
var TabsTrigger = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
629
629
|
TabsPrimitive.Trigger,
|
|
630
630
|
{
|
|
631
631
|
ref,
|
|
@@ -638,7 +638,7 @@ var tabsContentVariants = cva([
|
|
|
638
638
|
"lua:mt-4 lua:ring-offset-white lua:focus-visible:outline-hidden lua:focus-visible:ring-2",
|
|
639
639
|
"lua:focus-visible:ring-blue-600 lua:focus-visible:ring-offset-2"
|
|
640
640
|
].join(" "));
|
|
641
|
-
var TabsContent =
|
|
641
|
+
var TabsContent = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
642
642
|
TabsPrimitive.Content,
|
|
643
643
|
{
|
|
644
644
|
ref,
|
|
@@ -647,7 +647,7 @@ var TabsContent = React105.forwardRef(({ className, ...props }, ref) => /* @__PU
|
|
|
647
647
|
}
|
|
648
648
|
));
|
|
649
649
|
TabsContent.displayName = TabsPrimitive.Content.displayName;
|
|
650
|
-
var InputOTP =
|
|
650
|
+
var InputOTP = React116.forwardRef(({ className, containerClassName, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
651
651
|
OTPInput,
|
|
652
652
|
{
|
|
653
653
|
ref,
|
|
@@ -660,10 +660,10 @@ var InputOTP = React105.forwardRef(({ className, containerClassName, ...props },
|
|
|
660
660
|
}
|
|
661
661
|
));
|
|
662
662
|
InputOTP.displayName = "InputOTP";
|
|
663
|
-
var InputOTPGroup =
|
|
663
|
+
var InputOTPGroup = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx("div", { ref, className: cn("lua:flex lua:items-center", className), ...props }));
|
|
664
664
|
InputOTPGroup.displayName = "InputOTPGroup";
|
|
665
|
-
var InputOTPSlot =
|
|
666
|
-
const inputOTPContext =
|
|
665
|
+
var InputOTPSlot = React116.forwardRef(({ index, className, ...props }, ref) => {
|
|
666
|
+
const inputOTPContext = React116.useContext(OTPInputContext);
|
|
667
667
|
const { char, hasFakeCaret, isActive } = inputOTPContext.slots[index];
|
|
668
668
|
return /* @__PURE__ */ jsxs(
|
|
669
669
|
"div",
|
|
@@ -683,7 +683,7 @@ var InputOTPSlot = React105.forwardRef(({ index, className, ...props }, ref) =>
|
|
|
683
683
|
);
|
|
684
684
|
});
|
|
685
685
|
InputOTPSlot.displayName = "InputOTPSlot";
|
|
686
|
-
var InputOTPSeparator =
|
|
686
|
+
var InputOTPSeparator = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
687
687
|
"div",
|
|
688
688
|
{
|
|
689
689
|
ref,
|
|
@@ -697,7 +697,7 @@ InputOTPSeparator.displayName = "InputOTPSeparator";
|
|
|
697
697
|
var TooltipProvider = TooltipPrimitive.Provider;
|
|
698
698
|
var Tooltip = TooltipPrimitive.Root;
|
|
699
699
|
var TooltipTrigger = TooltipPrimitive.Trigger;
|
|
700
|
-
var TooltipArrow =
|
|
700
|
+
var TooltipArrow = React116.forwardRef(({ className, style, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
701
701
|
TooltipPrimitive.Arrow,
|
|
702
702
|
{
|
|
703
703
|
ref,
|
|
@@ -714,7 +714,7 @@ var TooltipArrow = React105.forwardRef(({ className, style, ...props }, ref) =>
|
|
|
714
714
|
}
|
|
715
715
|
));
|
|
716
716
|
TooltipArrow.displayName = TooltipPrimitive.Arrow.displayName;
|
|
717
|
-
var TooltipContent =
|
|
717
|
+
var TooltipContent = React116.forwardRef(({ className, sideOffset = 4, style, ...props }, ref) => /* @__PURE__ */ jsx(TooltipPrimitive.Portal, { children: /* @__PURE__ */ jsx(
|
|
718
718
|
TooltipPrimitive.Content,
|
|
719
719
|
{
|
|
720
720
|
ref,
|
|
@@ -738,7 +738,7 @@ var TooltipContent = React105.forwardRef(({ className, sideOffset = 4, style, ..
|
|
|
738
738
|
}
|
|
739
739
|
) }));
|
|
740
740
|
TooltipContent.displayName = TooltipPrimitive.Content.displayName;
|
|
741
|
-
var Card =
|
|
741
|
+
var Card = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
742
742
|
"div",
|
|
743
743
|
{
|
|
744
744
|
ref,
|
|
@@ -750,7 +750,7 @@ var Card = React105.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */
|
|
|
750
750
|
}
|
|
751
751
|
));
|
|
752
752
|
Card.displayName = "Card";
|
|
753
|
-
var CardHeader =
|
|
753
|
+
var CardHeader = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
754
754
|
"div",
|
|
755
755
|
{
|
|
756
756
|
ref,
|
|
@@ -759,7 +759,7 @@ var CardHeader = React105.forwardRef(({ className, ...props }, ref) => /* @__PUR
|
|
|
759
759
|
}
|
|
760
760
|
));
|
|
761
761
|
CardHeader.displayName = "CardHeader";
|
|
762
|
-
var CardTitle =
|
|
762
|
+
var CardTitle = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
763
763
|
"div",
|
|
764
764
|
{
|
|
765
765
|
ref,
|
|
@@ -768,7 +768,7 @@ var CardTitle = React105.forwardRef(({ className, ...props }, ref) => /* @__PURE
|
|
|
768
768
|
}
|
|
769
769
|
));
|
|
770
770
|
CardTitle.displayName = "CardTitle";
|
|
771
|
-
var CardDescription =
|
|
771
|
+
var CardDescription = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
772
772
|
"div",
|
|
773
773
|
{
|
|
774
774
|
ref,
|
|
@@ -777,9 +777,9 @@ var CardDescription = React105.forwardRef(({ className, ...props }, ref) => /* @
|
|
|
777
777
|
}
|
|
778
778
|
));
|
|
779
779
|
CardDescription.displayName = "CardDescription";
|
|
780
|
-
var CardContent =
|
|
780
|
+
var CardContent = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx("div", { ref, className: cn("lua:p-6 lua:pt-0", className), ...props }));
|
|
781
781
|
CardContent.displayName = "CardContent";
|
|
782
|
-
var CardFooter =
|
|
782
|
+
var CardFooter = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
783
783
|
"div",
|
|
784
784
|
{
|
|
785
785
|
ref,
|
|
@@ -852,7 +852,7 @@ function getAccessibilityProps(props, componentName) {
|
|
|
852
852
|
restProps
|
|
853
853
|
};
|
|
854
854
|
}
|
|
855
|
-
var ArrowLeft =
|
|
855
|
+
var ArrowLeft = React116.forwardRef(
|
|
856
856
|
({ size = 20, ...props }, ref) => {
|
|
857
857
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "ArrowLeft");
|
|
858
858
|
return /* @__PURE__ */ jsxs(
|
|
@@ -881,7 +881,7 @@ var ArrowLeft = React105.forwardRef(
|
|
|
881
881
|
}
|
|
882
882
|
);
|
|
883
883
|
ArrowLeft.displayName = "ArrowLeft";
|
|
884
|
-
var ArrowRight =
|
|
884
|
+
var ArrowRight = React116.forwardRef(
|
|
885
885
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
886
886
|
"svg",
|
|
887
887
|
{
|
|
@@ -903,7 +903,51 @@ var ArrowRight = React105.forwardRef(
|
|
|
903
903
|
)
|
|
904
904
|
);
|
|
905
905
|
ArrowRight.displayName = "ArrowRight";
|
|
906
|
-
var
|
|
906
|
+
var ArrowClockwiseIcon = React116.forwardRef(
|
|
907
|
+
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
908
|
+
"svg",
|
|
909
|
+
{
|
|
910
|
+
ref,
|
|
911
|
+
width: size,
|
|
912
|
+
height: size,
|
|
913
|
+
viewBox: "0 0 24 24",
|
|
914
|
+
fill: "none",
|
|
915
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
916
|
+
...props,
|
|
917
|
+
children: /* @__PURE__ */ jsx(
|
|
918
|
+
"path",
|
|
919
|
+
{
|
|
920
|
+
d: "M22.5 5.25001V9.75001C22.5 9.94892 22.421 10.1397 22.2803 10.2803C22.1397 10.421 21.9489 10.5 21.75 10.5H17.25C17.0511 10.5 16.8603 10.421 16.7197 10.2803C16.579 10.1397 16.5 9.94892 16.5 9.75001C16.5 9.5511 16.579 9.36033 16.7197 9.21968C16.8603 9.07903 17.0511 9.00001 17.25 9.00001H19.8188L17.3259 6.71626L17.3025 6.69376C16.2601 5.65172 14.9337 4.93994 13.4891 4.64734C12.0445 4.35473 10.5457 4.49428 9.17991 5.04854C7.81414 5.60281 6.64197 6.54721 5.80982 7.76379C4.97768 8.98036 4.52245 10.4152 4.501 11.889C4.47956 13.3627 4.89286 14.8102 5.68926 16.0505C6.48566 17.2907 7.62986 18.2688 8.97892 18.8626C10.328 19.4564 11.8221 19.6395 13.2746 19.389C14.7271 19.1386 16.0736 18.4657 17.1459 17.4544C17.2905 17.3176 17.4835 17.2439 17.6825 17.2495C17.8814 17.255 18.07 17.3393 18.2067 17.4839C18.3435 17.6285 18.4172 17.8215 18.4117 18.0204C18.4061 18.2194 18.3218 18.4079 18.1772 18.5447C16.5098 20.126 14.298 21.0052 12 21H11.8763C10.4023 20.9798 8.95579 20.5979 7.66398 19.8878C6.37216 19.1776 5.27455 18.161 4.46762 16.9274C3.6607 15.6937 3.16915 14.2807 3.0362 12.8126C2.90324 11.3445 3.13294 9.86616 3.70511 8.5076C4.27728 7.14903 5.1744 5.95181 6.31762 5.02116C7.46085 4.09051 8.81517 3.45492 10.2616 3.17026C11.7079 2.88559 13.2021 2.96057 14.6127 3.38859C16.0234 3.81662 17.3073 4.58459 18.3516 5.62501L21 8.04376V5.25001C21 5.0511 21.079 4.86033 21.2197 4.71968C21.3603 4.57903 21.5511 4.50001 21.75 4.50001C21.9489 4.50001 22.1397 4.57903 22.2803 4.71968C22.421 4.86033 22.5 5.0511 22.5 5.25001Z",
|
|
921
|
+
fill: props.color || "currentColor"
|
|
922
|
+
}
|
|
923
|
+
)
|
|
924
|
+
}
|
|
925
|
+
)
|
|
926
|
+
);
|
|
927
|
+
ArrowClockwiseIcon.displayName = "ArrowClockwiseIcon";
|
|
928
|
+
var ArrowsClockwiseIcon = React116.forwardRef(
|
|
929
|
+
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
930
|
+
"svg",
|
|
931
|
+
{
|
|
932
|
+
ref,
|
|
933
|
+
width: size,
|
|
934
|
+
height: size,
|
|
935
|
+
viewBox: "0 0 24 24",
|
|
936
|
+
fill: "none",
|
|
937
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
938
|
+
...props,
|
|
939
|
+
children: /* @__PURE__ */ jsx(
|
|
940
|
+
"path",
|
|
941
|
+
{
|
|
942
|
+
d: "M21 4.50001V9.00001C21 9.19892 20.921 9.38969 20.7803 9.53034C20.6397 9.67099 20.4489 9.75001 20.25 9.75001H15.75C15.5511 9.75001 15.3603 9.67099 15.2197 9.53034C15.079 9.38969 15 9.19892 15 9.00001C15 8.8011 15.079 8.61033 15.2197 8.46968C15.3603 8.32903 15.5511 8.25001 15.75 8.25001H18.4397L17.0681 6.87845C15.6742 5.4782 13.7817 4.68821 11.8059 4.68188H11.7638C9.80454 4.67729 7.92227 5.44414 6.52406 6.81657C6.38083 6.95028 6.19096 7.02262 5.99507 7.01813C5.79918 7.01364 5.61283 6.93266 5.47588 6.79253C5.33893 6.65239 5.26226 6.46423 5.26227 6.26829C5.26228 6.07235 5.33897 5.88419 5.47594 5.74407C7.1705 4.08788 9.44983 3.16677 11.8193 3.18064C14.1887 3.1945 16.4571 4.14222 18.1322 5.81813L19.5 7.1897V4.50001C19.5 4.3011 19.579 4.11033 19.7197 3.96968C19.8603 3.82903 20.0511 3.75001 20.25 3.75001C20.4489 3.75001 20.6397 3.82903 20.7803 3.96968C20.921 4.11033 21 4.3011 21 4.50001ZM17.4759 17.1834C16.0639 18.5627 14.1651 19.3298 12.1912 19.3182C10.2173 19.3066 8.32762 18.5173 6.93188 17.1216L5.56031 15.75H8.25C8.44891 15.75 8.63968 15.671 8.78033 15.5303C8.92098 15.3897 9 15.1989 9 15C9 14.8011 8.92098 14.6103 8.78033 14.4697C8.63968 14.329 8.44891 14.25 8.25 14.25H3.75C3.55109 14.25 3.36032 14.329 3.21967 14.4697C3.07902 14.6103 3 14.8011 3 15V19.5C3 19.6989 3.07902 19.8897 3.21967 20.0303C3.36032 20.171 3.55109 20.25 3.75 20.25C3.94891 20.25 4.13968 20.171 4.28033 20.0303C4.42098 19.8897 4.5 19.6989 4.5 19.5V16.8103L5.87156 18.1819C7.54426 19.863 9.816 20.8112 12.1875 20.8181H12.2372C14.5885 20.8242 16.8476 19.9037 18.525 18.2559C18.662 18.1158 18.7387 17.9277 18.7387 17.7317C18.7387 17.5358 18.662 17.3476 18.5251 17.2075C18.3881 17.0674 18.2018 16.9864 18.0059 16.9819C17.81 16.9774 17.6201 17.0497 17.4769 17.1834H17.4759Z",
|
|
943
|
+
fill: props.color || "currentColor"
|
|
944
|
+
}
|
|
945
|
+
)
|
|
946
|
+
}
|
|
947
|
+
)
|
|
948
|
+
);
|
|
949
|
+
ArrowsClockwiseIcon.displayName = "ArrowsClockwiseIcon";
|
|
950
|
+
var ArrowSquareOut = React116.forwardRef(
|
|
907
951
|
({ size = 20, ...props }, ref) => {
|
|
908
952
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "ArrowSquareOut");
|
|
909
953
|
return /* @__PURE__ */ jsxs(
|
|
@@ -932,7 +976,7 @@ var ArrowSquareOut = React105.forwardRef(
|
|
|
932
976
|
}
|
|
933
977
|
);
|
|
934
978
|
ArrowSquareOut.displayName = "ArrowSquareOut";
|
|
935
|
-
var ArrowUp =
|
|
979
|
+
var ArrowUp = React116.forwardRef(
|
|
936
980
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
937
981
|
"svg",
|
|
938
982
|
{
|
|
@@ -954,7 +998,29 @@ var ArrowUp = React105.forwardRef(
|
|
|
954
998
|
)
|
|
955
999
|
);
|
|
956
1000
|
ArrowUp.displayName = "ArrowUp";
|
|
957
|
-
var
|
|
1001
|
+
var BooksIcon = React116.forwardRef(
|
|
1002
|
+
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1003
|
+
"svg",
|
|
1004
|
+
{
|
|
1005
|
+
ref,
|
|
1006
|
+
width: size,
|
|
1007
|
+
height: size,
|
|
1008
|
+
viewBox: "0 0 24 24",
|
|
1009
|
+
fill: "none",
|
|
1010
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1011
|
+
...props,
|
|
1012
|
+
children: /* @__PURE__ */ jsx(
|
|
1013
|
+
"path",
|
|
1014
|
+
{
|
|
1015
|
+
d: "M21.7172 18.2391L18.6056 3.44537C18.5654 3.25191 18.4873 3.06831 18.3759 2.90511C18.2645 2.74191 18.1219 2.60233 17.9564 2.4944C17.7909 2.38646 17.6057 2.3123 17.4114 2.27616C17.2171 2.24002 17.0176 2.24262 16.8244 2.28381L12.4359 3.22693C12.0478 3.31193 11.7089 3.54675 11.4929 3.88032C11.277 4.21389 11.2015 4.61923 11.2828 5.00818L14.3944 19.8019C14.4637 20.1395 14.6471 20.4428 14.9138 20.661C15.1805 20.8792 15.5142 20.9989 15.8588 21.0001C15.9653 20.9999 16.0715 20.9886 16.1756 20.9663L20.5641 20.0232C20.9527 19.938 21.292 19.7027 21.5079 19.3686C21.7239 19.0344 21.7991 18.6285 21.7172 18.2391ZM12.75 4.70162C12.75 4.696 12.75 4.69318 12.75 4.69318L17.1375 3.75568L17.4497 5.24349L13.0622 6.18756L12.75 4.70162ZM13.3706 7.65193L17.76 6.70974L18.0731 8.20037L13.6875 9.14349L13.3706 7.65193ZM13.9931 10.6116L18.3825 9.66849L19.6294 15.5972L15.24 16.5404L13.9931 10.6116ZM20.25 18.5569L15.8625 19.4944L15.5503 18.0066L19.9378 17.0626L20.25 18.5485C20.25 18.5541 20.25 18.5569 20.25 18.5569ZM9.75 3.00006H5.25C4.85218 3.00006 4.47064 3.15809 4.18934 3.4394C3.90804 3.7207 3.75 4.10223 3.75 4.50006V19.5001C3.75 19.8979 3.90804 20.2794 4.18934 20.5607C4.47064 20.842 4.85218 21.0001 5.25 21.0001H9.75C10.1478 21.0001 10.5294 20.842 10.8107 20.5607C11.092 20.2794 11.25 19.8979 11.25 19.5001V4.50006C11.25 4.10223 11.092 3.7207 10.8107 3.4394C10.5294 3.15809 10.1478 3.00006 9.75 3.00006ZM5.25 4.50006H9.75V6.00006H5.25V4.50006ZM5.25 7.50006H9.75V16.5001H5.25V7.50006ZM9.75 19.5001H5.25V18.0001H9.75V19.5001Z",
|
|
1016
|
+
fill: props.color || "currentColor"
|
|
1017
|
+
}
|
|
1018
|
+
)
|
|
1019
|
+
}
|
|
1020
|
+
)
|
|
1021
|
+
);
|
|
1022
|
+
BooksIcon.displayName = "BooksIcon";
|
|
1023
|
+
var Camera = React116.forwardRef(
|
|
958
1024
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
959
1025
|
"svg",
|
|
960
1026
|
{
|
|
@@ -976,7 +1042,7 @@ var Camera = React105.forwardRef(
|
|
|
976
1042
|
)
|
|
977
1043
|
);
|
|
978
1044
|
Camera.displayName = "Camera";
|
|
979
|
-
var CaretDown =
|
|
1045
|
+
var CaretDown = React116.forwardRef(
|
|
980
1046
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
981
1047
|
"svg",
|
|
982
1048
|
{
|
|
@@ -998,7 +1064,7 @@ var CaretDown = React105.forwardRef(
|
|
|
998
1064
|
)
|
|
999
1065
|
);
|
|
1000
1066
|
CaretDown.displayName = "CaretDown";
|
|
1001
|
-
var CaretRight =
|
|
1067
|
+
var CaretRight = React116.forwardRef(
|
|
1002
1068
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1003
1069
|
"svg",
|
|
1004
1070
|
{
|
|
@@ -1020,7 +1086,29 @@ var CaretRight = React105.forwardRef(
|
|
|
1020
1086
|
)
|
|
1021
1087
|
);
|
|
1022
1088
|
CaretRight.displayName = "CaretRight";
|
|
1023
|
-
var
|
|
1089
|
+
var CaretUpIcon = React116.forwardRef(
|
|
1090
|
+
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1091
|
+
"svg",
|
|
1092
|
+
{
|
|
1093
|
+
ref,
|
|
1094
|
+
width: size,
|
|
1095
|
+
height: size,
|
|
1096
|
+
viewBox: "0 0 24 24",
|
|
1097
|
+
fill: "none",
|
|
1098
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1099
|
+
...props,
|
|
1100
|
+
children: /* @__PURE__ */ jsx(
|
|
1101
|
+
"path",
|
|
1102
|
+
{
|
|
1103
|
+
d: "M20.0306 15.5306C19.961 15.6003 19.8782 15.6557 19.7872 15.6934C19.6961 15.7311 19.5986 15.7506 19.5 15.7506C19.4014 15.7506 19.3038 15.7311 19.2128 15.6934C19.1217 15.6557 19.039 15.6003 18.9694 15.5306L12 8.56029L5.03061 15.5306C4.88988 15.6713 4.69901 15.7504 4.49999 15.7504C4.30097 15.7504 4.1101 15.6713 3.96936 15.5306C3.82863 15.3899 3.74957 15.199 3.74957 15C3.74957 14.801 3.82863 14.6101 3.96936 14.4694L11.4694 6.96935C11.539 6.89962 11.6217 6.8443 11.7128 6.80656C11.8038 6.76882 11.9014 6.74939 12 6.74939C12.0986 6.74939 12.1961 6.76882 12.2872 6.80656C12.3782 6.8443 12.461 6.89962 12.5306 6.96935L20.0306 14.4694C20.1003 14.539 20.1557 14.6217 20.1934 14.7128C20.2312 14.8038 20.2506 14.9014 20.2506 15C20.2506 15.0985 20.2312 15.1961 20.1934 15.2872C20.1557 15.3782 20.1003 15.4609 20.0306 15.5306Z",
|
|
1104
|
+
fill: props.color || "currentColor"
|
|
1105
|
+
}
|
|
1106
|
+
)
|
|
1107
|
+
}
|
|
1108
|
+
)
|
|
1109
|
+
);
|
|
1110
|
+
CaretUpIcon.displayName = "CaretUpIcon";
|
|
1111
|
+
var ChartBar = React116.forwardRef(
|
|
1024
1112
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1025
1113
|
"svg",
|
|
1026
1114
|
{
|
|
@@ -1042,7 +1130,7 @@ var ChartBar = React105.forwardRef(
|
|
|
1042
1130
|
)
|
|
1043
1131
|
);
|
|
1044
1132
|
ChartBar.displayName = "ChartBar";
|
|
1045
|
-
var Chat =
|
|
1133
|
+
var Chat = React116.forwardRef(
|
|
1046
1134
|
({ size = 20, ...props }, ref) => {
|
|
1047
1135
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "Chat");
|
|
1048
1136
|
return /* @__PURE__ */ jsxs(
|
|
@@ -1071,7 +1159,7 @@ var Chat = React105.forwardRef(
|
|
|
1071
1159
|
}
|
|
1072
1160
|
);
|
|
1073
1161
|
Chat.displayName = "Chat";
|
|
1074
|
-
var ChatsCircle =
|
|
1162
|
+
var ChatsCircle = React116.forwardRef(
|
|
1075
1163
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1076
1164
|
"svg",
|
|
1077
1165
|
{
|
|
@@ -1093,7 +1181,7 @@ var ChatsCircle = React105.forwardRef(
|
|
|
1093
1181
|
)
|
|
1094
1182
|
);
|
|
1095
1183
|
ChatsCircle.displayName = "ChatsCircle";
|
|
1096
|
-
var Check =
|
|
1184
|
+
var Check = React116.forwardRef(
|
|
1097
1185
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1098
1186
|
"svg",
|
|
1099
1187
|
{
|
|
@@ -1115,7 +1203,29 @@ var Check = React105.forwardRef(
|
|
|
1115
1203
|
)
|
|
1116
1204
|
);
|
|
1117
1205
|
Check.displayName = "Check";
|
|
1118
|
-
var
|
|
1206
|
+
var CheckSquareIcon = React116.forwardRef(
|
|
1207
|
+
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1208
|
+
"svg",
|
|
1209
|
+
{
|
|
1210
|
+
ref,
|
|
1211
|
+
width: size,
|
|
1212
|
+
height: size,
|
|
1213
|
+
viewBox: "0 0 24 24",
|
|
1214
|
+
fill: "none",
|
|
1215
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1216
|
+
...props,
|
|
1217
|
+
children: /* @__PURE__ */ jsx(
|
|
1218
|
+
"path",
|
|
1219
|
+
{
|
|
1220
|
+
d: "M16.2806 9.21937C16.3504 9.28903 16.4057 9.37175 16.4434 9.46279C16.4812 9.55384 16.5006 9.65144 16.5006 9.75C16.5006 9.84856 16.4812 9.94616 16.4434 10.0372C16.4057 10.1283 16.3504 10.211 16.2806 10.2806L11.0306 15.5306C10.961 15.6004 10.8783 15.6557 10.7872 15.6934C10.6962 15.7312 10.5986 15.7506 10.5 15.7506C10.4014 15.7506 10.3038 15.7312 10.2128 15.6934C10.1217 15.6557 10.039 15.6004 9.96937 15.5306L7.71937 13.2806C7.57864 13.1399 7.49958 12.949 7.49958 12.75C7.49958 12.551 7.57864 12.3601 7.71937 12.2194C7.86011 12.0786 8.05098 11.9996 8.25 11.9996C8.44902 11.9996 8.63989 12.0786 8.78063 12.2194L10.5 13.9397L15.2194 9.21937C15.289 9.14964 15.3717 9.09432 15.4628 9.05658C15.5538 9.01884 15.6514 8.99941 15.75 8.99941C15.8486 8.99941 15.9462 9.01884 16.0372 9.05658C16.1283 9.09432 16.211 9.14964 16.2806 9.21937ZM21 4.5V19.5C21 19.8978 20.842 20.2794 20.5607 20.5607C20.2794 20.842 19.8978 21 19.5 21H4.5C4.10218 21 3.72064 20.842 3.43934 20.5607C3.15804 20.2794 3 19.8978 3 19.5V4.5C3 4.10218 3.15804 3.72064 3.43934 3.43934C3.72064 3.15804 4.10218 3 4.5 3H19.5C19.8978 3 20.2794 3.15804 20.5607 3.43934C20.842 3.72064 21 4.10218 21 4.5ZM19.5 19.5V4.5H4.5V19.5H19.5Z",
|
|
1221
|
+
fill: props.color || "currentColor"
|
|
1222
|
+
}
|
|
1223
|
+
)
|
|
1224
|
+
}
|
|
1225
|
+
)
|
|
1226
|
+
);
|
|
1227
|
+
CheckSquareIcon.displayName = "CheckSquareIcon";
|
|
1228
|
+
var Circle = React116.forwardRef(
|
|
1119
1229
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1120
1230
|
"svg",
|
|
1121
1231
|
{
|
|
@@ -1137,7 +1247,29 @@ var Circle = React105.forwardRef(
|
|
|
1137
1247
|
)
|
|
1138
1248
|
);
|
|
1139
1249
|
Circle.displayName = "Circle";
|
|
1140
|
-
var
|
|
1250
|
+
var ClipboardTextIcon = React116.forwardRef(
|
|
1251
|
+
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1252
|
+
"svg",
|
|
1253
|
+
{
|
|
1254
|
+
ref,
|
|
1255
|
+
width: size,
|
|
1256
|
+
height: size,
|
|
1257
|
+
viewBox: "0 0 24 24",
|
|
1258
|
+
fill: "none",
|
|
1259
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1260
|
+
...props,
|
|
1261
|
+
children: /* @__PURE__ */ jsx(
|
|
1262
|
+
"path",
|
|
1263
|
+
{
|
|
1264
|
+
d: "M15.75 14.25C15.75 14.4489 15.671 14.6397 15.5303 14.7803C15.3897 14.921 15.1989 15 15 15H9C8.80109 15 8.61032 14.921 8.46967 14.7803C8.32902 14.6397 8.25 14.4489 8.25 14.25C8.25 14.0511 8.32902 13.8603 8.46967 13.7197C8.61032 13.579 8.80109 13.5 9 13.5H15C15.1989 13.5 15.3897 13.579 15.5303 13.7197C15.671 13.8603 15.75 14.0511 15.75 14.25ZM15 10.5H9C8.80109 10.5 8.61032 10.579 8.46967 10.7197C8.32902 10.8603 8.25 11.0511 8.25 11.25C8.25 11.4489 8.32902 11.6397 8.46967 11.7803C8.61032 11.921 8.80109 12 9 12H15C15.1989 12 15.3897 11.921 15.5303 11.7803C15.671 11.6397 15.75 11.4489 15.75 11.25C15.75 11.0511 15.671 10.8603 15.5303 10.7197C15.3897 10.579 15.1989 10.5 15 10.5ZM20.25 4.49999V20.25C20.25 20.6478 20.092 21.0293 19.8107 21.3106C19.5294 21.592 19.1478 21.75 18.75 21.75H5.25C4.85218 21.75 4.47064 21.592 4.18934 21.3106C3.90804 21.0293 3.75 20.6478 3.75 20.25V4.49999C3.75 4.10216 3.90804 3.72063 4.18934 3.43933C4.47064 3.15802 4.85218 2.99999 5.25 2.99999H8.64937C9.07079 2.52817 9.58709 2.15066 10.1645 1.8922C10.7419 1.63373 11.3674 1.50012 12 1.50012C12.6326 1.50012 13.2581 1.63373 13.8355 1.8922C14.4129 2.15066 14.9292 2.52817 15.3506 2.99999H18.75C19.1478 2.99999 19.5294 3.15802 19.8107 3.43933C20.092 3.72063 20.25 4.10216 20.25 4.49999ZM9 5.99999H15C15 5.20434 14.6839 4.44127 14.1213 3.87867C13.5587 3.31606 12.7956 2.99999 12 2.99999C11.2044 2.99999 10.4413 3.31606 9.87868 3.87867C9.31607 4.44127 9 5.20434 9 5.99999ZM18.75 4.49999H16.2422C16.4128 4.98169 16.5 5.48896 16.5 5.99999V6.74999C16.5 6.9489 16.421 7.13966 16.2803 7.28032C16.1397 7.42097 15.9489 7.49999 15.75 7.49999H8.25C8.05109 7.49999 7.86032 7.42097 7.71967 7.28032C7.57902 7.13966 7.5 6.9489 7.5 6.74999V5.99999C7.50002 5.48896 7.58721 4.98169 7.75781 4.49999H5.25V20.25H18.75V4.49999Z",
|
|
1265
|
+
fill: props.color || "currentColor"
|
|
1266
|
+
}
|
|
1267
|
+
)
|
|
1268
|
+
}
|
|
1269
|
+
)
|
|
1270
|
+
);
|
|
1271
|
+
ClipboardTextIcon.displayName = "ClipboardTextIcon";
|
|
1272
|
+
var Clock = React116.forwardRef(
|
|
1141
1273
|
({ size = 20, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1142
1274
|
"svg",
|
|
1143
1275
|
{
|
|
@@ -1159,7 +1291,7 @@ var Clock = React105.forwardRef(
|
|
|
1159
1291
|
)
|
|
1160
1292
|
);
|
|
1161
1293
|
Clock.displayName = "Clock";
|
|
1162
|
-
var CopySimpleIcon =
|
|
1294
|
+
var CopySimpleIcon = React116.forwardRef(
|
|
1163
1295
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1164
1296
|
"svg",
|
|
1165
1297
|
{
|
|
@@ -1181,7 +1313,7 @@ var CopySimpleIcon = React105.forwardRef(
|
|
|
1181
1313
|
)
|
|
1182
1314
|
);
|
|
1183
1315
|
CopySimpleIcon.displayName = "CopySimpleIcon";
|
|
1184
|
-
var CreditCard =
|
|
1316
|
+
var CreditCard = React116.forwardRef(
|
|
1185
1317
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1186
1318
|
"svg",
|
|
1187
1319
|
{
|
|
@@ -1203,7 +1335,7 @@ var CreditCard = React105.forwardRef(
|
|
|
1203
1335
|
)
|
|
1204
1336
|
);
|
|
1205
1337
|
CreditCard.displayName = "CreditCard";
|
|
1206
|
-
var CurrencyCircleDollar =
|
|
1338
|
+
var CurrencyCircleDollar = React116__default.forwardRef(
|
|
1207
1339
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1208
1340
|
"svg",
|
|
1209
1341
|
{
|
|
@@ -1225,7 +1357,7 @@ var CurrencyCircleDollar = React105__default.forwardRef(
|
|
|
1225
1357
|
)
|
|
1226
1358
|
);
|
|
1227
1359
|
CurrencyCircleDollar.displayName = "CurrencyCircleDollar";
|
|
1228
|
-
var DotsSixVerticalIcon =
|
|
1360
|
+
var DotsSixVerticalIcon = React116.forwardRef(
|
|
1229
1361
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1230
1362
|
"svg",
|
|
1231
1363
|
{
|
|
@@ -1247,7 +1379,7 @@ var DotsSixVerticalIcon = React105.forwardRef(
|
|
|
1247
1379
|
)
|
|
1248
1380
|
);
|
|
1249
1381
|
DotsSixVerticalIcon.displayName = "DotsSixVerticalIcon";
|
|
1250
|
-
var DotsThree =
|
|
1382
|
+
var DotsThree = React116.forwardRef(
|
|
1251
1383
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1252
1384
|
"svg",
|
|
1253
1385
|
{
|
|
@@ -1269,7 +1401,7 @@ var DotsThree = React105.forwardRef(
|
|
|
1269
1401
|
)
|
|
1270
1402
|
);
|
|
1271
1403
|
DotsThree.displayName = "DotsThree";
|
|
1272
|
-
var DotsThreeVertical =
|
|
1404
|
+
var DotsThreeVertical = React116.forwardRef(
|
|
1273
1405
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1274
1406
|
"svg",
|
|
1275
1407
|
{
|
|
@@ -1291,7 +1423,7 @@ var DotsThreeVertical = React105.forwardRef(
|
|
|
1291
1423
|
)
|
|
1292
1424
|
);
|
|
1293
1425
|
DotsThreeVertical.displayName = "DotsThreeVertical";
|
|
1294
|
-
var FacebookLogo =
|
|
1426
|
+
var FacebookLogo = React116.forwardRef(
|
|
1295
1427
|
({ size = 20, ...props }, ref) => {
|
|
1296
1428
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "FacebookLogo");
|
|
1297
1429
|
return /* @__PURE__ */ jsxs(
|
|
@@ -1320,7 +1452,51 @@ var FacebookLogo = React105.forwardRef(
|
|
|
1320
1452
|
}
|
|
1321
1453
|
);
|
|
1322
1454
|
FacebookLogo.displayName = "FacebookLogo";
|
|
1323
|
-
var
|
|
1455
|
+
var FolderIcon = React116.forwardRef(
|
|
1456
|
+
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1457
|
+
"svg",
|
|
1458
|
+
{
|
|
1459
|
+
ref,
|
|
1460
|
+
width: size,
|
|
1461
|
+
height: size,
|
|
1462
|
+
viewBox: "0 0 24 24",
|
|
1463
|
+
fill: "none",
|
|
1464
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1465
|
+
...props,
|
|
1466
|
+
children: /* @__PURE__ */ jsx(
|
|
1467
|
+
"path",
|
|
1468
|
+
{
|
|
1469
|
+
d: "M20.25 6.75001H12.3103L9.75 4.18969C9.61122 4.0498 9.44601 3.93889 9.26398 3.86341C9.08196 3.78792 8.88674 3.74938 8.68969 3.75001H3.75C3.35218 3.75001 2.97064 3.90804 2.68934 4.18935C2.40804 4.47065 2.25 4.85218 2.25 5.25001V18.8081C2.2505 19.1904 2.40257 19.5568 2.67286 19.8271C2.94316 20.0974 3.30962 20.2495 3.69188 20.25H20.3334C20.709 20.2495 21.069 20.1001 21.3346 19.8346C21.6001 19.569 21.7495 19.209 21.75 18.8334V8.25001C21.75 7.85218 21.592 7.47065 21.3107 7.18935C21.0294 6.90804 20.6478 6.75001 20.25 6.75001ZM3.75 5.25001H8.68969L10.1897 6.75001H3.75V5.25001ZM20.25 18.75H3.75V8.25001H20.25V18.75Z",
|
|
1470
|
+
fill: props.color || "currentColor"
|
|
1471
|
+
}
|
|
1472
|
+
)
|
|
1473
|
+
}
|
|
1474
|
+
)
|
|
1475
|
+
);
|
|
1476
|
+
FolderIcon.displayName = "FolderIcon";
|
|
1477
|
+
var FolderSimpleLockIcon = React116.forwardRef(
|
|
1478
|
+
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1479
|
+
"svg",
|
|
1480
|
+
{
|
|
1481
|
+
ref,
|
|
1482
|
+
width: size,
|
|
1483
|
+
height: size,
|
|
1484
|
+
viewBox: "0 0 24 24",
|
|
1485
|
+
fill: "none",
|
|
1486
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1487
|
+
...props,
|
|
1488
|
+
children: /* @__PURE__ */ jsx(
|
|
1489
|
+
"path",
|
|
1490
|
+
{
|
|
1491
|
+
d: "M21.75 8.25V9.75C21.75 9.94891 21.671 10.1397 21.5303 10.2803C21.3897 10.421 21.1989 10.5 21 10.5C20.8011 10.5 20.6103 10.421 20.4697 10.2803C20.329 10.1397 20.25 9.94891 20.25 9.75V8.25H12.2503C11.9259 8.2492 11.6103 8.14401 11.3503 7.95L8.74969 6H3.75V18.75H10.5C10.6989 18.75 10.8897 18.829 11.0303 18.9697C11.171 19.1103 11.25 19.3011 11.25 19.5C11.25 19.6989 11.171 19.8897 11.0303 20.0303C10.8897 20.171 10.6989 20.25 10.5 20.25H3.75C3.35218 20.25 2.97064 20.092 2.68934 19.8107C2.40804 19.5294 2.25 19.1478 2.25 18.75V6C2.25 5.60218 2.40804 5.22064 2.68934 4.93934C2.97064 4.65804 3.35218 4.5 3.75 4.5H8.74969C9.07411 4.5008 9.38967 4.60599 9.64969 4.8L12.2503 6.75H20.25C20.6478 6.75 21.0294 6.90804 21.3107 7.18934C21.592 7.47064 21.75 7.85218 21.75 8.25ZM21.75 15.75V19.5C21.75 19.6989 21.671 19.8897 21.5303 20.0303C21.3897 20.171 21.1989 20.25 21 20.25H14.25C14.0511 20.25 13.8603 20.171 13.7197 20.0303C13.579 19.8897 13.5 19.6989 13.5 19.5V15.75C13.5 15.5511 13.579 15.3603 13.7197 15.2197C13.8603 15.079 14.0511 15 14.25 15H15V14.625C15 13.9288 15.2766 13.2611 15.7688 12.7688C16.2611 12.2766 16.9288 12 17.625 12C18.3212 12 18.9889 12.2766 19.4812 12.7688C19.9734 13.2611 20.25 13.9288 20.25 14.625V15H21C21.1989 15 21.3897 15.079 21.5303 15.2197C21.671 15.3603 21.75 15.5511 21.75 15.75ZM16.5 15H18.75V14.625C18.75 14.3266 18.6315 14.0405 18.4205 13.8295C18.2095 13.6185 17.9234 13.5 17.625 13.5C17.3266 13.5 17.0405 13.6185 16.8295 13.8295C16.6185 14.0405 16.5 14.3266 16.5 14.625V15ZM20.25 16.5H15V18.75H20.25V16.5Z",
|
|
1492
|
+
fill: props.color || "currentColor"
|
|
1493
|
+
}
|
|
1494
|
+
)
|
|
1495
|
+
}
|
|
1496
|
+
)
|
|
1497
|
+
);
|
|
1498
|
+
FolderSimpleLockIcon.displayName = "FolderSimpleLockIcon";
|
|
1499
|
+
var Gear = React116.forwardRef(
|
|
1324
1500
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1325
1501
|
"svg",
|
|
1326
1502
|
{
|
|
@@ -1342,7 +1518,7 @@ var Gear = React105.forwardRef(
|
|
|
1342
1518
|
)
|
|
1343
1519
|
);
|
|
1344
1520
|
Gear.displayName = "Gear";
|
|
1345
|
-
var GearSix =
|
|
1521
|
+
var GearSix = React116.forwardRef(
|
|
1346
1522
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1347
1523
|
"svg",
|
|
1348
1524
|
{
|
|
@@ -1364,7 +1540,7 @@ var GearSix = React105.forwardRef(
|
|
|
1364
1540
|
)
|
|
1365
1541
|
);
|
|
1366
1542
|
GearSix.displayName = "GearSix";
|
|
1367
|
-
var GitCommit =
|
|
1543
|
+
var GitCommit = React116.forwardRef(
|
|
1368
1544
|
({ size = 20, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1369
1545
|
"svg",
|
|
1370
1546
|
{
|
|
@@ -1386,7 +1562,7 @@ var GitCommit = React105.forwardRef(
|
|
|
1386
1562
|
)
|
|
1387
1563
|
);
|
|
1388
1564
|
GitCommit.displayName = "GitCommit";
|
|
1389
|
-
var Headset =
|
|
1565
|
+
var Headset = React116.forwardRef(
|
|
1390
1566
|
({ size = 20, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1391
1567
|
"svg",
|
|
1392
1568
|
{
|
|
@@ -1408,7 +1584,7 @@ var Headset = React105.forwardRef(
|
|
|
1408
1584
|
)
|
|
1409
1585
|
);
|
|
1410
1586
|
Headset.displayName = "Headset";
|
|
1411
|
-
var ImageIcon =
|
|
1587
|
+
var ImageIcon = React116.forwardRef(
|
|
1412
1588
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1413
1589
|
"svg",
|
|
1414
1590
|
{
|
|
@@ -1430,7 +1606,7 @@ var ImageIcon = React105.forwardRef(
|
|
|
1430
1606
|
)
|
|
1431
1607
|
);
|
|
1432
1608
|
ImageIcon.displayName = "ImageIcon";
|
|
1433
|
-
var InstagramLogo =
|
|
1609
|
+
var InstagramLogo = React116.forwardRef(
|
|
1434
1610
|
({ size = 20, ...props }, ref) => {
|
|
1435
1611
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "InstagramLogo");
|
|
1436
1612
|
return /* @__PURE__ */ jsxs(
|
|
@@ -1459,7 +1635,7 @@ var InstagramLogo = React105.forwardRef(
|
|
|
1459
1635
|
}
|
|
1460
1636
|
);
|
|
1461
1637
|
InstagramLogo.displayName = "InstagramLogo";
|
|
1462
|
-
var KeyIcon =
|
|
1638
|
+
var KeyIcon = React116.forwardRef(
|
|
1463
1639
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1464
1640
|
"svg",
|
|
1465
1641
|
{
|
|
@@ -1481,7 +1657,7 @@ var KeyIcon = React105.forwardRef(
|
|
|
1481
1657
|
)
|
|
1482
1658
|
);
|
|
1483
1659
|
KeyIcon.displayName = "KeyIcon";
|
|
1484
|
-
var LinkIcon =
|
|
1660
|
+
var LinkIcon = React116.forwardRef(
|
|
1485
1661
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1486
1662
|
"svg",
|
|
1487
1663
|
{
|
|
@@ -1503,7 +1679,7 @@ var LinkIcon = React105.forwardRef(
|
|
|
1503
1679
|
)
|
|
1504
1680
|
);
|
|
1505
1681
|
LinkIcon.displayName = "LinkIcon";
|
|
1506
|
-
var LinkSimple =
|
|
1682
|
+
var LinkSimple = React116.forwardRef(
|
|
1507
1683
|
({ size = 20, ...props }, ref) => {
|
|
1508
1684
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "LinkSimple");
|
|
1509
1685
|
return /* @__PURE__ */ jsxs(
|
|
@@ -1532,7 +1708,7 @@ var LinkSimple = React105.forwardRef(
|
|
|
1532
1708
|
}
|
|
1533
1709
|
);
|
|
1534
1710
|
LinkSimple.displayName = "LinkSimple";
|
|
1535
|
-
var LockSimple =
|
|
1711
|
+
var LockSimple = React116__default.forwardRef(
|
|
1536
1712
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1537
1713
|
"svg",
|
|
1538
1714
|
{
|
|
@@ -1554,7 +1730,7 @@ var LockSimple = React105__default.forwardRef(
|
|
|
1554
1730
|
)
|
|
1555
1731
|
);
|
|
1556
1732
|
LockSimple.displayName = "LockSimple";
|
|
1557
|
-
var Logo =
|
|
1733
|
+
var Logo = React116.forwardRef(
|
|
1558
1734
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
1559
1735
|
"svg",
|
|
1560
1736
|
{
|
|
@@ -2028,7 +2204,7 @@ var Logo = React105.forwardRef(
|
|
|
2028
2204
|
)
|
|
2029
2205
|
);
|
|
2030
2206
|
Logo.displayName = "Logo";
|
|
2031
|
-
var MagnifyingGlass =
|
|
2207
|
+
var MagnifyingGlass = React116.forwardRef(
|
|
2032
2208
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
2033
2209
|
"svg",
|
|
2034
2210
|
{
|
|
@@ -2050,7 +2226,7 @@ var MagnifyingGlass = React105.forwardRef(
|
|
|
2050
2226
|
)
|
|
2051
2227
|
);
|
|
2052
2228
|
MagnifyingGlass.displayName = "MagnifyingGlass";
|
|
2053
|
-
var MapPin =
|
|
2229
|
+
var MapPin = React116.forwardRef(
|
|
2054
2230
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
2055
2231
|
"svg",
|
|
2056
2232
|
{
|
|
@@ -2072,7 +2248,7 @@ var MapPin = React105.forwardRef(
|
|
|
2072
2248
|
)
|
|
2073
2249
|
);
|
|
2074
2250
|
MapPin.displayName = "MapPin";
|
|
2075
|
-
var Microphone =
|
|
2251
|
+
var Microphone = React116.forwardRef(
|
|
2076
2252
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
2077
2253
|
"svg",
|
|
2078
2254
|
{
|
|
@@ -2094,7 +2270,7 @@ var Microphone = React105.forwardRef(
|
|
|
2094
2270
|
)
|
|
2095
2271
|
);
|
|
2096
2272
|
Microphone.displayName = "Microphone";
|
|
2097
|
-
var Minus =
|
|
2273
|
+
var Minus = React116.forwardRef(
|
|
2098
2274
|
({ size = 20, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
2099
2275
|
"svg",
|
|
2100
2276
|
{
|
|
@@ -2116,7 +2292,7 @@ var Minus = React105.forwardRef(
|
|
|
2116
2292
|
)
|
|
2117
2293
|
);
|
|
2118
2294
|
Minus.displayName = "Minus";
|
|
2119
|
-
var MinusCircleIcon =
|
|
2295
|
+
var MinusCircleIcon = React116.forwardRef(
|
|
2120
2296
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
2121
2297
|
"svg",
|
|
2122
2298
|
{
|
|
@@ -2138,7 +2314,29 @@ var MinusCircleIcon = React105.forwardRef(
|
|
|
2138
2314
|
)
|
|
2139
2315
|
);
|
|
2140
2316
|
MinusCircleIcon.displayName = "MinusCircleIcon";
|
|
2141
|
-
var
|
|
2317
|
+
var PackageIcon = React116.forwardRef(
|
|
2318
|
+
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
2319
|
+
"svg",
|
|
2320
|
+
{
|
|
2321
|
+
ref,
|
|
2322
|
+
width: size,
|
|
2323
|
+
height: size,
|
|
2324
|
+
viewBox: "0 0 24 24",
|
|
2325
|
+
fill: "none",
|
|
2326
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2327
|
+
...props,
|
|
2328
|
+
children: /* @__PURE__ */ jsx(
|
|
2329
|
+
"path",
|
|
2330
|
+
{
|
|
2331
|
+
d: "M20.97 6.20146L12.72 1.68739C12.4996 1.5656 12.2518 1.50171 12 1.50171C11.7482 1.50171 11.5004 1.5656 11.28 1.68739L3.03 6.20333C2.7944 6.33224 2.59772 6.52205 2.46052 6.75292C2.32331 6.98379 2.25061 7.24727 2.25 7.51583V16.4821C2.25061 16.7506 2.32331 17.0141 2.46052 17.245C2.59772 17.4759 2.7944 17.6657 3.03 17.7946L11.28 22.3105C11.5004 22.4323 11.7482 22.4962 12 22.4962C12.2518 22.4962 12.4996 22.4323 12.72 22.3105L20.97 17.7946C21.2056 17.6657 21.4023 17.4759 21.5395 17.245C21.6767 17.0141 21.7494 16.7506 21.75 16.4821V7.51677C21.7499 7.24773 21.6774 6.98366 21.5402 6.75225C21.403 6.52084 21.206 6.3306 20.97 6.20146ZM12 2.99989L19.5319 7.12489L16.7409 8.65302L9.20813 4.52802L12 2.99989ZM12 11.2499L4.46812 7.12489L7.64625 5.38489L15.1781 9.5099L12 11.2499ZM3.75 8.4374L11.25 12.5418V20.5846L3.75 16.483V8.4374ZM20.25 16.4793L12.75 20.5846V12.5455L15.75 10.904V14.2499C15.75 14.4488 15.829 14.6396 15.9697 14.7802C16.1103 14.9209 16.3011 14.9999 16.5 14.9999C16.6989 14.9999 16.8897 14.9209 17.0303 14.7802C17.171 14.6396 17.25 14.4488 17.25 14.2499V10.0827L20.25 8.4374V16.4783V16.4793Z",
|
|
2332
|
+
fill: props.color || "currentColor"
|
|
2333
|
+
}
|
|
2334
|
+
)
|
|
2335
|
+
}
|
|
2336
|
+
)
|
|
2337
|
+
);
|
|
2338
|
+
PackageIcon.displayName = "PackageIcon";
|
|
2339
|
+
var Paperclip = React116.forwardRef(
|
|
2142
2340
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
2143
2341
|
"svg",
|
|
2144
2342
|
{
|
|
@@ -2160,7 +2358,7 @@ var Paperclip = React105.forwardRef(
|
|
|
2160
2358
|
)
|
|
2161
2359
|
);
|
|
2162
2360
|
Paperclip.displayName = "Paperclip";
|
|
2163
|
-
var PaperPlane =
|
|
2361
|
+
var PaperPlane = React116.forwardRef(
|
|
2164
2362
|
({ size = 20, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
2165
2363
|
"svg",
|
|
2166
2364
|
{
|
|
@@ -2182,7 +2380,7 @@ var PaperPlane = React105.forwardRef(
|
|
|
2182
2380
|
)
|
|
2183
2381
|
);
|
|
2184
2382
|
PaperPlane.displayName = "PaperPlane";
|
|
2185
|
-
var PaperPlaneTilt =
|
|
2383
|
+
var PaperPlaneTilt = React116.forwardRef(
|
|
2186
2384
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
2187
2385
|
"svg",
|
|
2188
2386
|
{
|
|
@@ -2204,7 +2402,7 @@ var PaperPlaneTilt = React105.forwardRef(
|
|
|
2204
2402
|
)
|
|
2205
2403
|
);
|
|
2206
2404
|
PaperPlaneTilt.displayName = "PaperPlaneTilt";
|
|
2207
|
-
var PencilSimple =
|
|
2405
|
+
var PencilSimple = React116.forwardRef(
|
|
2208
2406
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
2209
2407
|
"svg",
|
|
2210
2408
|
{
|
|
@@ -2226,7 +2424,7 @@ var PencilSimple = React105.forwardRef(
|
|
|
2226
2424
|
)
|
|
2227
2425
|
);
|
|
2228
2426
|
PencilSimple.displayName = "PencilSimple";
|
|
2229
|
-
var PlugsRegular =
|
|
2427
|
+
var PlugsRegular = React116.forwardRef(
|
|
2230
2428
|
({ size = 20, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
2231
2429
|
"svg",
|
|
2232
2430
|
{
|
|
@@ -2248,7 +2446,29 @@ var PlugsRegular = React105.forwardRef(
|
|
|
2248
2446
|
)
|
|
2249
2447
|
);
|
|
2250
2448
|
PlugsRegular.displayName = "PlugsRegular";
|
|
2251
|
-
var
|
|
2449
|
+
var ShoppingCartIcon = React116.forwardRef(
|
|
2450
|
+
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
2451
|
+
"svg",
|
|
2452
|
+
{
|
|
2453
|
+
ref,
|
|
2454
|
+
width: size,
|
|
2455
|
+
height: size,
|
|
2456
|
+
viewBox: "0 0 24 24",
|
|
2457
|
+
fill: "none",
|
|
2458
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2459
|
+
...props,
|
|
2460
|
+
children: /* @__PURE__ */ jsx(
|
|
2461
|
+
"path",
|
|
2462
|
+
{
|
|
2463
|
+
d: "M21.5756 5.51906C21.5052 5.43481 21.4172 5.36705 21.3177 5.32056C21.2183 5.27407 21.1098 5.24998 21 5.25H5.87625L5.30625 2.11594C5.27485 1.94313 5.1838 1.78681 5.04897 1.67425C4.91414 1.56169 4.74408 1.50003 4.56844 1.5H2.25C2.05109 1.5 1.86032 1.57902 1.71967 1.71967C1.57902 1.86032 1.5 2.05109 1.5 2.25C1.5 2.44891 1.57902 2.63968 1.71967 2.78033C1.86032 2.92098 2.05109 3 2.25 3H3.9375L6.33375 16.1522C6.40434 16.5422 6.57671 16.9067 6.83344 17.2087C6.47911 17.5397 6.22336 17.9623 6.09455 18.4298C5.96575 18.8972 5.96892 19.3912 6.10371 19.8569C6.23851 20.3226 6.49966 20.7419 6.85821 21.0683C7.21676 21.3947 7.6587 21.6154 8.13502 21.7059C8.61134 21.7965 9.10344 21.7533 9.55673 21.5813C10.01 21.4092 10.4068 21.115 10.7031 20.7312C10.9994 20.3474 11.1836 19.889 11.2353 19.407C11.287 18.9249 11.2041 18.4379 10.9959 18H15.2541C15.0863 18.3513 14.9995 18.7357 15 19.125C15 19.6442 15.154 20.1517 15.4424 20.5834C15.7308 21.0151 16.1408 21.3515 16.6205 21.5502C17.1001 21.7489 17.6279 21.8008 18.1371 21.6996C18.6463 21.5983 19.114 21.3483 19.4812 20.9812C19.8483 20.614 20.0983 20.1463 20.1996 19.6371C20.3008 19.1279 20.2489 18.6001 20.0502 18.1205C19.8515 17.6408 19.5151 17.2308 19.0834 16.9424C18.6517 16.654 18.1442 16.5 17.625 16.5H8.54719C8.37155 16.5 8.20149 16.4383 8.06665 16.3257C7.93182 16.2132 7.84077 16.0569 7.80938 15.8841L7.51219 14.25H18.3872C18.9141 14.2499 19.4243 14.0649 19.8288 13.7272C20.2333 13.3896 20.5064 12.9206 20.6006 12.4022L21.7406 6.13406C21.7599 6.02572 21.7551 5.91447 21.7266 5.80818C21.6981 5.7019 21.6466 5.60319 21.5756 5.51906ZM9.75 19.125C9.75 19.3475 9.68402 19.565 9.5604 19.75C9.43679 19.935 9.26109 20.0792 9.05552 20.1644C8.84995 20.2495 8.62375 20.2718 8.40552 20.2284C8.18729 20.185 7.98684 20.0778 7.8295 19.9205C7.67217 19.7632 7.56502 19.5627 7.52162 19.3445C7.47821 19.1262 7.50049 18.9 7.58564 18.6945C7.67078 18.4889 7.81498 18.3132 7.99998 18.1896C8.18499 18.066 8.4025 18 8.625 18C8.92337 18 9.20952 18.1185 9.4205 18.3295C9.63147 18.5405 9.75 18.8266 9.75 19.125ZM18.75 19.125C18.75 19.3475 18.684 19.565 18.5604 19.75C18.4368 19.935 18.2611 20.0792 18.0555 20.1644C17.85 20.2495 17.6238 20.2718 17.4055 20.2284C17.1873 20.185 16.9868 20.0778 16.8295 19.9205C16.6722 19.7632 16.565 19.5627 16.5216 19.3445C16.4782 19.1262 16.5005 18.9 16.5856 18.6945C16.6708 18.4889 16.815 18.3132 17 18.1896C17.185 18.066 17.4025 18 17.625 18C17.9234 18 18.2095 18.1185 18.4205 18.3295C18.6315 18.5405 18.75 18.8266 18.75 19.125ZM19.125 12.1341C19.0935 12.3074 19.0021 12.464 18.8666 12.5766C18.7312 12.6893 18.5605 12.7506 18.3844 12.75H7.23938L6.14906 6.75H20.1009L19.125 12.1341Z",
|
|
2464
|
+
fill: props.color || "currentColor"
|
|
2465
|
+
}
|
|
2466
|
+
)
|
|
2467
|
+
}
|
|
2468
|
+
)
|
|
2469
|
+
);
|
|
2470
|
+
ShoppingCartIcon.displayName = "ShoppingCartIcon";
|
|
2471
|
+
var Plus = React116.forwardRef(
|
|
2252
2472
|
({ size = 20, ...props }, ref) => {
|
|
2253
2473
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "Plus");
|
|
2254
2474
|
return /* @__PURE__ */ jsxs(
|
|
@@ -2277,7 +2497,7 @@ var Plus = React105.forwardRef(
|
|
|
2277
2497
|
}
|
|
2278
2498
|
);
|
|
2279
2499
|
Plus.displayName = "Plus";
|
|
2280
|
-
var RecordIcon =
|
|
2500
|
+
var RecordIcon = React116.forwardRef(
|
|
2281
2501
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
2282
2502
|
"svg",
|
|
2283
2503
|
{
|
|
@@ -2299,7 +2519,7 @@ var RecordIcon = React105.forwardRef(
|
|
|
2299
2519
|
)
|
|
2300
2520
|
);
|
|
2301
2521
|
RecordIcon.displayName = "RecordIcon";
|
|
2302
|
-
var SidebarSimple =
|
|
2522
|
+
var SidebarSimple = React116.forwardRef(
|
|
2303
2523
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
2304
2524
|
"svg",
|
|
2305
2525
|
{
|
|
@@ -2321,7 +2541,7 @@ var SidebarSimple = React105.forwardRef(
|
|
|
2321
2541
|
)
|
|
2322
2542
|
);
|
|
2323
2543
|
SidebarSimple.displayName = "SidebarSimple";
|
|
2324
|
-
var SignOut =
|
|
2544
|
+
var SignOut = React116.forwardRef(
|
|
2325
2545
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
2326
2546
|
"svg",
|
|
2327
2547
|
{
|
|
@@ -2343,7 +2563,7 @@ var SignOut = React105.forwardRef(
|
|
|
2343
2563
|
)
|
|
2344
2564
|
);
|
|
2345
2565
|
SignOut.displayName = "SignOut";
|
|
2346
|
-
var Storefront =
|
|
2566
|
+
var Storefront = React116.forwardRef(
|
|
2347
2567
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
2348
2568
|
"svg",
|
|
2349
2569
|
{
|
|
@@ -2365,7 +2585,7 @@ var Storefront = React105.forwardRef(
|
|
|
2365
2585
|
)
|
|
2366
2586
|
);
|
|
2367
2587
|
Storefront.displayName = "Storefront";
|
|
2368
|
-
var Tag =
|
|
2588
|
+
var Tag = React116.forwardRef(
|
|
2369
2589
|
({ size = 20, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
2370
2590
|
"svg",
|
|
2371
2591
|
{
|
|
@@ -2387,7 +2607,7 @@ var Tag = React105.forwardRef(
|
|
|
2387
2607
|
)
|
|
2388
2608
|
);
|
|
2389
2609
|
Tag.displayName = "Tag";
|
|
2390
|
-
var Ticket =
|
|
2610
|
+
var Ticket = React116.forwardRef(
|
|
2391
2611
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
2392
2612
|
"svg",
|
|
2393
2613
|
{
|
|
@@ -2409,7 +2629,7 @@ var Ticket = React105.forwardRef(
|
|
|
2409
2629
|
)
|
|
2410
2630
|
);
|
|
2411
2631
|
Ticket.displayName = "Ticket";
|
|
2412
|
-
var Trash =
|
|
2632
|
+
var Trash = React116.forwardRef(
|
|
2413
2633
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
2414
2634
|
"svg",
|
|
2415
2635
|
{
|
|
@@ -2431,7 +2651,7 @@ var Trash = React105.forwardRef(
|
|
|
2431
2651
|
)
|
|
2432
2652
|
);
|
|
2433
2653
|
Trash.displayName = "Trash";
|
|
2434
|
-
var UserCircle =
|
|
2654
|
+
var UserCircle = React116.forwardRef(
|
|
2435
2655
|
({ size = 24, ...props }, ref) => {
|
|
2436
2656
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props);
|
|
2437
2657
|
return /* @__PURE__ */ jsxs(
|
|
@@ -2460,7 +2680,7 @@ var UserCircle = React105.forwardRef(
|
|
|
2460
2680
|
}
|
|
2461
2681
|
);
|
|
2462
2682
|
UserCircle.displayName = "UserCircle";
|
|
2463
|
-
var UserIcon =
|
|
2683
|
+
var UserIcon = React116.forwardRef(
|
|
2464
2684
|
({ size = 24, ...props }, ref) => {
|
|
2465
2685
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props);
|
|
2466
2686
|
return /* @__PURE__ */ jsxs(
|
|
@@ -2489,7 +2709,7 @@ var UserIcon = React105.forwardRef(
|
|
|
2489
2709
|
}
|
|
2490
2710
|
);
|
|
2491
2711
|
UserIcon.displayName = "UserIcon";
|
|
2492
|
-
var Users =
|
|
2712
|
+
var Users = React116.forwardRef(
|
|
2493
2713
|
({ size = 20, ...props }, ref) => {
|
|
2494
2714
|
const { accessibilityProps, restProps } = getAccessibilityProps(
|
|
2495
2715
|
props,
|
|
@@ -2518,7 +2738,7 @@ var Users = React105.forwardRef(
|
|
|
2518
2738
|
}
|
|
2519
2739
|
);
|
|
2520
2740
|
Users.displayName = "Users";
|
|
2521
|
-
var VideoCamera =
|
|
2741
|
+
var VideoCamera = React116.forwardRef(
|
|
2522
2742
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
2523
2743
|
"svg",
|
|
2524
2744
|
{
|
|
@@ -2540,7 +2760,7 @@ var VideoCamera = React105.forwardRef(
|
|
|
2540
2760
|
)
|
|
2541
2761
|
);
|
|
2542
2762
|
VideoCamera.displayName = "VideoCamera";
|
|
2543
|
-
var WhatsAppLogo =
|
|
2763
|
+
var WhatsAppLogo = React116.forwardRef(
|
|
2544
2764
|
({ size = 20, ...props }, ref) => {
|
|
2545
2765
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props, "WhatsAppLogo");
|
|
2546
2766
|
return /* @__PURE__ */ jsxs(
|
|
@@ -2569,7 +2789,7 @@ var WhatsAppLogo = React105.forwardRef(
|
|
|
2569
2789
|
}
|
|
2570
2790
|
);
|
|
2571
2791
|
WhatsAppLogo.displayName = "WhatsAppLogo";
|
|
2572
|
-
var WarningOctagon =
|
|
2792
|
+
var WarningOctagon = React116.forwardRef(
|
|
2573
2793
|
({ size = 20, ...props }, ref) => {
|
|
2574
2794
|
const { accessibilityProps, restProps } = getAccessibilityProps(
|
|
2575
2795
|
props,
|
|
@@ -2590,7 +2810,7 @@ var WarningOctagon = React105.forwardRef(
|
|
|
2590
2810
|
"path",
|
|
2591
2811
|
{
|
|
2592
2812
|
d: "M11.25 12.75V7.50001C11.25 7.3011 11.329 7.11033 11.4697 6.96968C11.6103 6.82903 11.8011 6.75001 12 6.75001C12.1989 6.75001 12.3897 6.82903 12.5303 6.96968C12.671 7.11033 12.75 7.3011 12.75 7.50001V12.75C12.75 12.9489 12.671 13.1397 12.5303 13.2803C12.3897 13.421 12.1989 13.5 12 13.5C11.8011 13.5 11.6103 13.421 11.4697 13.2803C11.329 13.1397 11.25 12.9489 11.25 12.75ZM21.75 8.58282V15.4172C21.7506 15.6142 21.7121 15.8095 21.6366 15.9915C21.5611 16.1735 21.4502 16.3387 21.3103 16.4775L16.4775 21.3103C16.3387 21.4502 16.1735 21.5611 15.9915 21.6366C15.8095 21.7121 15.6142 21.7506 15.4172 21.75H8.58281C8.38576 21.7506 8.19054 21.7121 8.00852 21.6366C7.82649 21.5611 7.66128 21.4502 7.5225 21.3103L2.68969 16.4775C2.54979 16.3387 2.43888 16.1735 2.3634 15.9915C2.28792 15.8095 2.24937 15.6142 2.25 15.4172V8.58282C2.24937 8.38577 2.28792 8.19055 2.3634 8.00852C2.43888 7.8265 2.54979 7.66129 2.68969 7.52251L7.5225 2.6897C7.66128 2.5498 7.82649 2.43889 8.00852 2.36341C8.19054 2.28792 8.38576 2.24938 8.58281 2.25001H15.4172C15.6142 2.24938 15.8095 2.28792 15.9915 2.36341C16.1735 2.43889 16.3387 2.5498 16.4775 2.6897L21.3103 7.52251C21.4502 7.66129 21.5611 7.8265 21.6366 8.00852C21.7121 8.19055 21.7506 8.38577 21.75 8.58282ZM20.25 8.58282L15.4172 3.75001H8.58281L3.75 8.58282V15.4172L8.58281 20.25H15.4172L20.25 15.4172V8.58282ZM12 15C11.7775 15 11.56 15.066 11.375 15.1896C11.19 15.3132 11.0458 15.4889 10.9606 15.6945C10.8755 15.9001 10.8532 16.1263 10.8966 16.3445C10.94 16.5627 11.0472 16.7632 11.2045 16.9205C11.3618 17.0778 11.5623 17.185 11.7805 17.2284C11.9988 17.2718 12.225 17.2495 12.4305 17.1644C12.6361 17.0792 12.8118 16.935 12.9354 16.75C13.059 16.565 13.125 16.3475 13.125 16.125C13.125 15.8266 13.0065 15.5405 12.7955 15.3295C12.5845 15.1185 12.2984 15 12 15Z",
|
|
2593
|
-
fill: "
|
|
2813
|
+
fill: props.color || "currentColor"
|
|
2594
2814
|
}
|
|
2595
2815
|
)
|
|
2596
2816
|
}
|
|
@@ -2598,7 +2818,7 @@ var WarningOctagon = React105.forwardRef(
|
|
|
2598
2818
|
}
|
|
2599
2819
|
);
|
|
2600
2820
|
WarningOctagon.displayName = "WarningOctagon";
|
|
2601
|
-
var WarningTriangle =
|
|
2821
|
+
var WarningTriangle = React116.forwardRef(
|
|
2602
2822
|
({ size = 20, ...props }, ref) => {
|
|
2603
2823
|
const { accessibilityProps, restProps } = getAccessibilityProps(
|
|
2604
2824
|
props,
|
|
@@ -2619,7 +2839,7 @@ var WarningTriangle = React105.forwardRef(
|
|
|
2619
2839
|
"path",
|
|
2620
2840
|
{
|
|
2621
2841
|
d: "M22.2 17.6335L14.0016 3.39569C13.7967 3.04687 13.5042 2.75764 13.1531 2.55668C12.802 2.35572 12.4045 2.25 12 2.25C11.5955 2.25 11.198 2.35572 10.8469 2.55668C10.4958 2.75764 10.2033 3.04687 9.99844 3.39569L1.8 17.6335C1.60288 17.9709 1.49899 18.3546 1.49899 18.7454C1.49899 19.1361 1.60288 19.5199 1.8 19.8572C2.00225 20.2082 2.29422 20.499 2.64596 20.6998C2.9977 20.9006 3.39655 21.0043 3.80156 21.0001H20.1984C20.6031 21.0039 21.0016 20.9001 21.353 20.6993C21.7044 20.4985 21.996 20.2079 22.1981 19.8572C22.3955 19.52 22.4997 19.1364 22.5001 18.7456C22.5004 18.3549 22.3968 17.9711 22.2 17.6335ZM20.8997 19.1063C20.8282 19.2282 20.7256 19.3289 20.6024 19.3981C20.4792 19.4673 20.3397 19.5025 20.1984 19.5001H3.80156C3.66026 19.5025 3.52085 19.4673 3.39762 19.3981C3.27439 19.3289 3.17178 19.2282 3.10031 19.1063C3.03557 18.9967 3.00142 18.8717 3.00142 18.7444C3.00142 18.6171 3.03557 18.4922 3.10031 18.3826L11.2987 4.14475C11.3717 4.02341 11.4747 3.92301 11.5979 3.8533C11.7212 3.7836 11.8603 3.74696 12.0019 3.74696C12.1434 3.74696 12.2826 3.7836 12.4058 3.8533C12.529 3.92301 12.6321 4.02341 12.705 4.14475L20.9034 18.3826C20.9676 18.4925 21.0011 18.6176 21.0005 18.7449C20.9998 18.8722 20.965 18.997 20.8997 19.1063ZM11.25 13.5001V9.75006C11.25 9.55115 11.329 9.36038 11.4697 9.21973C11.6103 9.07908 11.8011 9.00006 12 9.00006C12.1989 9.00006 12.3897 9.07908 12.5303 9.21973C12.671 9.36038 12.75 9.55115 12.75 9.75006V13.5001C12.75 13.699 12.671 13.8897 12.5303 14.0304C12.3897 14.171 12.1989 14.2501 12 14.2501C11.8011 14.2501 11.6103 14.171 11.4697 14.0304C11.329 13.8897 11.25 13.699 11.25 13.5001ZM13.125 16.8751C13.125 17.0976 13.059 17.3151 12.9354 17.5001C12.8118 17.6851 12.6361 17.8293 12.4305 17.9144C12.2249 17.9996 11.9988 18.0219 11.7805 17.9784C11.5623 17.935 11.3618 17.8279 11.2045 17.6706C11.0472 17.5132 10.94 17.3128 10.8966 17.0945C10.8532 16.8763 10.8755 16.6501 10.9606 16.4445C11.0458 16.239 11.19 16.0633 11.375 15.9397C11.56 15.816 11.7775 15.7501 12 15.7501C12.2984 15.7501 12.5845 15.8686 12.7955 16.0796C13.0065 16.2905 13.125 16.5767 13.125 16.8751Z",
|
|
2622
|
-
fill: "
|
|
2842
|
+
fill: props.color || "currentColor"
|
|
2623
2843
|
}
|
|
2624
2844
|
)
|
|
2625
2845
|
}
|
|
@@ -2627,7 +2847,7 @@ var WarningTriangle = React105.forwardRef(
|
|
|
2627
2847
|
}
|
|
2628
2848
|
);
|
|
2629
2849
|
WarningTriangle.displayName = "WarningTriangle";
|
|
2630
|
-
var Waveform =
|
|
2850
|
+
var Waveform = React116.forwardRef(
|
|
2631
2851
|
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
2632
2852
|
"svg",
|
|
2633
2853
|
{
|
|
@@ -2649,7 +2869,29 @@ var Waveform = React105.forwardRef(
|
|
|
2649
2869
|
)
|
|
2650
2870
|
);
|
|
2651
2871
|
Waveform.displayName = "Waveform";
|
|
2652
|
-
var
|
|
2872
|
+
var WrenchIcon = React116.forwardRef(
|
|
2873
|
+
({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
2874
|
+
"svg",
|
|
2875
|
+
{
|
|
2876
|
+
ref,
|
|
2877
|
+
width: size,
|
|
2878
|
+
height: size,
|
|
2879
|
+
viewBox: "0 0 24 24",
|
|
2880
|
+
fill: "none",
|
|
2881
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2882
|
+
...props,
|
|
2883
|
+
children: /* @__PURE__ */ jsx(
|
|
2884
|
+
"path",
|
|
2885
|
+
{
|
|
2886
|
+
d: "M21.2587 6.46862C21.2133 6.35617 21.1412 6.25644 21.0487 6.17797C20.9562 6.09951 20.846 6.04465 20.7276 6.0181C20.6093 5.99155 20.4863 5.99411 20.3691 6.02555C20.2519 6.05699 20.1442 6.11638 20.055 6.19862L16.2769 9.68518L14.6616 9.33831L14.3147 7.72299L17.8012 3.94487C17.8835 3.85571 17.9429 3.74793 17.9743 3.63077C18.0058 3.51362 18.0083 3.39058 17.9818 3.27222C17.9552 3.15386 17.9004 3.04371 17.8219 2.95121C17.7434 2.8587 17.6437 2.78661 17.5312 2.74112C16.5065 2.32659 15.3956 2.17007 14.2962 2.28532C13.1968 2.40058 12.1426 2.78407 11.2261 3.4021C10.3096 4.02014 9.55889 4.85381 9.03997 5.82985C8.52105 6.8059 8.24978 7.89445 8.25 8.99987C8.24879 9.93332 8.44028 10.857 8.8125 11.713L3.16781 16.5936C3.15375 16.6049 3.14062 16.618 3.1275 16.6302C2.56482 17.1929 2.24872 17.956 2.24872 18.7517C2.24872 19.1458 2.32632 19.5359 2.47711 19.8999C2.62789 20.2639 2.84889 20.5947 3.1275 20.8733C3.40611 21.1519 3.73686 21.3729 4.10088 21.5237C4.4649 21.6745 4.85505 21.7521 5.24906 21.7521C6.0448 21.7521 6.80795 21.436 7.37062 20.8733C7.38281 20.8611 7.39594 20.8471 7.40719 20.8339L12.2869 15.1874C13.3148 15.6386 14.439 15.8263 15.5577 15.7336C16.6765 15.6408 17.7544 15.2705 18.694 14.6562C19.6335 14.0418 20.405 13.2029 20.9386 12.2152C21.4723 11.2276 21.7511 10.1224 21.75 8.99987C21.7515 8.13229 21.5846 7.27267 21.2587 6.46862ZM15 14.2499C14.1123 14.2487 13.2392 14.0229 12.4622 13.5936C12.3116 13.5105 12.1371 13.4816 11.9678 13.5118C11.7985 13.542 11.6447 13.6295 11.5322 13.7596L6.29156 19.8289C6.00797 20.0984 5.63034 20.2463 5.2392 20.2413C4.84806 20.2363 4.47435 20.0787 4.19774 19.8021C3.92114 19.5255 3.76353 19.1518 3.75853 18.7607C3.75352 18.3695 3.90151 17.9919 4.17094 17.7083L10.2356 12.4686C10.3659 12.3561 10.4536 12.2021 10.4838 12.0326C10.514 11.8631 10.485 11.6883 10.4016 11.5377C9.92346 10.673 9.69909 9.69089 9.75425 8.70435C9.8094 7.71781 10.1418 6.76686 10.7133 5.96082C11.2848 5.15479 12.0722 4.5264 12.9849 4.14788C13.8976 3.76937 14.8986 3.65611 15.8728 3.82112L12.9478 6.99081C12.8664 7.07909 12.8074 7.18563 12.7758 7.30146C12.7441 7.41729 12.7408 7.53903 12.7659 7.65643L13.2966 10.1249C13.3269 10.266 13.3974 10.3955 13.4995 10.4976C13.6016 10.5997 13.731 10.6701 13.8722 10.7005L16.3425 11.2311C16.4599 11.2563 16.5816 11.2529 16.6975 11.2213C16.8133 11.1896 16.9198 11.1306 17.0081 11.0492L20.1778 8.12424C20.3042 8.87706 20.265 9.64838 20.0631 10.3845C19.8612 11.1207 19.5013 11.804 19.0085 12.387C18.5157 12.97 17.9019 13.4386 17.2096 13.7603C16.5174 14.0821 15.7633 14.2491 15 14.2499Z",
|
|
2887
|
+
fill: props.color || "currentColor"
|
|
2888
|
+
}
|
|
2889
|
+
)
|
|
2890
|
+
}
|
|
2891
|
+
)
|
|
2892
|
+
);
|
|
2893
|
+
WrenchIcon.displayName = "WrenchIcon";
|
|
2894
|
+
var XIcon = React116.forwardRef(
|
|
2653
2895
|
({ size = 24, ...props }, ref) => {
|
|
2654
2896
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(
|
|
2655
2897
|
props,
|
|
@@ -2686,7 +2928,7 @@ var aep_exports = {};
|
|
|
2686
2928
|
__export(aep_exports, {
|
|
2687
2929
|
AEP: () => AEP
|
|
2688
2930
|
});
|
|
2689
|
-
var AEP =
|
|
2931
|
+
var AEP = React116.forwardRef(
|
|
2690
2932
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
2691
2933
|
"svg",
|
|
2692
2934
|
{
|
|
@@ -2734,7 +2976,7 @@ var ai_exports = {};
|
|
|
2734
2976
|
__export(ai_exports, {
|
|
2735
2977
|
AI: () => AI
|
|
2736
2978
|
});
|
|
2737
|
-
var AI =
|
|
2979
|
+
var AI = React116.forwardRef(
|
|
2738
2980
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
2739
2981
|
"svg",
|
|
2740
2982
|
{
|
|
@@ -2782,7 +3024,7 @@ var avi_exports = {};
|
|
|
2782
3024
|
__export(avi_exports, {
|
|
2783
3025
|
AVI: () => AVI
|
|
2784
3026
|
});
|
|
2785
|
-
var AVI =
|
|
3027
|
+
var AVI = React116.forwardRef(
|
|
2786
3028
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
2787
3029
|
"svg",
|
|
2788
3030
|
{
|
|
@@ -2830,7 +3072,7 @@ var blend_exports = {};
|
|
|
2830
3072
|
__export(blend_exports, {
|
|
2831
3073
|
Blend: () => Blend
|
|
2832
3074
|
});
|
|
2833
|
-
var Blend =
|
|
3075
|
+
var Blend = React116.forwardRef(
|
|
2834
3076
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
2835
3077
|
"svg",
|
|
2836
3078
|
{
|
|
@@ -2878,7 +3120,7 @@ var c4d_exports = {};
|
|
|
2878
3120
|
__export(c4d_exports, {
|
|
2879
3121
|
C4D: () => C4D
|
|
2880
3122
|
});
|
|
2881
|
-
var C4D =
|
|
3123
|
+
var C4D = React116.forwardRef(
|
|
2882
3124
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
2883
3125
|
"svg",
|
|
2884
3126
|
{
|
|
@@ -2926,7 +3168,7 @@ var cdr_exports = {};
|
|
|
2926
3168
|
__export(cdr_exports, {
|
|
2927
3169
|
CDR: () => CDR
|
|
2928
3170
|
});
|
|
2929
|
-
var CDR =
|
|
3171
|
+
var CDR = React116.forwardRef(
|
|
2930
3172
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
2931
3173
|
"svg",
|
|
2932
3174
|
{
|
|
@@ -2974,7 +3216,7 @@ var css_exports = {};
|
|
|
2974
3216
|
__export(css_exports, {
|
|
2975
3217
|
CSS: () => CSS
|
|
2976
3218
|
});
|
|
2977
|
-
var CSS =
|
|
3219
|
+
var CSS = React116.forwardRef(
|
|
2978
3220
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
2979
3221
|
"svg",
|
|
2980
3222
|
{
|
|
@@ -3022,7 +3264,7 @@ var csv_exports = {};
|
|
|
3022
3264
|
__export(csv_exports, {
|
|
3023
3265
|
CSV: () => CSV
|
|
3024
3266
|
});
|
|
3025
|
-
var CSV =
|
|
3267
|
+
var CSV = React116.forwardRef(
|
|
3026
3268
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
3027
3269
|
"svg",
|
|
3028
3270
|
{
|
|
@@ -3070,7 +3312,7 @@ var dmg_exports = {};
|
|
|
3070
3312
|
__export(dmg_exports, {
|
|
3071
3313
|
DMG: () => DMG
|
|
3072
3314
|
});
|
|
3073
|
-
var DMG =
|
|
3315
|
+
var DMG = React116.forwardRef(
|
|
3074
3316
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
3075
3317
|
"svg",
|
|
3076
3318
|
{
|
|
@@ -3118,7 +3360,7 @@ var doc_exports = {};
|
|
|
3118
3360
|
__export(doc_exports, {
|
|
3119
3361
|
DOC: () => DOC
|
|
3120
3362
|
});
|
|
3121
|
-
var DOC =
|
|
3363
|
+
var DOC = React116.forwardRef(
|
|
3122
3364
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
3123
3365
|
"svg",
|
|
3124
3366
|
{
|
|
@@ -3166,7 +3408,7 @@ var exe_exports = {};
|
|
|
3166
3408
|
__export(exe_exports, {
|
|
3167
3409
|
EXE: () => EXE
|
|
3168
3410
|
});
|
|
3169
|
-
var EXE =
|
|
3411
|
+
var EXE = React116.forwardRef(
|
|
3170
3412
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
3171
3413
|
"svg",
|
|
3172
3414
|
{
|
|
@@ -3214,7 +3456,7 @@ var fig_exports = {};
|
|
|
3214
3456
|
__export(fig_exports, {
|
|
3215
3457
|
Fig: () => Fig
|
|
3216
3458
|
});
|
|
3217
|
-
var Fig =
|
|
3459
|
+
var Fig = React116.forwardRef(
|
|
3218
3460
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
3219
3461
|
"svg",
|
|
3220
3462
|
{
|
|
@@ -3262,7 +3504,7 @@ var gif_exports = {};
|
|
|
3262
3504
|
__export(gif_exports, {
|
|
3263
3505
|
GIF: () => GIF
|
|
3264
3506
|
});
|
|
3265
|
-
var GIF =
|
|
3507
|
+
var GIF = React116.forwardRef(
|
|
3266
3508
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
3267
3509
|
"svg",
|
|
3268
3510
|
{
|
|
@@ -3310,7 +3552,7 @@ var html_exports = {};
|
|
|
3310
3552
|
__export(html_exports, {
|
|
3311
3553
|
HTML: () => HTML
|
|
3312
3554
|
});
|
|
3313
|
-
var HTML =
|
|
3555
|
+
var HTML = React116.forwardRef(
|
|
3314
3556
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
3315
3557
|
"svg",
|
|
3316
3558
|
{
|
|
@@ -3358,7 +3600,7 @@ var ico_exports = {};
|
|
|
3358
3600
|
__export(ico_exports, {
|
|
3359
3601
|
ICO: () => ICO
|
|
3360
3602
|
});
|
|
3361
|
-
var ICO =
|
|
3603
|
+
var ICO = React116.forwardRef(
|
|
3362
3604
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
3363
3605
|
"svg",
|
|
3364
3606
|
{
|
|
@@ -3406,7 +3648,7 @@ var java_exports = {};
|
|
|
3406
3648
|
__export(java_exports, {
|
|
3407
3649
|
Java: () => Java
|
|
3408
3650
|
});
|
|
3409
|
-
var Java =
|
|
3651
|
+
var Java = React116.forwardRef(
|
|
3410
3652
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
3411
3653
|
"svg",
|
|
3412
3654
|
{
|
|
@@ -3454,7 +3696,7 @@ var jpeg_exports = {};
|
|
|
3454
3696
|
__export(jpeg_exports, {
|
|
3455
3697
|
JPEG: () => JPEG
|
|
3456
3698
|
});
|
|
3457
|
-
var JPEG =
|
|
3699
|
+
var JPEG = React116.forwardRef(
|
|
3458
3700
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
3459
3701
|
"svg",
|
|
3460
3702
|
{
|
|
@@ -3502,7 +3744,7 @@ var jpg_exports = {};
|
|
|
3502
3744
|
__export(jpg_exports, {
|
|
3503
3745
|
JPG: () => JPG
|
|
3504
3746
|
});
|
|
3505
|
-
var JPG =
|
|
3747
|
+
var JPG = React116.forwardRef(
|
|
3506
3748
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
3507
3749
|
"svg",
|
|
3508
3750
|
{
|
|
@@ -3550,7 +3792,7 @@ var js_exports = {};
|
|
|
3550
3792
|
__export(js_exports, {
|
|
3551
3793
|
JS: () => JS
|
|
3552
3794
|
});
|
|
3553
|
-
var JS =
|
|
3795
|
+
var JS = React116.forwardRef(
|
|
3554
3796
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
3555
3797
|
"svg",
|
|
3556
3798
|
{
|
|
@@ -3598,7 +3840,7 @@ var json_exports = {};
|
|
|
3598
3840
|
__export(json_exports, {
|
|
3599
3841
|
JSON: () => JSON
|
|
3600
3842
|
});
|
|
3601
|
-
var JSON =
|
|
3843
|
+
var JSON = React116.forwardRef(
|
|
3602
3844
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
3603
3845
|
"svg",
|
|
3604
3846
|
{
|
|
@@ -3646,7 +3888,7 @@ var mov_exports = {};
|
|
|
3646
3888
|
__export(mov_exports, {
|
|
3647
3889
|
MOV: () => MOV
|
|
3648
3890
|
});
|
|
3649
|
-
var MOV =
|
|
3891
|
+
var MOV = React116.forwardRef(
|
|
3650
3892
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
3651
3893
|
"svg",
|
|
3652
3894
|
{
|
|
@@ -3694,7 +3936,7 @@ var mp3_exports = {};
|
|
|
3694
3936
|
__export(mp3_exports, {
|
|
3695
3937
|
MP3: () => MP3
|
|
3696
3938
|
});
|
|
3697
|
-
var MP3 =
|
|
3939
|
+
var MP3 = React116.forwardRef(
|
|
3698
3940
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
3699
3941
|
"svg",
|
|
3700
3942
|
{
|
|
@@ -3742,7 +3984,7 @@ var mp4_exports = {};
|
|
|
3742
3984
|
__export(mp4_exports, {
|
|
3743
3985
|
MP4: () => MP4
|
|
3744
3986
|
});
|
|
3745
|
-
var MP4 =
|
|
3987
|
+
var MP4 = React116.forwardRef(
|
|
3746
3988
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
3747
3989
|
"svg",
|
|
3748
3990
|
{
|
|
@@ -3790,7 +4032,7 @@ var mpg_exports = {};
|
|
|
3790
4032
|
__export(mpg_exports, {
|
|
3791
4033
|
MPG: () => MPG
|
|
3792
4034
|
});
|
|
3793
|
-
var MPG =
|
|
4035
|
+
var MPG = React116.forwardRef(
|
|
3794
4036
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
3795
4037
|
"svg",
|
|
3796
4038
|
{
|
|
@@ -3838,7 +4080,7 @@ var pdf_exports = {};
|
|
|
3838
4080
|
__export(pdf_exports, {
|
|
3839
4081
|
PDF: () => PDF
|
|
3840
4082
|
});
|
|
3841
|
-
var PDF =
|
|
4083
|
+
var PDF = React116.forwardRef(
|
|
3842
4084
|
({ ...props }, ref) => {
|
|
3843
4085
|
const { accessibilityProps, title, restProps } = getAccessibilityProps(props);
|
|
3844
4086
|
return /* @__PURE__ */ jsxs(
|
|
@@ -3891,7 +4133,7 @@ var png_exports = {};
|
|
|
3891
4133
|
__export(png_exports, {
|
|
3892
4134
|
PNG: () => PNG
|
|
3893
4135
|
});
|
|
3894
|
-
var PNG =
|
|
4136
|
+
var PNG = React116.forwardRef(
|
|
3895
4137
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
3896
4138
|
"svg",
|
|
3897
4139
|
{
|
|
@@ -3939,7 +4181,7 @@ var ppt_exports = {};
|
|
|
3939
4181
|
__export(ppt_exports, {
|
|
3940
4182
|
PPT: () => PPT
|
|
3941
4183
|
});
|
|
3942
|
-
var PPT =
|
|
4184
|
+
var PPT = React116.forwardRef(
|
|
3943
4185
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
3944
4186
|
"svg",
|
|
3945
4187
|
{
|
|
@@ -3987,7 +4229,7 @@ var psd_exports = {};
|
|
|
3987
4229
|
__export(psd_exports, {
|
|
3988
4230
|
PSD: () => PSD
|
|
3989
4231
|
});
|
|
3990
|
-
var PSD =
|
|
4232
|
+
var PSD = React116.forwardRef(
|
|
3991
4233
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
3992
4234
|
"svg",
|
|
3993
4235
|
{
|
|
@@ -4035,7 +4277,7 @@ var rar_exports = {};
|
|
|
4035
4277
|
__export(rar_exports, {
|
|
4036
4278
|
Rar: () => Rar
|
|
4037
4279
|
});
|
|
4038
|
-
var Rar =
|
|
4280
|
+
var Rar = React116.forwardRef(
|
|
4039
4281
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
4040
4282
|
"svg",
|
|
4041
4283
|
{
|
|
@@ -4083,7 +4325,7 @@ var sketch_exports = {};
|
|
|
4083
4325
|
__export(sketch_exports, {
|
|
4084
4326
|
Sketch: () => Sketch
|
|
4085
4327
|
});
|
|
4086
|
-
var Sketch =
|
|
4328
|
+
var Sketch = React116.forwardRef(
|
|
4087
4329
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
4088
4330
|
"svg",
|
|
4089
4331
|
{
|
|
@@ -4131,7 +4373,7 @@ var svg_exports = {};
|
|
|
4131
4373
|
__export(svg_exports, {
|
|
4132
4374
|
SVG: () => SVG
|
|
4133
4375
|
});
|
|
4134
|
-
var SVG =
|
|
4376
|
+
var SVG = React116.forwardRef(
|
|
4135
4377
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
4136
4378
|
"svg",
|
|
4137
4379
|
{
|
|
@@ -4179,7 +4421,7 @@ var tiff_exports = {};
|
|
|
4179
4421
|
__export(tiff_exports, {
|
|
4180
4422
|
TIFF: () => TIFF
|
|
4181
4423
|
});
|
|
4182
|
-
var TIFF =
|
|
4424
|
+
var TIFF = React116.forwardRef(
|
|
4183
4425
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
4184
4426
|
"svg",
|
|
4185
4427
|
{
|
|
@@ -4227,7 +4469,7 @@ var txt_exports = {};
|
|
|
4227
4469
|
__export(txt_exports, {
|
|
4228
4470
|
TXT: () => TXT
|
|
4229
4471
|
});
|
|
4230
|
-
var TXT =
|
|
4472
|
+
var TXT = React116.forwardRef(
|
|
4231
4473
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
4232
4474
|
"svg",
|
|
4233
4475
|
{
|
|
@@ -4275,7 +4517,7 @@ var wav_exports = {};
|
|
|
4275
4517
|
__export(wav_exports, {
|
|
4276
4518
|
WAV: () => WAV
|
|
4277
4519
|
});
|
|
4278
|
-
var WAV =
|
|
4520
|
+
var WAV = React116.forwardRef(
|
|
4279
4521
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
4280
4522
|
"svg",
|
|
4281
4523
|
{
|
|
@@ -4323,7 +4565,7 @@ var webp_exports = {};
|
|
|
4323
4565
|
__export(webp_exports, {
|
|
4324
4566
|
WEBP: () => WEBP
|
|
4325
4567
|
});
|
|
4326
|
-
var WEBP =
|
|
4568
|
+
var WEBP = React116.forwardRef(
|
|
4327
4569
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
4328
4570
|
"svg",
|
|
4329
4571
|
{
|
|
@@ -4371,7 +4613,7 @@ var xls_exports = {};
|
|
|
4371
4613
|
__export(xls_exports, {
|
|
4372
4614
|
XLS: () => XLS
|
|
4373
4615
|
});
|
|
4374
|
-
var XLS =
|
|
4616
|
+
var XLS = React116.forwardRef(
|
|
4375
4617
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
4376
4618
|
"svg",
|
|
4377
4619
|
{
|
|
@@ -4419,7 +4661,7 @@ var zip_exports = {};
|
|
|
4419
4661
|
__export(zip_exports, {
|
|
4420
4662
|
Zip: () => Zip
|
|
4421
4663
|
});
|
|
4422
|
-
var Zip =
|
|
4664
|
+
var Zip = React116.forwardRef(
|
|
4423
4665
|
({ ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
4424
4666
|
"svg",
|
|
4425
4667
|
{
|
|
@@ -4461,15 +4703,15 @@ var Zip = React105.forwardRef(
|
|
|
4461
4703
|
)
|
|
4462
4704
|
);
|
|
4463
4705
|
Zip.displayName = "Zip";
|
|
4464
|
-
var CarouselContext =
|
|
4706
|
+
var CarouselContext = React116.createContext(null);
|
|
4465
4707
|
function useCarousel() {
|
|
4466
|
-
const context =
|
|
4708
|
+
const context = React116.useContext(CarouselContext);
|
|
4467
4709
|
if (!context) {
|
|
4468
4710
|
throw new Error("useCarousel must be used within a <Carousel />");
|
|
4469
4711
|
}
|
|
4470
4712
|
return context;
|
|
4471
4713
|
}
|
|
4472
|
-
var Carousel =
|
|
4714
|
+
var Carousel = React116.forwardRef(
|
|
4473
4715
|
({
|
|
4474
4716
|
orientation = "horizontal",
|
|
4475
4717
|
opts,
|
|
@@ -4486,10 +4728,10 @@ var Carousel = React105.forwardRef(
|
|
|
4486
4728
|
},
|
|
4487
4729
|
plugins
|
|
4488
4730
|
);
|
|
4489
|
-
const [canScrollPrev, setCanScrollPrev] =
|
|
4490
|
-
const [canScrollNext, setCanScrollNext] =
|
|
4491
|
-
const [slideCount, setSlideCount] =
|
|
4492
|
-
const onSelect =
|
|
4731
|
+
const [canScrollPrev, setCanScrollPrev] = React116.useState(false);
|
|
4732
|
+
const [canScrollNext, setCanScrollNext] = React116.useState(false);
|
|
4733
|
+
const [slideCount, setSlideCount] = React116.useState(0);
|
|
4734
|
+
const onSelect = React116.useCallback((api2) => {
|
|
4493
4735
|
if (!api2) {
|
|
4494
4736
|
return;
|
|
4495
4737
|
}
|
|
@@ -4497,13 +4739,13 @@ var Carousel = React105.forwardRef(
|
|
|
4497
4739
|
setCanScrollNext(api2.canScrollNext());
|
|
4498
4740
|
setSlideCount(api2.scrollSnapList().length);
|
|
4499
4741
|
}, []);
|
|
4500
|
-
const scrollPrev =
|
|
4742
|
+
const scrollPrev = React116.useCallback(() => {
|
|
4501
4743
|
api?.scrollPrev();
|
|
4502
4744
|
}, [api]);
|
|
4503
|
-
const scrollNext =
|
|
4745
|
+
const scrollNext = React116.useCallback(() => {
|
|
4504
4746
|
api?.scrollNext();
|
|
4505
4747
|
}, [api]);
|
|
4506
|
-
const handleKeyDown =
|
|
4748
|
+
const handleKeyDown = React116.useCallback(
|
|
4507
4749
|
(event) => {
|
|
4508
4750
|
if (event.key === "ArrowLeft") {
|
|
4509
4751
|
event.preventDefault();
|
|
@@ -4515,13 +4757,13 @@ var Carousel = React105.forwardRef(
|
|
|
4515
4757
|
},
|
|
4516
4758
|
[scrollPrev, scrollNext]
|
|
4517
4759
|
);
|
|
4518
|
-
|
|
4760
|
+
React116.useEffect(() => {
|
|
4519
4761
|
if (!api || !setApi) {
|
|
4520
4762
|
return;
|
|
4521
4763
|
}
|
|
4522
4764
|
setApi(api);
|
|
4523
4765
|
}, [api, setApi]);
|
|
4524
|
-
|
|
4766
|
+
React116.useEffect(() => {
|
|
4525
4767
|
if (!api) {
|
|
4526
4768
|
return;
|
|
4527
4769
|
}
|
|
@@ -4566,7 +4808,7 @@ var Carousel = React105.forwardRef(
|
|
|
4566
4808
|
}
|
|
4567
4809
|
);
|
|
4568
4810
|
Carousel.displayName = "Carousel";
|
|
4569
|
-
var CarouselContent =
|
|
4811
|
+
var CarouselContent = React116.forwardRef(({ className, ...props }, ref) => {
|
|
4570
4812
|
const { carouselRef, orientation } = useCarousel();
|
|
4571
4813
|
return /* @__PURE__ */ jsx("div", { ref: carouselRef, className: "lua:overflow-hidden", children: /* @__PURE__ */ jsx(
|
|
4572
4814
|
"div",
|
|
@@ -4582,7 +4824,7 @@ var CarouselContent = React105.forwardRef(({ className, ...props }, ref) => {
|
|
|
4582
4824
|
) });
|
|
4583
4825
|
});
|
|
4584
4826
|
CarouselContent.displayName = "CarouselContent";
|
|
4585
|
-
var CarouselItem =
|
|
4827
|
+
var CarouselItem = React116.forwardRef(({ className, ...props }, ref) => {
|
|
4586
4828
|
const { orientation } = useCarousel();
|
|
4587
4829
|
return /* @__PURE__ */ jsx(
|
|
4588
4830
|
"div",
|
|
@@ -4600,7 +4842,7 @@ var CarouselItem = React105.forwardRef(({ className, ...props }, ref) => {
|
|
|
4600
4842
|
);
|
|
4601
4843
|
});
|
|
4602
4844
|
CarouselItem.displayName = "CarouselItem";
|
|
4603
|
-
var CarouselPrevious =
|
|
4845
|
+
var CarouselPrevious = React116.forwardRef(({ className, variant = "outline", size = "small", ...props }, ref) => {
|
|
4604
4846
|
const { orientation, scrollPrev, canScrollPrev } = useCarousel();
|
|
4605
4847
|
return /* @__PURE__ */ jsx(
|
|
4606
4848
|
Button,
|
|
@@ -4622,7 +4864,7 @@ var CarouselPrevious = React105.forwardRef(({ className, variant = "outline", si
|
|
|
4622
4864
|
);
|
|
4623
4865
|
});
|
|
4624
4866
|
CarouselPrevious.displayName = "CarouselPrevious";
|
|
4625
|
-
var CarouselNext =
|
|
4867
|
+
var CarouselNext = React116.forwardRef(({ className, variant = "outline", size = "small", ...props }, ref) => {
|
|
4626
4868
|
const { orientation, scrollNext, canScrollNext } = useCarousel();
|
|
4627
4869
|
return /* @__PURE__ */ jsx(
|
|
4628
4870
|
Button,
|
|
@@ -4648,7 +4890,7 @@ var Dialog = DialogPrimitive.Root;
|
|
|
4648
4890
|
var DialogTrigger = DialogPrimitive.Trigger;
|
|
4649
4891
|
var DialogPortal = DialogPrimitive.Portal;
|
|
4650
4892
|
var DialogClose = DialogPrimitive.Close;
|
|
4651
|
-
var DialogOverlay =
|
|
4893
|
+
var DialogOverlay = React116.forwardRef(({ className, style, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
4652
4894
|
DialogPrimitive.Overlay,
|
|
4653
4895
|
{
|
|
4654
4896
|
ref,
|
|
@@ -4665,7 +4907,7 @@ var DialogOverlay = React105.forwardRef(({ className, style, ...props }, ref) =>
|
|
|
4665
4907
|
}
|
|
4666
4908
|
));
|
|
4667
4909
|
DialogOverlay.displayName = DialogPrimitive.Overlay.displayName;
|
|
4668
|
-
var DialogContent =
|
|
4910
|
+
var DialogContent = React116.forwardRef(({ className, children, showClose = true, ...props }, ref) => /* @__PURE__ */ jsxs(DialogPortal, { children: [
|
|
4669
4911
|
/* @__PURE__ */ jsx(DialogOverlay, {}),
|
|
4670
4912
|
/* @__PURE__ */ jsxs(
|
|
4671
4913
|
DialogPrimitive.Content,
|
|
@@ -4717,7 +4959,7 @@ var DialogFooter = ({
|
|
|
4717
4959
|
}
|
|
4718
4960
|
);
|
|
4719
4961
|
DialogFooter.displayName = "DialogFooter";
|
|
4720
|
-
var DialogTitle =
|
|
4962
|
+
var DialogTitle = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
4721
4963
|
DialogPrimitive.Title,
|
|
4722
4964
|
{
|
|
4723
4965
|
ref,
|
|
@@ -4729,7 +4971,7 @@ var DialogTitle = React105.forwardRef(({ className, ...props }, ref) => /* @__PU
|
|
|
4729
4971
|
}
|
|
4730
4972
|
));
|
|
4731
4973
|
DialogTitle.displayName = DialogPrimitive.Title.displayName;
|
|
4732
|
-
var DialogDescription =
|
|
4974
|
+
var DialogDescription = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
4733
4975
|
DialogPrimitive.Description,
|
|
4734
4976
|
{
|
|
4735
4977
|
ref,
|
|
@@ -4742,7 +4984,7 @@ var Sheet = DialogPrimitive.Root;
|
|
|
4742
4984
|
var SheetTrigger = DialogPrimitive.Trigger;
|
|
4743
4985
|
var SheetClose = DialogPrimitive.Close;
|
|
4744
4986
|
var SheetPortal = DialogPrimitive.Portal;
|
|
4745
|
-
var SheetOverlay =
|
|
4987
|
+
var SheetOverlay = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
4746
4988
|
DialogPrimitive.Overlay,
|
|
4747
4989
|
{
|
|
4748
4990
|
className: cn(
|
|
@@ -4770,7 +5012,7 @@ var sheetVariants = cva(
|
|
|
4770
5012
|
}
|
|
4771
5013
|
}
|
|
4772
5014
|
);
|
|
4773
|
-
var SheetContent =
|
|
5015
|
+
var SheetContent = React116.forwardRef(
|
|
4774
5016
|
({
|
|
4775
5017
|
side = "right",
|
|
4776
5018
|
className,
|
|
@@ -4826,7 +5068,7 @@ var SheetFooter = ({
|
|
|
4826
5068
|
}
|
|
4827
5069
|
);
|
|
4828
5070
|
SheetFooter.displayName = "SheetFooter";
|
|
4829
|
-
var SheetTitle =
|
|
5071
|
+
var SheetTitle = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
4830
5072
|
DialogPrimitive.Title,
|
|
4831
5073
|
{
|
|
4832
5074
|
ref,
|
|
@@ -4838,7 +5080,7 @@ var SheetTitle = React105.forwardRef(({ className, ...props }, ref) => /* @__PUR
|
|
|
4838
5080
|
}
|
|
4839
5081
|
));
|
|
4840
5082
|
SheetTitle.displayName = DialogPrimitive.Title.displayName;
|
|
4841
|
-
var SheetDescription =
|
|
5083
|
+
var SheetDescription = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
4842
5084
|
DialogPrimitive.Description,
|
|
4843
5085
|
{
|
|
4844
5086
|
ref,
|
|
@@ -4875,10 +5117,10 @@ var defaultElements = {
|
|
|
4875
5117
|
"caption": "span",
|
|
4876
5118
|
"overline": "span"
|
|
4877
5119
|
};
|
|
4878
|
-
var Typography =
|
|
5120
|
+
var Typography = React116__default.forwardRef(
|
|
4879
5121
|
({ variant = "body", as, className, children, ...props }, ref) => {
|
|
4880
5122
|
const Component = as || defaultElements[variant];
|
|
4881
|
-
return
|
|
5123
|
+
return React116__default.createElement(
|
|
4882
5124
|
Component,
|
|
4883
5125
|
{
|
|
4884
5126
|
ref,
|
|
@@ -4890,46 +5132,46 @@ var Typography = React105__default.forwardRef(
|
|
|
4890
5132
|
}
|
|
4891
5133
|
);
|
|
4892
5134
|
Typography.displayName = "Typography";
|
|
4893
|
-
var Heading1 =
|
|
5135
|
+
var Heading1 = React116__default.forwardRef(
|
|
4894
5136
|
(props, ref) => /* @__PURE__ */ jsx(Typography, { ref, variant: "h1", ...props })
|
|
4895
5137
|
);
|
|
4896
5138
|
Heading1.displayName = "Heading1";
|
|
4897
|
-
var Heading2 =
|
|
5139
|
+
var Heading2 = React116__default.forwardRef(
|
|
4898
5140
|
(props, ref) => /* @__PURE__ */ jsx(Typography, { ref, variant: "h2", ...props })
|
|
4899
5141
|
);
|
|
4900
5142
|
Heading2.displayName = "Heading2";
|
|
4901
|
-
var Heading3 =
|
|
5143
|
+
var Heading3 = React116__default.forwardRef(
|
|
4902
5144
|
(props, ref) => /* @__PURE__ */ jsx(Typography, { ref, variant: "h3", ...props })
|
|
4903
5145
|
);
|
|
4904
5146
|
Heading3.displayName = "Heading3";
|
|
4905
|
-
var Heading4 =
|
|
5147
|
+
var Heading4 = React116__default.forwardRef(
|
|
4906
5148
|
(props, ref) => /* @__PURE__ */ jsx(Typography, { ref, variant: "h4", ...props })
|
|
4907
5149
|
);
|
|
4908
5150
|
Heading4.displayName = "Heading4";
|
|
4909
|
-
var Heading5 =
|
|
5151
|
+
var Heading5 = React116__default.forwardRef(
|
|
4910
5152
|
(props, ref) => /* @__PURE__ */ jsx(Typography, { ref, variant: "h5", ...props })
|
|
4911
5153
|
);
|
|
4912
5154
|
Heading5.displayName = "Heading5";
|
|
4913
|
-
var Heading6 =
|
|
5155
|
+
var Heading6 = React116__default.forwardRef(
|
|
4914
5156
|
(props, ref) => /* @__PURE__ */ jsx(Typography, { ref, variant: "h6", ...props })
|
|
4915
5157
|
);
|
|
4916
5158
|
Heading6.displayName = "Heading6";
|
|
4917
|
-
var Text =
|
|
5159
|
+
var Text = React116__default.forwardRef(
|
|
4918
5160
|
({ size = "default", ...props }, ref) => {
|
|
4919
5161
|
const variant = size === "xl" ? "body-xl" : size === "lg" ? "body-lg" : size === "sm" ? "body-sm" : "body";
|
|
4920
5162
|
return /* @__PURE__ */ jsx(Typography, { ref, variant, ...props });
|
|
4921
5163
|
}
|
|
4922
5164
|
);
|
|
4923
5165
|
Text.displayName = "Text";
|
|
4924
|
-
var Caption =
|
|
5166
|
+
var Caption = React116__default.forwardRef(
|
|
4925
5167
|
(props, ref) => /* @__PURE__ */ jsx(Typography, { ref, variant: "caption", ...props })
|
|
4926
5168
|
);
|
|
4927
5169
|
Caption.displayName = "Caption";
|
|
4928
|
-
var Overline =
|
|
5170
|
+
var Overline = React116__default.forwardRef(
|
|
4929
5171
|
(props, ref) => /* @__PURE__ */ jsx(Typography, { ref, variant: "overline", ...props })
|
|
4930
5172
|
);
|
|
4931
5173
|
Overline.displayName = "Overline";
|
|
4932
|
-
var Link =
|
|
5174
|
+
var Link = React116__default.forwardRef(
|
|
4933
5175
|
({ variant = "primary", className, children, ...props }, ref) => {
|
|
4934
5176
|
const variantClass = `link-${variant}`;
|
|
4935
5177
|
return /* @__PURE__ */ jsx(
|
|
@@ -4944,11 +5186,11 @@ var Link = React105__default.forwardRef(
|
|
|
4944
5186
|
}
|
|
4945
5187
|
);
|
|
4946
5188
|
Link.displayName = "Link";
|
|
4947
|
-
var PaginationContext =
|
|
5189
|
+
var PaginationContext = React116.createContext({
|
|
4948
5190
|
size: "default"
|
|
4949
5191
|
});
|
|
4950
5192
|
var usePaginationContext = () => {
|
|
4951
|
-
const context =
|
|
5193
|
+
const context = React116.useContext(PaginationContext);
|
|
4952
5194
|
return context;
|
|
4953
5195
|
};
|
|
4954
5196
|
var paginationVariants = cva(
|
|
@@ -4965,7 +5207,7 @@ var paginationVariants = cva(
|
|
|
4965
5207
|
}
|
|
4966
5208
|
}
|
|
4967
5209
|
);
|
|
4968
|
-
var Pagination =
|
|
5210
|
+
var Pagination = React116.forwardRef(
|
|
4969
5211
|
({ className, size = "default", ...props }, ref) => /* @__PURE__ */ jsx(PaginationContext.Provider, { value: { size }, children: /* @__PURE__ */ jsx(
|
|
4970
5212
|
"nav",
|
|
4971
5213
|
{
|
|
@@ -4978,7 +5220,7 @@ var Pagination = React105.forwardRef(
|
|
|
4978
5220
|
) })
|
|
4979
5221
|
);
|
|
4980
5222
|
Pagination.displayName = "Pagination";
|
|
4981
|
-
var PaginationContent =
|
|
5223
|
+
var PaginationContent = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
4982
5224
|
"ul",
|
|
4983
5225
|
{
|
|
4984
5226
|
ref,
|
|
@@ -4987,7 +5229,7 @@ var PaginationContent = React105.forwardRef(({ className, ...props }, ref) => /*
|
|
|
4987
5229
|
}
|
|
4988
5230
|
));
|
|
4989
5231
|
PaginationContent.displayName = "PaginationContent";
|
|
4990
|
-
var PaginationItem =
|
|
5232
|
+
var PaginationItem = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx("li", { ref, className: cn("", className), ...props }));
|
|
4991
5233
|
PaginationItem.displayName = "PaginationItem";
|
|
4992
5234
|
var paginationLinkVariants = cva(
|
|
4993
5235
|
[
|
|
@@ -5009,7 +5251,7 @@ var paginationLinkVariants = cva(
|
|
|
5009
5251
|
}
|
|
5010
5252
|
}
|
|
5011
5253
|
);
|
|
5012
|
-
var PaginationLink =
|
|
5254
|
+
var PaginationLink = React116.forwardRef(({ className, isActive, ...props }, ref) => {
|
|
5013
5255
|
const { size } = usePaginationContext();
|
|
5014
5256
|
return /* @__PURE__ */ jsx(
|
|
5015
5257
|
"a",
|
|
@@ -5026,7 +5268,7 @@ var PaginationLink = React105.forwardRef(({ className, isActive, ...props }, ref
|
|
|
5026
5268
|
);
|
|
5027
5269
|
});
|
|
5028
5270
|
PaginationLink.displayName = "PaginationLink";
|
|
5029
|
-
var PaginationPrevious =
|
|
5271
|
+
var PaginationPrevious = React116.forwardRef(({ className, ...props }, ref) => {
|
|
5030
5272
|
const { size } = usePaginationContext();
|
|
5031
5273
|
return /* @__PURE__ */ jsxs(
|
|
5032
5274
|
PaginationLink,
|
|
@@ -5047,7 +5289,7 @@ var PaginationPrevious = React105.forwardRef(({ className, ...props }, ref) => {
|
|
|
5047
5289
|
);
|
|
5048
5290
|
});
|
|
5049
5291
|
PaginationPrevious.displayName = "PaginationPrevious";
|
|
5050
|
-
var PaginationNext =
|
|
5292
|
+
var PaginationNext = React116.forwardRef(({ className, ...props }, ref) => {
|
|
5051
5293
|
const { size } = usePaginationContext();
|
|
5052
5294
|
return /* @__PURE__ */ jsxs(
|
|
5053
5295
|
PaginationLink,
|
|
@@ -5068,7 +5310,7 @@ var PaginationNext = React105.forwardRef(({ className, ...props }, ref) => {
|
|
|
5068
5310
|
);
|
|
5069
5311
|
});
|
|
5070
5312
|
PaginationNext.displayName = "PaginationNext";
|
|
5071
|
-
var PaginationEllipsis =
|
|
5313
|
+
var PaginationEllipsis = React116.forwardRef(({ className, ...props }, ref) => {
|
|
5072
5314
|
const { size } = usePaginationContext();
|
|
5073
5315
|
return /* @__PURE__ */ jsx(
|
|
5074
5316
|
"span",
|
|
@@ -5092,7 +5334,7 @@ var DropdownMenuGroup = DropdownMenuPrimitive.Group;
|
|
|
5092
5334
|
var DropdownMenuPortal = DropdownMenuPrimitive.Portal;
|
|
5093
5335
|
var DropdownMenuSub = DropdownMenuPrimitive.Sub;
|
|
5094
5336
|
var DropdownMenuRadioGroup = DropdownMenuPrimitive.RadioGroup;
|
|
5095
|
-
var DropdownMenuSubTrigger =
|
|
5337
|
+
var DropdownMenuSubTrigger = React116.forwardRef(({ className, inset, children, ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
5096
5338
|
DropdownMenuPrimitive.SubTrigger,
|
|
5097
5339
|
{
|
|
5098
5340
|
ref,
|
|
@@ -5109,7 +5351,7 @@ var DropdownMenuSubTrigger = React105.forwardRef(({ className, inset, children,
|
|
|
5109
5351
|
}
|
|
5110
5352
|
));
|
|
5111
5353
|
DropdownMenuSubTrigger.displayName = DropdownMenuPrimitive.SubTrigger.displayName;
|
|
5112
|
-
var DropdownMenuSubContent =
|
|
5354
|
+
var DropdownMenuSubContent = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5113
5355
|
DropdownMenuPrimitive.SubContent,
|
|
5114
5356
|
{
|
|
5115
5357
|
ref,
|
|
@@ -5121,7 +5363,7 @@ var DropdownMenuSubContent = React105.forwardRef(({ className, ...props }, ref)
|
|
|
5121
5363
|
}
|
|
5122
5364
|
));
|
|
5123
5365
|
DropdownMenuSubContent.displayName = DropdownMenuPrimitive.SubContent.displayName;
|
|
5124
|
-
var DropdownMenuContent =
|
|
5366
|
+
var DropdownMenuContent = React116.forwardRef(({ className, sideOffset = 4, ...props }, ref) => /* @__PURE__ */ jsx(DropdownMenuPrimitive.Portal, { children: /* @__PURE__ */ jsx(
|
|
5125
5367
|
DropdownMenuPrimitive.Content,
|
|
5126
5368
|
{
|
|
5127
5369
|
ref,
|
|
@@ -5135,7 +5377,7 @@ var DropdownMenuContent = React105.forwardRef(({ className, sideOffset = 4, ...p
|
|
|
5135
5377
|
}
|
|
5136
5378
|
) }));
|
|
5137
5379
|
DropdownMenuContent.displayName = DropdownMenuPrimitive.Content.displayName;
|
|
5138
|
-
var DropdownMenuItem =
|
|
5380
|
+
var DropdownMenuItem = React116.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5139
5381
|
DropdownMenuPrimitive.Item,
|
|
5140
5382
|
{
|
|
5141
5383
|
ref,
|
|
@@ -5148,7 +5390,7 @@ var DropdownMenuItem = React105.forwardRef(({ className, inset, ...props }, ref)
|
|
|
5148
5390
|
}
|
|
5149
5391
|
));
|
|
5150
5392
|
DropdownMenuItem.displayName = DropdownMenuPrimitive.Item.displayName;
|
|
5151
|
-
var DropdownMenuCheckboxItem =
|
|
5393
|
+
var DropdownMenuCheckboxItem = React116.forwardRef(({ className, children, checked, ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
5152
5394
|
DropdownMenuPrimitive.CheckboxItem,
|
|
5153
5395
|
{
|
|
5154
5396
|
ref,
|
|
@@ -5165,7 +5407,7 @@ var DropdownMenuCheckboxItem = React105.forwardRef(({ className, children, check
|
|
|
5165
5407
|
}
|
|
5166
5408
|
));
|
|
5167
5409
|
DropdownMenuCheckboxItem.displayName = DropdownMenuPrimitive.CheckboxItem.displayName;
|
|
5168
|
-
var DropdownMenuRadioItem =
|
|
5410
|
+
var DropdownMenuRadioItem = React116.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
5169
5411
|
DropdownMenuPrimitive.RadioItem,
|
|
5170
5412
|
{
|
|
5171
5413
|
ref,
|
|
@@ -5181,7 +5423,7 @@ var DropdownMenuRadioItem = React105.forwardRef(({ className, children, ...props
|
|
|
5181
5423
|
}
|
|
5182
5424
|
));
|
|
5183
5425
|
DropdownMenuRadioItem.displayName = DropdownMenuPrimitive.RadioItem.displayName;
|
|
5184
|
-
var DropdownMenuLabel =
|
|
5426
|
+
var DropdownMenuLabel = React116.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5185
5427
|
DropdownMenuPrimitive.Label,
|
|
5186
5428
|
{
|
|
5187
5429
|
ref,
|
|
@@ -5194,7 +5436,7 @@ var DropdownMenuLabel = React105.forwardRef(({ className, inset, ...props }, ref
|
|
|
5194
5436
|
}
|
|
5195
5437
|
));
|
|
5196
5438
|
DropdownMenuLabel.displayName = DropdownMenuPrimitive.Label.displayName;
|
|
5197
|
-
var DropdownMenuSeparator =
|
|
5439
|
+
var DropdownMenuSeparator = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5198
5440
|
DropdownMenuPrimitive.Separator,
|
|
5199
5441
|
{
|
|
5200
5442
|
ref,
|
|
@@ -5216,7 +5458,7 @@ var DropdownMenuShortcut = ({
|
|
|
5216
5458
|
);
|
|
5217
5459
|
};
|
|
5218
5460
|
DropdownMenuShortcut.displayName = "DropdownMenuShortcut";
|
|
5219
|
-
var TableWrapper =
|
|
5461
|
+
var TableWrapper = React116.forwardRef(
|
|
5220
5462
|
({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5221
5463
|
"div",
|
|
5222
5464
|
{
|
|
@@ -5231,7 +5473,7 @@ var TableWrapper = React105.forwardRef(
|
|
|
5231
5473
|
)
|
|
5232
5474
|
);
|
|
5233
5475
|
TableWrapper.displayName = "TableWrapper";
|
|
5234
|
-
var Table =
|
|
5476
|
+
var Table = React116.forwardRef(
|
|
5235
5477
|
({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5236
5478
|
"div",
|
|
5237
5479
|
{
|
|
@@ -5253,7 +5495,7 @@ var Table = React105.forwardRef(
|
|
|
5253
5495
|
)
|
|
5254
5496
|
);
|
|
5255
5497
|
Table.displayName = "Table";
|
|
5256
|
-
var TableHeader =
|
|
5498
|
+
var TableHeader = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5257
5499
|
"thead",
|
|
5258
5500
|
{
|
|
5259
5501
|
ref,
|
|
@@ -5266,7 +5508,7 @@ var TableHeader = React105.forwardRef(({ className, ...props }, ref) => /* @__PU
|
|
|
5266
5508
|
}
|
|
5267
5509
|
));
|
|
5268
5510
|
TableHeader.displayName = "TableHeader";
|
|
5269
|
-
var TableBody =
|
|
5511
|
+
var TableBody = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5270
5512
|
"tbody",
|
|
5271
5513
|
{
|
|
5272
5514
|
ref,
|
|
@@ -5279,7 +5521,7 @@ var TableBody = React105.forwardRef(({ className, ...props }, ref) => /* @__PURE
|
|
|
5279
5521
|
}
|
|
5280
5522
|
));
|
|
5281
5523
|
TableBody.displayName = "TableBody";
|
|
5282
|
-
var TableFooter =
|
|
5524
|
+
var TableFooter = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5283
5525
|
"tfoot",
|
|
5284
5526
|
{
|
|
5285
5527
|
ref,
|
|
@@ -5292,7 +5534,7 @@ var TableFooter = React105.forwardRef(({ className, ...props }, ref) => /* @__PU
|
|
|
5292
5534
|
}
|
|
5293
5535
|
));
|
|
5294
5536
|
TableFooter.displayName = "TableFooter";
|
|
5295
|
-
var TableRow =
|
|
5537
|
+
var TableRow = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5296
5538
|
"tr",
|
|
5297
5539
|
{
|
|
5298
5540
|
ref,
|
|
@@ -5310,7 +5552,7 @@ var TableRow = React105.forwardRef(({ className, ...props }, ref) => /* @__PURE_
|
|
|
5310
5552
|
}
|
|
5311
5553
|
));
|
|
5312
5554
|
TableRow.displayName = "TableRow";
|
|
5313
|
-
var TableHead =
|
|
5555
|
+
var TableHead = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5314
5556
|
"th",
|
|
5315
5557
|
{
|
|
5316
5558
|
ref,
|
|
@@ -5323,7 +5565,7 @@ var TableHead = React105.forwardRef(({ className, ...props }, ref) => /* @__PURE
|
|
|
5323
5565
|
}
|
|
5324
5566
|
));
|
|
5325
5567
|
TableHead.displayName = "TableHead";
|
|
5326
|
-
var TableCell =
|
|
5568
|
+
var TableCell = React116.forwardRef(({ className, label, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5327
5569
|
"td",
|
|
5328
5570
|
{
|
|
5329
5571
|
ref,
|
|
@@ -5343,7 +5585,7 @@ var TableCell = React105.forwardRef(({ className, label, ...props }, ref) => /*
|
|
|
5343
5585
|
}
|
|
5344
5586
|
));
|
|
5345
5587
|
TableCell.displayName = "TableCell";
|
|
5346
|
-
var TableCaption =
|
|
5588
|
+
var TableCaption = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5347
5589
|
"caption",
|
|
5348
5590
|
{
|
|
5349
5591
|
ref,
|
|
@@ -5356,7 +5598,7 @@ TableCaption.displayName = "TableCaption";
|
|
|
5356
5598
|
var Select = SelectPrimitive.Root;
|
|
5357
5599
|
var SelectGroup = SelectPrimitive.Group;
|
|
5358
5600
|
var SelectValue = SelectPrimitive.Value;
|
|
5359
|
-
var SelectTrigger =
|
|
5601
|
+
var SelectTrigger = React116.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
5360
5602
|
SelectPrimitive.Trigger,
|
|
5361
5603
|
{
|
|
5362
5604
|
ref,
|
|
@@ -5372,7 +5614,7 @@ var SelectTrigger = React105.forwardRef(({ className, children, ...props }, ref)
|
|
|
5372
5614
|
}
|
|
5373
5615
|
));
|
|
5374
5616
|
SelectTrigger.displayName = SelectPrimitive.Trigger.displayName;
|
|
5375
|
-
var SelectScrollUpButton =
|
|
5617
|
+
var SelectScrollUpButton = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5376
5618
|
SelectPrimitive.ScrollUpButton,
|
|
5377
5619
|
{
|
|
5378
5620
|
ref,
|
|
@@ -5385,7 +5627,7 @@ var SelectScrollUpButton = React105.forwardRef(({ className, ...props }, ref) =>
|
|
|
5385
5627
|
}
|
|
5386
5628
|
));
|
|
5387
5629
|
SelectScrollUpButton.displayName = SelectPrimitive.ScrollUpButton.displayName;
|
|
5388
|
-
var SelectScrollDownButton =
|
|
5630
|
+
var SelectScrollDownButton = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5389
5631
|
SelectPrimitive.ScrollDownButton,
|
|
5390
5632
|
{
|
|
5391
5633
|
ref,
|
|
@@ -5398,7 +5640,7 @@ var SelectScrollDownButton = React105.forwardRef(({ className, ...props }, ref)
|
|
|
5398
5640
|
}
|
|
5399
5641
|
));
|
|
5400
5642
|
SelectScrollDownButton.displayName = SelectPrimitive.ScrollDownButton.displayName;
|
|
5401
|
-
var SelectContent =
|
|
5643
|
+
var SelectContent = React116.forwardRef(({ className, children, position = "popper", ...props }, ref) => /* @__PURE__ */ jsx(SelectPrimitive.Portal, { children: /* @__PURE__ */ jsxs(
|
|
5402
5644
|
SelectPrimitive.Content,
|
|
5403
5645
|
{
|
|
5404
5646
|
ref,
|
|
@@ -5425,7 +5667,7 @@ var SelectContent = React105.forwardRef(({ className, children, position = "popp
|
|
|
5425
5667
|
}
|
|
5426
5668
|
) }));
|
|
5427
5669
|
SelectContent.displayName = SelectPrimitive.Content.displayName;
|
|
5428
|
-
var SelectLabel =
|
|
5670
|
+
var SelectLabel = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5429
5671
|
SelectPrimitive.Label,
|
|
5430
5672
|
{
|
|
5431
5673
|
ref,
|
|
@@ -5434,7 +5676,7 @@ var SelectLabel = React105.forwardRef(({ className, ...props }, ref) => /* @__PU
|
|
|
5434
5676
|
}
|
|
5435
5677
|
));
|
|
5436
5678
|
SelectLabel.displayName = SelectPrimitive.Label.displayName;
|
|
5437
|
-
var SelectItem =
|
|
5679
|
+
var SelectItem = React116.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
5438
5680
|
SelectPrimitive.Item,
|
|
5439
5681
|
{
|
|
5440
5682
|
ref,
|
|
@@ -5450,7 +5692,7 @@ var SelectItem = React105.forwardRef(({ className, children, ...props }, ref) =>
|
|
|
5450
5692
|
}
|
|
5451
5693
|
));
|
|
5452
5694
|
SelectItem.displayName = SelectPrimitive.Item.displayName;
|
|
5453
|
-
var SelectSeparator =
|
|
5695
|
+
var SelectSeparator = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5454
5696
|
SelectPrimitive.Separator,
|
|
5455
5697
|
{
|
|
5456
5698
|
ref,
|
|
@@ -5459,7 +5701,7 @@ var SelectSeparator = React105.forwardRef(({ className, ...props }, ref) => /* @
|
|
|
5459
5701
|
}
|
|
5460
5702
|
));
|
|
5461
5703
|
SelectSeparator.displayName = SelectPrimitive.Separator.displayName;
|
|
5462
|
-
var Label3 =
|
|
5704
|
+
var Label3 = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5463
5705
|
LabelPrimitive.Root,
|
|
5464
5706
|
{
|
|
5465
5707
|
ref,
|
|
@@ -5471,7 +5713,7 @@ var Label3 = React105.forwardRef(({ className, ...props }, ref) => /* @__PURE__
|
|
|
5471
5713
|
}
|
|
5472
5714
|
));
|
|
5473
5715
|
Label3.displayName = LabelPrimitive.Root.displayName;
|
|
5474
|
-
var Switch =
|
|
5716
|
+
var Switch = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5475
5717
|
SwitchPrimitives.Root,
|
|
5476
5718
|
{
|
|
5477
5719
|
className: cn(
|
|
@@ -5484,7 +5726,7 @@ var Switch = React105.forwardRef(({ className, ...props }, ref) => /* @__PURE__
|
|
|
5484
5726
|
}
|
|
5485
5727
|
));
|
|
5486
5728
|
Switch.displayName = SwitchPrimitives.Root.displayName;
|
|
5487
|
-
var RadioGroup2 =
|
|
5729
|
+
var RadioGroup2 = React116.forwardRef(({ className, ...props }, ref) => {
|
|
5488
5730
|
return /* @__PURE__ */ jsx(
|
|
5489
5731
|
RadioGroupPrimitive.Root,
|
|
5490
5732
|
{
|
|
@@ -5495,7 +5737,7 @@ var RadioGroup2 = React105.forwardRef(({ className, ...props }, ref) => {
|
|
|
5495
5737
|
);
|
|
5496
5738
|
});
|
|
5497
5739
|
RadioGroup2.displayName = RadioGroupPrimitive.Root.displayName;
|
|
5498
|
-
var RadioGroupItem =
|
|
5740
|
+
var RadioGroupItem = React116.forwardRef(({ className, ...props }, ref) => {
|
|
5499
5741
|
return /* @__PURE__ */ jsx(
|
|
5500
5742
|
RadioGroupPrimitive.Item,
|
|
5501
5743
|
{
|
|
@@ -5510,7 +5752,7 @@ var RadioGroupItem = React105.forwardRef(({ className, ...props }, ref) => {
|
|
|
5510
5752
|
);
|
|
5511
5753
|
});
|
|
5512
5754
|
RadioGroupItem.displayName = RadioGroupPrimitive.Item.displayName;
|
|
5513
|
-
var Checkbox =
|
|
5755
|
+
var Checkbox = React116.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5514
5756
|
CheckboxPrimitive.Root,
|
|
5515
5757
|
{
|
|
5516
5758
|
ref,
|
|
@@ -5523,7 +5765,7 @@ var Checkbox = React105.forwardRef(({ className, ...props }, ref) => /* @__PURE_
|
|
|
5523
5765
|
}
|
|
5524
5766
|
));
|
|
5525
5767
|
Checkbox.displayName = CheckboxPrimitive.Root.displayName;
|
|
5526
|
-
var MultiSelect =
|
|
5768
|
+
var MultiSelect = React116.forwardRef(
|
|
5527
5769
|
({
|
|
5528
5770
|
options,
|
|
5529
5771
|
value = [],
|
|
@@ -5536,8 +5778,8 @@ var MultiSelect = React105.forwardRef(
|
|
|
5536
5778
|
maxDisplayItems = 3,
|
|
5537
5779
|
...props
|
|
5538
5780
|
}, ref) => {
|
|
5539
|
-
const [open, setOpen] =
|
|
5540
|
-
const handleSelectAll =
|
|
5781
|
+
const [open, setOpen] = React116.useState(false);
|
|
5782
|
+
const handleSelectAll = React116.useCallback(() => {
|
|
5541
5783
|
if (!onValueChange) return;
|
|
5542
5784
|
const enabledOptions2 = options.filter((option) => !option.disabled);
|
|
5543
5785
|
const allValues = enabledOptions2.map((option) => option.value);
|
|
@@ -5550,7 +5792,7 @@ var MultiSelect = React105.forwardRef(
|
|
|
5550
5792
|
onValueChange(allValues);
|
|
5551
5793
|
}
|
|
5552
5794
|
}, [options, value, onValueChange]);
|
|
5553
|
-
const handleItemToggle =
|
|
5795
|
+
const handleItemToggle = React116.useCallback(
|
|
5554
5796
|
(itemValue) => {
|
|
5555
5797
|
if (!onValueChange) return;
|
|
5556
5798
|
const newValue = value.includes(itemValue) ? value.filter((v) => v !== itemValue) : [...value, itemValue];
|
|
@@ -5558,7 +5800,7 @@ var MultiSelect = React105.forwardRef(
|
|
|
5558
5800
|
},
|
|
5559
5801
|
[value, onValueChange]
|
|
5560
5802
|
);
|
|
5561
|
-
const displayValue =
|
|
5803
|
+
const displayValue = React116.useMemo(() => {
|
|
5562
5804
|
if (value.length === 0) {
|
|
5563
5805
|
return placeholder;
|
|
5564
5806
|
}
|
|
@@ -6018,6 +6260,6 @@ var luaniversePreset = {
|
|
|
6018
6260
|
}
|
|
6019
6261
|
};
|
|
6020
6262
|
|
|
6021
|
-
export { AEP, AI, AVI, aep_exports as AepIcon, ai_exports as AiIcon, ArrowLeft, ArrowRight, ArrowSquareOut, ArrowUp, avi_exports as AviIcon, Badge, Blend, blend_exports as BlendIcon, Button, C4D, c4d_exports as C4dIcon, CDR, CSS, CSV, Camera, Caption, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, CaretDown, CaretRight, Carousel, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, cdr_exports as CdrIcon, ChartBar, Chat, ChatsCircle, Check, Checkbox, Circle, Clock, CopySimpleIcon, CreditCard, css_exports as CssIcon, csv_exports as CsvIcon, CurrencyCircleDollar, DMG, DOC, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, dmg_exports as DmgIcon, doc_exports as DocIcon, DotsSixVerticalIcon, DotsThree, DotsThreeVertical, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EXE, exe_exports as ExeIcon, FacebookLogo, Fig, fig_exports as FigIcon, GIF, Gear, GearSix, gif_exports as GifIcon, GitCommit, HTML, Heading1, Heading2, Heading3, Heading4, Heading5, Heading6, Headset, html_exports as HtmlIcon, ICO, ico_exports as IcoIcon, IconButton, ImageIcon, Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, InstagramLogo, JPEG, JPG, JS, JSON, Java, java_exports as JavaIcon, jpeg_exports as JpegIcon, jpg_exports as JpgIcon, js_exports as JsIcon, json_exports as JsonIcon, KeyIcon, Label3 as Label, Link, LinkIcon, LinkSimple, LockSimple, Logo, LogoSpinner, MOV, MP3, MP4, MPG, MagnifyingGlass, MapPin, Microphone, Minus, MinusCircleIcon, mov_exports as MovIcon, mp3_exports as Mp3Icon, mp4_exports as Mp4Icon, mpg_exports as MpgIcon, MultiSelect, Overline, PDF, PNG, PPT, PSD, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, PaperPlane, PaperPlaneTilt, Paperclip, pdf_exports as PdfIcon, PencilSimple, PlugsRegular, Plus, png_exports as PngIcon, ppt_exports as PptIcon, psd_exports as PsdIcon, RadioGroup2 as RadioGroup, RadioGroupItem, Rar, rar_exports as RarIcon, RecordIcon, SVG, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, SidebarSimple, SignOut, Sketch, sketch_exports as SketchIcon, Storefront, svg_exports as SvgIcon, Switch, TIFF, TXT, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, TableWrapper, Tabs, TabsContent, TabsList, TabsTrigger, Tag, Text, Textarea, Ticket, tiff_exports as TiffIcon, Tooltip, TooltipArrow, TooltipContent, TooltipProvider, TooltipTrigger, Trash, txt_exports as TxtIcon, Typography, UserCircle, UserIcon, Users, VideoCamera, WAV, WEBP, WarningOctagon, WarningTriangle, wav_exports as WavIcon, Waveform, webp_exports as WebpIcon, WhatsAppLogo, XIcon, XLS, xls_exports as XlsIcon, Zip, zip_exports as ZipIcon, badgeVariants, buttonVariants, cn, luaniversePreset as default, getAccessibilityProps, getDefaultAriaLabel, iconButtonVariants, luaniversePreset, luaniverseSafelist };
|
|
6263
|
+
export { AEP, AI, AVI, aep_exports as AepIcon, ai_exports as AiIcon, ArrowClockwiseIcon, ArrowLeft, ArrowRight, ArrowSquareOut, ArrowUp, ArrowsClockwiseIcon, avi_exports as AviIcon, Badge, Blend, blend_exports as BlendIcon, BooksIcon, Button, C4D, c4d_exports as C4dIcon, CDR, CSS, CSV, Camera, Caption, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, CaretDown, CaretRight, CaretUpIcon, Carousel, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, cdr_exports as CdrIcon, ChartBar, Chat, ChatsCircle, Check, CheckSquareIcon, Checkbox, Circle, ClipboardTextIcon, Clock, CopySimpleIcon, CreditCard, css_exports as CssIcon, csv_exports as CsvIcon, CurrencyCircleDollar, DMG, DOC, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, dmg_exports as DmgIcon, doc_exports as DocIcon, DotsSixVerticalIcon, DotsThree, DotsThreeVertical, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EXE, exe_exports as ExeIcon, FacebookLogo, Fig, fig_exports as FigIcon, FolderIcon, FolderSimpleLockIcon, GIF, Gear, GearSix, gif_exports as GifIcon, GitCommit, HTML, Heading1, Heading2, Heading3, Heading4, Heading5, Heading6, Headset, html_exports as HtmlIcon, ICO, ico_exports as IcoIcon, IconButton, ImageIcon, Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, InstagramLogo, JPEG, JPG, JS, JSON, Java, java_exports as JavaIcon, jpeg_exports as JpegIcon, jpg_exports as JpgIcon, js_exports as JsIcon, json_exports as JsonIcon, KeyIcon, Label3 as Label, Link, LinkIcon, LinkSimple, LockSimple, Logo, LogoSpinner, MOV, MP3, MP4, MPG, MagnifyingGlass, MapPin, Microphone, Minus, MinusCircleIcon, mov_exports as MovIcon, mp3_exports as Mp3Icon, mp4_exports as Mp4Icon, mpg_exports as MpgIcon, MultiSelect, Overline, PDF, PNG, PPT, PSD, PackageIcon, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, PaperPlane, PaperPlaneTilt, Paperclip, pdf_exports as PdfIcon, PencilSimple, PlugsRegular, Plus, png_exports as PngIcon, ppt_exports as PptIcon, psd_exports as PsdIcon, RadioGroup2 as RadioGroup, RadioGroupItem, Rar, rar_exports as RarIcon, RecordIcon, SVG, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, ShoppingCartIcon, SidebarSimple, SignOut, Sketch, sketch_exports as SketchIcon, Storefront, svg_exports as SvgIcon, Switch, TIFF, TXT, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, TableWrapper, Tabs, TabsContent, TabsList, TabsTrigger, Tag, Text, Textarea, Ticket, tiff_exports as TiffIcon, Tooltip, TooltipArrow, TooltipContent, TooltipProvider, TooltipTrigger, Trash, txt_exports as TxtIcon, Typography, UserCircle, UserIcon, Users, VideoCamera, WAV, WEBP, WarningOctagon, WarningTriangle, wav_exports as WavIcon, Waveform, webp_exports as WebpIcon, WhatsAppLogo, WrenchIcon, XIcon, XLS, xls_exports as XlsIcon, Zip, zip_exports as ZipIcon, badgeVariants, buttonVariants, cn, luaniversePreset as default, getAccessibilityProps, getDefaultAriaLabel, iconButtonVariants, luaniversePreset, luaniverseSafelist };
|
|
6022
6264
|
//# sourceMappingURL=index.js.map
|
|
6023
6265
|
//# sourceMappingURL=index.js.map
|