@snapcall/design-system 1.1.0 → 1.1.1
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.d.mts +2 -17
- package/dist/index.d.ts +2 -17
- package/dist/index.js +478 -641
- package/dist/index.mjs +319 -479
- package/dist/tailwind.css +1 -1
- package/package.json +1 -8
package/dist/index.js
CHANGED
|
@@ -81,7 +81,6 @@ __export(src_exports, {
|
|
|
81
81
|
CopyIcon: () => CopyIcon,
|
|
82
82
|
CursorClickIcon: () => CursorClickIcon,
|
|
83
83
|
DownloadIcon: () => DownloadIcon,
|
|
84
|
-
Drawer: () => Drawer,
|
|
85
84
|
EditIcon: () => EditIcon,
|
|
86
85
|
ExpandIcon: () => ExpandIcon,
|
|
87
86
|
FlipBackwardIcon: () => FlipBackwardIcon,
|
|
@@ -130,7 +129,6 @@ __export(src_exports, {
|
|
|
130
129
|
TabsContent: () => TabsContent,
|
|
131
130
|
TabsList: () => TabsList,
|
|
132
131
|
TabsTrigger: () => TabsTrigger,
|
|
133
|
-
TextField: () => TextField,
|
|
134
132
|
TrashIcon: () => TrashIcon,
|
|
135
133
|
TrendDownIcon: () => TrendDownIcon,
|
|
136
134
|
TrendUpIcon: () => TrendUpIcon,
|
|
@@ -145,8 +143,7 @@ __export(src_exports, {
|
|
|
145
143
|
VolumeMaxIcon: () => VolumeMaxIcon,
|
|
146
144
|
VolumeXIcon: () => VolumeXIcon,
|
|
147
145
|
XCircleIcon: () => XCircleIcon,
|
|
148
|
-
XCloseIcon: () => XCloseIcon
|
|
149
|
-
useDrawerState: () => useDrawerState
|
|
146
|
+
XCloseIcon: () => XCloseIcon
|
|
150
147
|
});
|
|
151
148
|
module.exports = __toCommonJS(src_exports);
|
|
152
149
|
|
|
@@ -165,7 +162,7 @@ function cn(...inputs) {
|
|
|
165
162
|
// src/components/Button/Button.tsx
|
|
166
163
|
var import_jsx_runtime = require("react/jsx-runtime");
|
|
167
164
|
var buttonVariants = (0, import_class_variance_authority.cva)(
|
|
168
|
-
"inline-flex items-center justify-center rounded-md text-sm font-medium ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 disabled:pointer-events-none disabled:opacity-40",
|
|
165
|
+
"inline-flex items-center justify-center gap-2 rounded-md text-sm font-medium ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 disabled:pointer-events-none disabled:opacity-40",
|
|
169
166
|
{
|
|
170
167
|
variants: {
|
|
171
168
|
variant: {
|
|
@@ -403,171 +400,14 @@ function Badge(_a) {
|
|
|
403
400
|
);
|
|
404
401
|
}
|
|
405
402
|
|
|
406
|
-
// src/components/Drawer/Drawer.tsx
|
|
407
|
-
var import_react2 = require("react");
|
|
408
|
-
var import_react_aria = require("react-aria");
|
|
409
|
-
var import_react_stately = require("react-stately");
|
|
410
|
-
var import_react_transition_group = require("react-transition-group");
|
|
411
|
-
var import_classnames = __toESM(require("classnames"));
|
|
412
|
-
var import_jsx_runtime3 = require("react/jsx-runtime");
|
|
413
|
-
var placementsStyle = {
|
|
414
|
-
top: {
|
|
415
|
-
container: " items-start justify-center",
|
|
416
|
-
transition: {
|
|
417
|
-
appear: "-translate-y-full",
|
|
418
|
-
appearDone: "translate-y-0",
|
|
419
|
-
exit: "-translate-y-full"
|
|
420
|
-
}
|
|
421
|
-
},
|
|
422
|
-
right: {
|
|
423
|
-
container: "justify-end",
|
|
424
|
-
transition: {
|
|
425
|
-
appear: "translate-x-full",
|
|
426
|
-
appearDone: "translate-x-0",
|
|
427
|
-
exit: "translate-x-full"
|
|
428
|
-
}
|
|
429
|
-
},
|
|
430
|
-
bottom: {
|
|
431
|
-
container: " items-end justify-center",
|
|
432
|
-
transition: {
|
|
433
|
-
appear: "translate-y-full",
|
|
434
|
-
appearDone: "translate-y-0",
|
|
435
|
-
exit: "translate-y-full"
|
|
436
|
-
}
|
|
437
|
-
},
|
|
438
|
-
left: {
|
|
439
|
-
container: "justify-start",
|
|
440
|
-
transition: {
|
|
441
|
-
appear: "-translate-x-full",
|
|
442
|
-
appearDone: "translate-x-0",
|
|
443
|
-
exit: "-translate-x-full"
|
|
444
|
-
}
|
|
445
|
-
}
|
|
446
|
-
};
|
|
447
|
-
var Drawer = (_a) => {
|
|
448
|
-
var _b = _a, {
|
|
449
|
-
state,
|
|
450
|
-
placement = "left",
|
|
451
|
-
container,
|
|
452
|
-
children
|
|
453
|
-
} = _b, props = __objRest(_b, [
|
|
454
|
-
"state",
|
|
455
|
-
"placement",
|
|
456
|
-
"container",
|
|
457
|
-
"children"
|
|
458
|
-
]);
|
|
459
|
-
const ref = (0, import_react2.useRef)(null);
|
|
460
|
-
const [exited, setExited] = (0, import_react2.useState)(!state.isOpen);
|
|
461
|
-
const { modalProps, underlayProps } = (0, import_react_aria.useModalOverlay)(
|
|
462
|
-
__spreadValues({
|
|
463
|
-
isDismissable: true
|
|
464
|
-
}, props),
|
|
465
|
-
state,
|
|
466
|
-
ref
|
|
467
|
-
);
|
|
468
|
-
if (!(state.isOpen || !exited)) {
|
|
469
|
-
return null;
|
|
470
|
-
}
|
|
471
|
-
const placementStyle = placementsStyle[placement];
|
|
472
|
-
const position = container ? "absolute" : "fixed";
|
|
473
|
-
return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_react_aria.Overlay, { portalContainer: container, children: [
|
|
474
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
475
|
-
import_react_transition_group.CSSTransition,
|
|
476
|
-
{
|
|
477
|
-
in: state.isOpen,
|
|
478
|
-
appear: true,
|
|
479
|
-
onEntered: () => setExited(false),
|
|
480
|
-
onExited: () => setExited(true),
|
|
481
|
-
timeout: { enter: 0, exit: 300 },
|
|
482
|
-
classNames: {
|
|
483
|
-
appear: "opacity-0",
|
|
484
|
-
appearDone: "opacity-1",
|
|
485
|
-
exit: "opacity-0"
|
|
486
|
-
},
|
|
487
|
-
children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
488
|
-
"div",
|
|
489
|
-
{
|
|
490
|
-
className: (0, import_classnames.default)(
|
|
491
|
-
"z-50 inset-0 bg-black/50 transition-opacity duration-300",
|
|
492
|
-
position
|
|
493
|
-
)
|
|
494
|
-
}
|
|
495
|
-
)
|
|
496
|
-
}
|
|
497
|
-
),
|
|
498
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
499
|
-
"div",
|
|
500
|
-
__spreadProps(__spreadValues({
|
|
501
|
-
className: (0, import_classnames.default)("z-50 inset-0 flex", position, placementStyle.container)
|
|
502
|
-
}, underlayProps), {
|
|
503
|
-
children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
504
|
-
import_react_transition_group.CSSTransition,
|
|
505
|
-
{
|
|
506
|
-
in: state.isOpen,
|
|
507
|
-
appear: true,
|
|
508
|
-
nodeRef: ref,
|
|
509
|
-
timeout: { enter: 0, exit: 300 },
|
|
510
|
-
classNames: placementStyle.transition,
|
|
511
|
-
children: (0, import_react2.cloneElement)(
|
|
512
|
-
typeof children === "function" ? children(state.close) : children,
|
|
513
|
-
__spreadValues({
|
|
514
|
-
ref,
|
|
515
|
-
style: {
|
|
516
|
-
transitionProperty: "transform",
|
|
517
|
-
transitionTimingFunction: "cubic-bezier(0.4, 0, 0.2, 1)",
|
|
518
|
-
transitionDuration: "300ms"
|
|
519
|
-
}
|
|
520
|
-
}, modalProps)
|
|
521
|
-
)
|
|
522
|
-
}
|
|
523
|
-
)
|
|
524
|
-
})
|
|
525
|
-
)
|
|
526
|
-
] });
|
|
527
|
-
};
|
|
528
|
-
var useDrawerState = import_react_stately.useOverlayTriggerState;
|
|
529
|
-
|
|
530
|
-
// src/components/TextField/TextField.tsx
|
|
531
|
-
var import_react3 = require("react");
|
|
532
|
-
var import_react_aria2 = require("react-aria");
|
|
533
|
-
var import_classnames2 = __toESM(require("classnames"));
|
|
534
|
-
var import_jsx_runtime4 = require("react/jsx-runtime");
|
|
535
|
-
var TextField = (props) => {
|
|
536
|
-
const { label, validationState = "valid" } = props;
|
|
537
|
-
const ref = (0, import_react3.useRef)(null);
|
|
538
|
-
const { labelProps, inputProps, descriptionProps, errorMessageProps } = (0, import_react_aria2.useTextField)(props, ref);
|
|
539
|
-
const { focusProps, isFocused } = (0, import_react_aria2.useFocusRing)({ isTextInput: true });
|
|
540
|
-
const isValid = validationState === "valid";
|
|
541
|
-
return /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("div", { className: "flex flex-col gap-1.5 w-80", children: [
|
|
542
|
-
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("label", __spreadProps(__spreadValues({}, labelProps), { className: "text-gray-1000 text-sm font-medium", children: label })),
|
|
543
|
-
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
|
|
544
|
-
"input",
|
|
545
|
-
__spreadProps(__spreadValues(__spreadValues({}, inputProps), focusProps), {
|
|
546
|
-
className: (0, import_classnames2.default)(
|
|
547
|
-
"h-12 p-[14px] text-gray-1000 placeholder:text-gray-700 text-md border rounded-md outline-none",
|
|
548
|
-
{
|
|
549
|
-
"border-gray-500": !isFocused && isValid,
|
|
550
|
-
"border-red-500": !isFocused && !isValid,
|
|
551
|
-
"border-blue-300 shadow-input shadow-blue-300/50": isFocused && isValid,
|
|
552
|
-
"border-red-500 shadow-input shadow-red-500/50": isFocused && !isValid
|
|
553
|
-
}
|
|
554
|
-
),
|
|
555
|
-
ref
|
|
556
|
-
})
|
|
557
|
-
),
|
|
558
|
-
props.description && /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("span", __spreadProps(__spreadValues({}, descriptionProps), { className: "text-sm text-gray-700", children: props.description })),
|
|
559
|
-
props.errorMessage && /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("span", __spreadProps(__spreadValues({}, errorMessageProps), { className: "text-sm text-red-700", children: props.errorMessage }))
|
|
560
|
-
] });
|
|
561
|
-
};
|
|
562
|
-
|
|
563
403
|
// src/components/Tabs/Tabs.tsx
|
|
564
404
|
var React3 = __toESM(require("react"));
|
|
565
405
|
var TabsPrimitive = __toESM(require("@radix-ui/react-tabs"));
|
|
566
|
-
var
|
|
406
|
+
var import_jsx_runtime3 = require("react/jsx-runtime");
|
|
567
407
|
var Tabs = TabsPrimitive.Root;
|
|
568
408
|
var TabsList = React3.forwardRef((_a, ref) => {
|
|
569
409
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
570
|
-
return /* @__PURE__ */ (0,
|
|
410
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
571
411
|
TabsPrimitive.List,
|
|
572
412
|
__spreadValues({
|
|
573
413
|
ref,
|
|
@@ -581,7 +421,7 @@ var TabsList = React3.forwardRef((_a, ref) => {
|
|
|
581
421
|
TabsList.displayName = TabsPrimitive.List.displayName;
|
|
582
422
|
var TabsTrigger = React3.forwardRef((_a, ref) => {
|
|
583
423
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
584
|
-
return /* @__PURE__ */ (0,
|
|
424
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
585
425
|
TabsPrimitive.Trigger,
|
|
586
426
|
__spreadValues({
|
|
587
427
|
ref,
|
|
@@ -598,7 +438,7 @@ var TabsTrigger = React3.forwardRef((_a, ref) => {
|
|
|
598
438
|
TabsTrigger.displayName = TabsPrimitive.Trigger.displayName;
|
|
599
439
|
var TabsContent = React3.forwardRef((_a, ref) => {
|
|
600
440
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
601
|
-
return /* @__PURE__ */ (0,
|
|
441
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
602
442
|
TabsPrimitive.Content,
|
|
603
443
|
__spreadValues({
|
|
604
444
|
ref,
|
|
@@ -612,12 +452,12 @@ var TabsContent = React3.forwardRef((_a, ref) => {
|
|
|
612
452
|
TabsContent.displayName = TabsPrimitive.Content.displayName;
|
|
613
453
|
|
|
614
454
|
// src/icons/activity.tsx
|
|
615
|
-
var
|
|
616
|
-
var
|
|
617
|
-
var ActivityIcon = (0,
|
|
455
|
+
var import_react2 = require("react");
|
|
456
|
+
var import_jsx_runtime4 = require("react/jsx-runtime");
|
|
457
|
+
var ActivityIcon = (0, import_react2.forwardRef)(
|
|
618
458
|
function ActivityIcon2(_a, ref) {
|
|
619
459
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
620
|
-
return /* @__PURE__ */ (0,
|
|
460
|
+
return /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
|
|
621
461
|
"svg",
|
|
622
462
|
__spreadProps(__spreadValues({
|
|
623
463
|
ref,
|
|
@@ -628,7 +468,7 @@ var ActivityIcon = (0, import_react4.forwardRef)(
|
|
|
628
468
|
xmlns: "http://www.w3.org/2000/svg",
|
|
629
469
|
className
|
|
630
470
|
}, other), {
|
|
631
|
-
children: /* @__PURE__ */ (0,
|
|
471
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
|
|
632
472
|
"path",
|
|
633
473
|
{
|
|
634
474
|
d: "M22 12H18L15 21L9 3L6 12H2",
|
|
@@ -644,12 +484,12 @@ var ActivityIcon = (0, import_react4.forwardRef)(
|
|
|
644
484
|
);
|
|
645
485
|
|
|
646
486
|
// src/icons/alertCircle.tsx
|
|
647
|
-
var
|
|
648
|
-
var
|
|
649
|
-
var AlertCircleIcon = (0,
|
|
487
|
+
var import_react3 = require("react");
|
|
488
|
+
var import_jsx_runtime5 = require("react/jsx-runtime");
|
|
489
|
+
var AlertCircleIcon = (0, import_react3.forwardRef)(
|
|
650
490
|
function AlertCircleIcon2(_a, ref) {
|
|
651
491
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
652
|
-
return /* @__PURE__ */ (0,
|
|
492
|
+
return /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(
|
|
653
493
|
"svg",
|
|
654
494
|
__spreadProps(__spreadValues({
|
|
655
495
|
ref,
|
|
@@ -661,7 +501,7 @@ var AlertCircleIcon = (0, import_react5.forwardRef)(
|
|
|
661
501
|
className
|
|
662
502
|
}, other), {
|
|
663
503
|
children: [
|
|
664
|
-
duotone && /* @__PURE__ */ (0,
|
|
504
|
+
duotone && /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
|
|
665
505
|
"path",
|
|
666
506
|
{
|
|
667
507
|
opacity: "0.12",
|
|
@@ -669,7 +509,7 @@ var AlertCircleIcon = (0, import_react5.forwardRef)(
|
|
|
669
509
|
fill: "currentColor"
|
|
670
510
|
}
|
|
671
511
|
),
|
|
672
|
-
/* @__PURE__ */ (0,
|
|
512
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
|
|
673
513
|
"path",
|
|
674
514
|
{
|
|
675
515
|
d: "M12 8V12M12 16H12.01M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z",
|
|
@@ -686,12 +526,12 @@ var AlertCircleIcon = (0, import_react5.forwardRef)(
|
|
|
686
526
|
);
|
|
687
527
|
|
|
688
528
|
// src/icons/arrowDown.tsx
|
|
689
|
-
var
|
|
690
|
-
var
|
|
691
|
-
var ArrowDownIcon = (0,
|
|
529
|
+
var import_react4 = require("react");
|
|
530
|
+
var import_jsx_runtime6 = require("react/jsx-runtime");
|
|
531
|
+
var ArrowDownIcon = (0, import_react4.forwardRef)(
|
|
692
532
|
function ArrowDownIcon2(_a, ref) {
|
|
693
533
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
694
|
-
return /* @__PURE__ */ (0,
|
|
534
|
+
return /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
|
|
695
535
|
"svg",
|
|
696
536
|
__spreadProps(__spreadValues({
|
|
697
537
|
ref,
|
|
@@ -702,7 +542,7 @@ var ArrowDownIcon = (0, import_react6.forwardRef)(
|
|
|
702
542
|
xmlns: "http://www.w3.org/2000/svg",
|
|
703
543
|
className
|
|
704
544
|
}, other), {
|
|
705
|
-
children: /* @__PURE__ */ (0,
|
|
545
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
|
|
706
546
|
"path",
|
|
707
547
|
{
|
|
708
548
|
d: "M12 5V19M12 19L19 12M12 19L5 12",
|
|
@@ -718,12 +558,12 @@ var ArrowDownIcon = (0, import_react6.forwardRef)(
|
|
|
718
558
|
);
|
|
719
559
|
|
|
720
560
|
// src/icons/arrowLeft.tsx
|
|
721
|
-
var
|
|
722
|
-
var
|
|
723
|
-
var ArrowLeftIcon = (0,
|
|
561
|
+
var import_react5 = require("react");
|
|
562
|
+
var import_jsx_runtime7 = require("react/jsx-runtime");
|
|
563
|
+
var ArrowLeftIcon = (0, import_react5.forwardRef)(
|
|
724
564
|
function ArrowLeftIcon2(_a, ref) {
|
|
725
565
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
726
|
-
return /* @__PURE__ */ (0,
|
|
566
|
+
return /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
|
|
727
567
|
"svg",
|
|
728
568
|
__spreadProps(__spreadValues({
|
|
729
569
|
ref,
|
|
@@ -734,7 +574,7 @@ var ArrowLeftIcon = (0, import_react7.forwardRef)(
|
|
|
734
574
|
xmlns: "http://www.w3.org/2000/svg",
|
|
735
575
|
className
|
|
736
576
|
}, other), {
|
|
737
|
-
children: /* @__PURE__ */ (0,
|
|
577
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
|
|
738
578
|
"path",
|
|
739
579
|
{
|
|
740
580
|
d: "M19 12H5M5 12L12 19M5 12L12 5",
|
|
@@ -750,12 +590,12 @@ var ArrowLeftIcon = (0, import_react7.forwardRef)(
|
|
|
750
590
|
);
|
|
751
591
|
|
|
752
592
|
// src/icons/arrowRight.tsx
|
|
753
|
-
var
|
|
754
|
-
var
|
|
755
|
-
var ArrowRightIcon = (0,
|
|
593
|
+
var import_react6 = require("react");
|
|
594
|
+
var import_jsx_runtime8 = require("react/jsx-runtime");
|
|
595
|
+
var ArrowRightIcon = (0, import_react6.forwardRef)(
|
|
756
596
|
function ArrowRightIcon2(_a, ref) {
|
|
757
597
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
758
|
-
return /* @__PURE__ */ (0,
|
|
598
|
+
return /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
|
|
759
599
|
"svg",
|
|
760
600
|
__spreadProps(__spreadValues({
|
|
761
601
|
ref,
|
|
@@ -766,7 +606,7 @@ var ArrowRightIcon = (0, import_react8.forwardRef)(
|
|
|
766
606
|
xmlns: "http://www.w3.org/2000/svg",
|
|
767
607
|
className
|
|
768
608
|
}, other), {
|
|
769
|
-
children: /* @__PURE__ */ (0,
|
|
609
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
|
|
770
610
|
"path",
|
|
771
611
|
{
|
|
772
612
|
d: "M5 12H19M19 12L12 5M19 12L12 19",
|
|
@@ -782,12 +622,12 @@ var ArrowRightIcon = (0, import_react8.forwardRef)(
|
|
|
782
622
|
);
|
|
783
623
|
|
|
784
624
|
// src/icons/arrowUp.tsx
|
|
785
|
-
var
|
|
786
|
-
var
|
|
787
|
-
var ArrowUpIcon = (0,
|
|
625
|
+
var import_react7 = require("react");
|
|
626
|
+
var import_jsx_runtime9 = require("react/jsx-runtime");
|
|
627
|
+
var ArrowUpIcon = (0, import_react7.forwardRef)(
|
|
788
628
|
function ArrowUpIcon2(_a, ref) {
|
|
789
629
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
790
|
-
return /* @__PURE__ */ (0,
|
|
630
|
+
return /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
|
|
791
631
|
"svg",
|
|
792
632
|
__spreadProps(__spreadValues({
|
|
793
633
|
ref,
|
|
@@ -798,7 +638,7 @@ var ArrowUpIcon = (0, import_react9.forwardRef)(
|
|
|
798
638
|
xmlns: "http://www.w3.org/2000/svg",
|
|
799
639
|
className
|
|
800
640
|
}, other), {
|
|
801
|
-
children: /* @__PURE__ */ (0,
|
|
641
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
|
|
802
642
|
"path",
|
|
803
643
|
{
|
|
804
644
|
d: "M12 19V5M12 5L5 12M12 5L19 12",
|
|
@@ -814,11 +654,11 @@ var ArrowUpIcon = (0, import_react9.forwardRef)(
|
|
|
814
654
|
);
|
|
815
655
|
|
|
816
656
|
// src/icons/bell.tsx
|
|
817
|
-
var
|
|
818
|
-
var
|
|
819
|
-
var BellIcon = (0,
|
|
657
|
+
var import_react8 = require("react");
|
|
658
|
+
var import_jsx_runtime10 = require("react/jsx-runtime");
|
|
659
|
+
var BellIcon = (0, import_react8.forwardRef)(function BellIcon2(_a, ref) {
|
|
820
660
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
821
|
-
return /* @__PURE__ */ (0,
|
|
661
|
+
return /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)(
|
|
822
662
|
"svg",
|
|
823
663
|
__spreadProps(__spreadValues({
|
|
824
664
|
ref,
|
|
@@ -830,7 +670,7 @@ var BellIcon = (0, import_react10.forwardRef)(function BellIcon2(_a, ref) {
|
|
|
830
670
|
className
|
|
831
671
|
}, other), {
|
|
832
672
|
children: [
|
|
833
|
-
duotone && /* @__PURE__ */ (0,
|
|
673
|
+
duotone && /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
|
|
834
674
|
"path",
|
|
835
675
|
{
|
|
836
676
|
opacity: "0.12",
|
|
@@ -838,7 +678,7 @@ var BellIcon = (0, import_react10.forwardRef)(function BellIcon2(_a, ref) {
|
|
|
838
678
|
fill: "currentColor"
|
|
839
679
|
}
|
|
840
680
|
),
|
|
841
|
-
/* @__PURE__ */ (0,
|
|
681
|
+
/* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
|
|
842
682
|
"path",
|
|
843
683
|
{
|
|
844
684
|
d: "M9.35419 21C10.0593 21.6224 10.9856 22 12 22C13.0145 22 13.9407 21.6224 14.6458 21M18 8C18 6.4087 17.3679 4.88258 16.2427 3.75736C15.1174 2.63214 13.5913 2 12 2C10.4087 2 8.8826 2.63214 7.75738 3.75736C6.63216 4.88258 6.00002 6.4087 6.00002 8C6.00002 11.0902 5.22049 13.206 4.34968 14.6054C3.61515 15.7859 3.24788 16.3761 3.26134 16.5408C3.27626 16.7231 3.31488 16.7926 3.46179 16.9016C3.59448 17 4.19261 17 5.38887 17H18.6112C19.8074 17 20.4056 17 20.5382 16.9016C20.6852 16.7926 20.7238 16.7231 20.7387 16.5408C20.7522 16.3761 20.3849 15.7859 19.6504 14.6054C18.7795 13.206 18 11.0902 18 8Z",
|
|
@@ -854,12 +694,12 @@ var BellIcon = (0, import_react10.forwardRef)(function BellIcon2(_a, ref) {
|
|
|
854
694
|
});
|
|
855
695
|
|
|
856
696
|
// src/icons/calendar.tsx
|
|
857
|
-
var
|
|
858
|
-
var
|
|
859
|
-
var CalendarIcon = (0,
|
|
697
|
+
var import_react9 = require("react");
|
|
698
|
+
var import_jsx_runtime11 = require("react/jsx-runtime");
|
|
699
|
+
var CalendarIcon = (0, import_react9.forwardRef)(
|
|
860
700
|
function CalendarIcon2(_a, ref) {
|
|
861
701
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
862
|
-
return /* @__PURE__ */ (0,
|
|
702
|
+
return /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)(
|
|
863
703
|
"svg",
|
|
864
704
|
__spreadProps(__spreadValues({
|
|
865
705
|
ref,
|
|
@@ -871,7 +711,7 @@ var CalendarIcon = (0, import_react11.forwardRef)(
|
|
|
871
711
|
className
|
|
872
712
|
}, other), {
|
|
873
713
|
children: [
|
|
874
|
-
duotone && /* @__PURE__ */ (0,
|
|
714
|
+
duotone && /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
|
|
875
715
|
"path",
|
|
876
716
|
{
|
|
877
717
|
opacity: "0.12",
|
|
@@ -879,7 +719,7 @@ var CalendarIcon = (0, import_react11.forwardRef)(
|
|
|
879
719
|
fill: "currentColor"
|
|
880
720
|
}
|
|
881
721
|
),
|
|
882
|
-
/* @__PURE__ */ (0,
|
|
722
|
+
/* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
|
|
883
723
|
"path",
|
|
884
724
|
{
|
|
885
725
|
d: "M21 10H3M16 2V6M8 2V6M7.8 22H16.2C17.8802 22 18.7202 22 19.362 21.673C19.9265 21.3854 20.3854 20.9265 20.673 20.362C21 19.7202 21 18.8802 21 17.2V8.8C21 7.11984 21 6.27976 20.673 5.63803C20.3854 5.07354 19.9265 4.6146 19.362 4.32698C18.7202 4 17.8802 4 16.2 4H7.8C6.11984 4 5.27976 4 4.63803 4.32698C4.07354 4.6146 3.6146 5.07354 3.32698 5.63803C3 6.27976 3 7.11984 3 8.8V17.2C3 18.8802 3 19.7202 3.32698 20.362C3.6146 20.9265 4.07354 21.3854 4.63803 21.673C5.27976 22 6.11984 22 7.8 22Z",
|
|
@@ -896,12 +736,12 @@ var CalendarIcon = (0, import_react11.forwardRef)(
|
|
|
896
736
|
);
|
|
897
737
|
|
|
898
738
|
// src/icons/calendarCheck.tsx
|
|
899
|
-
var
|
|
900
|
-
var
|
|
901
|
-
var CalendarCheckIcon = (0,
|
|
739
|
+
var import_react10 = require("react");
|
|
740
|
+
var import_jsx_runtime12 = require("react/jsx-runtime");
|
|
741
|
+
var CalendarCheckIcon = (0, import_react10.forwardRef)(
|
|
902
742
|
function CalendarCheckIcon2(_a, ref) {
|
|
903
743
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
904
|
-
return /* @__PURE__ */ (0,
|
|
744
|
+
return /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)(
|
|
905
745
|
"svg",
|
|
906
746
|
__spreadProps(__spreadValues({
|
|
907
747
|
ref,
|
|
@@ -913,7 +753,7 @@ var CalendarCheckIcon = (0, import_react12.forwardRef)(
|
|
|
913
753
|
className
|
|
914
754
|
}, other), {
|
|
915
755
|
children: [
|
|
916
|
-
duotone && /* @__PURE__ */ (0,
|
|
756
|
+
duotone && /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
|
|
917
757
|
"path",
|
|
918
758
|
{
|
|
919
759
|
opacity: "0.12",
|
|
@@ -921,7 +761,7 @@ var CalendarCheckIcon = (0, import_react12.forwardRef)(
|
|
|
921
761
|
fill: "currentColor"
|
|
922
762
|
}
|
|
923
763
|
),
|
|
924
|
-
/* @__PURE__ */ (0,
|
|
764
|
+
/* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
|
|
925
765
|
"path",
|
|
926
766
|
{
|
|
927
767
|
d: "M21 10H3M16 2V6M8 2V6M9 16L11 18L15.5 13.5M7.8 22H16.2C17.8802 22 18.7202 22 19.362 21.673C19.9265 21.3854 20.3854 20.9265 20.673 20.362C21 19.7202 21 18.8802 21 17.2V8.8C21 7.11984 21 6.27976 20.673 5.63803C20.3854 5.07354 19.9265 4.6146 19.362 4.32698C18.7202 4 17.8802 4 16.2 4H7.8C6.11984 4 5.27976 4 4.63803 4.32698C4.07354 4.6146 3.6146 5.07354 3.32698 5.63803C3 6.27976 3 7.11984 3 8.8V17.2C3 18.8802 3 19.7202 3.32698 20.362C3.6146 20.9265 4.07354 21.3854 4.63803 21.673C5.27976 22 6.11984 22 7.8 22Z",
|
|
@@ -938,12 +778,12 @@ var CalendarCheckIcon = (0, import_react12.forwardRef)(
|
|
|
938
778
|
);
|
|
939
779
|
|
|
940
780
|
// src/icons/calendarPlus.tsx
|
|
941
|
-
var
|
|
942
|
-
var
|
|
943
|
-
var CalendarPlusIcon = (0,
|
|
781
|
+
var import_react11 = require("react");
|
|
782
|
+
var import_jsx_runtime13 = require("react/jsx-runtime");
|
|
783
|
+
var CalendarPlusIcon = (0, import_react11.forwardRef)(
|
|
944
784
|
function CalendarPlusIcon2(_a, ref) {
|
|
945
785
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
946
|
-
return /* @__PURE__ */ (0,
|
|
786
|
+
return /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)(
|
|
947
787
|
"svg",
|
|
948
788
|
__spreadProps(__spreadValues({
|
|
949
789
|
ref,
|
|
@@ -955,7 +795,7 @@ var CalendarPlusIcon = (0, import_react13.forwardRef)(
|
|
|
955
795
|
className
|
|
956
796
|
}, other), {
|
|
957
797
|
children: [
|
|
958
|
-
duotone && /* @__PURE__ */ (0,
|
|
798
|
+
duotone && /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
|
|
959
799
|
"path",
|
|
960
800
|
{
|
|
961
801
|
opacity: "0.12",
|
|
@@ -963,7 +803,7 @@ var CalendarPlusIcon = (0, import_react13.forwardRef)(
|
|
|
963
803
|
fill: "currentColor"
|
|
964
804
|
}
|
|
965
805
|
),
|
|
966
|
-
/* @__PURE__ */ (0,
|
|
806
|
+
/* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
|
|
967
807
|
"path",
|
|
968
808
|
{
|
|
969
809
|
d: "M21 8H3M16 2V5M8 2V5M12 18V12M9 15H15M7.8 22H16.2C17.8802 22 18.7202 22 19.362 21.673C19.9265 21.3854 20.3854 20.9265 20.673 20.362C21 19.7202 21 18.8802 21 17.2V8.8C21 7.11984 21 6.27976 20.673 5.63803C20.3854 5.07354 19.9265 4.6146 19.362 4.32698C18.7202 4 17.8802 4 16.2 4H7.8C6.11984 4 5.27976 4 4.63803 4.32698C4.07354 4.6146 3.6146 5.07354 3.32698 5.63803C3 6.27976 3 7.11984 3 8.8V17.2C3 18.8802 3 19.7202 3.32698 20.362C3.6146 20.9265 4.07354 21.3854 4.63803 21.673C5.27976 22 6.11984 22 7.8 22Z",
|
|
@@ -980,12 +820,12 @@ var CalendarPlusIcon = (0, import_react13.forwardRef)(
|
|
|
980
820
|
);
|
|
981
821
|
|
|
982
822
|
// src/icons/camera.tsx
|
|
983
|
-
var
|
|
984
|
-
var
|
|
985
|
-
var CameraIcon = (0,
|
|
823
|
+
var import_react12 = require("react");
|
|
824
|
+
var import_jsx_runtime14 = require("react/jsx-runtime");
|
|
825
|
+
var CameraIcon = (0, import_react12.forwardRef)(
|
|
986
826
|
function CameraIcon2(_a, ref) {
|
|
987
827
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
988
|
-
return /* @__PURE__ */ (0,
|
|
828
|
+
return /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)(
|
|
989
829
|
"svg",
|
|
990
830
|
__spreadProps(__spreadValues({
|
|
991
831
|
ref,
|
|
@@ -997,7 +837,7 @@ var CameraIcon = (0, import_react14.forwardRef)(
|
|
|
997
837
|
className
|
|
998
838
|
}, other), {
|
|
999
839
|
children: [
|
|
1000
|
-
duotone && /* @__PURE__ */ (0,
|
|
840
|
+
duotone && /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
|
|
1001
841
|
"path",
|
|
1002
842
|
{
|
|
1003
843
|
opacity: "0.12",
|
|
@@ -1005,7 +845,7 @@ var CameraIcon = (0, import_react14.forwardRef)(
|
|
|
1005
845
|
fill: "currentColor"
|
|
1006
846
|
}
|
|
1007
847
|
),
|
|
1008
|
-
/* @__PURE__ */ (0,
|
|
848
|
+
/* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
|
|
1009
849
|
"path",
|
|
1010
850
|
{
|
|
1011
851
|
d: "M2 8.37722C2 8.0269 2 7.85174 2.01462 7.70421C2.1556 6.28127 3.28127 5.1556 4.70421 5.01462C4.85174 5 5.03636 5 5.40558 5C5.54785 5 5.61899 5 5.67939 4.99634C6.45061 4.94963 7.12595 4.46288 7.41414 3.746C7.43671 3.68986 7.45781 3.62657 7.5 3.5C7.54219 3.37343 7.56329 3.31014 7.58586 3.254C7.87405 2.53712 8.54939 2.05037 9.32061 2.00366C9.38101 2 9.44772 2 9.58114 2H14.4189C14.5523 2 14.619 2 14.6794 2.00366C15.4506 2.05037 16.126 2.53712 16.4141 3.254C16.4367 3.31014 16.4578 3.37343 16.5 3.5C16.5422 3.62657 16.5633 3.68986 16.5859 3.746C16.874 4.46288 17.5494 4.94963 18.3206 4.99634C18.381 5 18.4521 5 18.5944 5C18.9636 5 19.1483 5 19.2958 5.01462C20.7187 5.1556 21.8444 6.28127 21.9854 7.70421C22 7.85174 22 8.0269 22 8.37722V16.2C22 17.8802 22 18.7202 21.673 19.362C21.3854 19.9265 20.9265 20.3854 20.362 20.673C19.7202 21 18.8802 21 17.2 21H6.8C5.11984 21 4.27976 21 3.63803 20.673C3.07354 20.3854 2.6146 19.9265 2.32698 19.362C2 18.7202 2 17.8802 2 16.2V8.37722Z",
|
|
@@ -1016,7 +856,7 @@ var CameraIcon = (0, import_react14.forwardRef)(
|
|
|
1016
856
|
}
|
|
1017
857
|
),
|
|
1018
858
|
",",
|
|
1019
|
-
/* @__PURE__ */ (0,
|
|
859
|
+
/* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
|
|
1020
860
|
"path",
|
|
1021
861
|
{
|
|
1022
862
|
d: "M12 16.5C14.2091 16.5 16 14.7091 16 12.5C16 10.2909 14.2091 8.5 12 8.5C9.79086 8.5 8 10.2909 8 12.5C8 14.7091 9.79086 16.5 12 16.5Z",
|
|
@@ -1033,12 +873,12 @@ var CameraIcon = (0, import_react14.forwardRef)(
|
|
|
1033
873
|
);
|
|
1034
874
|
|
|
1035
875
|
// src/icons/cameraOff.tsx
|
|
1036
|
-
var
|
|
1037
|
-
var
|
|
1038
|
-
var CameraOffIcon = (0,
|
|
876
|
+
var import_react13 = require("react");
|
|
877
|
+
var import_jsx_runtime15 = require("react/jsx-runtime");
|
|
878
|
+
var CameraOffIcon = (0, import_react13.forwardRef)(
|
|
1039
879
|
function CameraOffIcon2(_a, ref) {
|
|
1040
880
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1041
|
-
return /* @__PURE__ */ (0,
|
|
881
|
+
return /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)(
|
|
1042
882
|
"svg",
|
|
1043
883
|
__spreadProps(__spreadValues({
|
|
1044
884
|
ref,
|
|
@@ -1050,7 +890,7 @@ var CameraOffIcon = (0, import_react15.forwardRef)(
|
|
|
1050
890
|
className
|
|
1051
891
|
}, other), {
|
|
1052
892
|
children: [
|
|
1053
|
-
duotone && /* @__PURE__ */ (0,
|
|
893
|
+
duotone && /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
|
|
1054
894
|
"path",
|
|
1055
895
|
{
|
|
1056
896
|
opacity: "0.12",
|
|
@@ -1058,7 +898,7 @@ var CameraOffIcon = (0, import_react15.forwardRef)(
|
|
|
1058
898
|
fill: "currentColor"
|
|
1059
899
|
}
|
|
1060
900
|
),
|
|
1061
|
-
/* @__PURE__ */ (0,
|
|
901
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
|
|
1062
902
|
"path",
|
|
1063
903
|
{
|
|
1064
904
|
d: "M5 5H5.41886C5.55228 5 5.61899 5 5.67939 4.99634C6.45061 4.94963 7.12595 4.46288 7.41414 3.746C7.43671 3.68986 7.45781 3.62657 7.5 3.5C7.54219 3.37343 7.56329 3.31014 7.58586 3.254C7.87405 2.53712 8.54939 2.05037 9.32061 2.00366C9.38101 2 9.44772 2 9.58114 2H14.4189C14.5523 2 14.619 2 14.6794 2.00366C15.4506 2.05037 16.126 2.53712 16.4141 3.254C16.4367 3.31014 16.4578 3.37343 16.5 3.5C16.5422 3.62657 16.5633 3.68986 16.5859 3.746C16.874 4.46288 17.5494 4.94963 18.3206 4.99634C18.381 5 18.4521 5 18.5944 5C18.9636 5 19.1483 5 19.2958 5.01462C20.7187 5.1556 21.8444 6.28127 21.9854 7.70421C22 7.85174 22 8.0269 22 8.37722V18C22 19.0849 21.4241 20.0353 20.5613 20.5622M15.0641 15.0714C15.6482 14.3761 16 13.4791 16 12.5C16 10.2909 14.2091 8.5 12 8.5C11.0216 8.5 10.1252 8.8513 9.43012 9.43464M22 22L2 2M2 7.5V16.2C2 17.8802 2 18.7202 2.32698 19.362C2.6146 19.9265 3.07354 20.3854 3.63803 20.673C4.27976 21 5.11984 21 6.8 21H15.5M12 16.5C9.79086 16.5 8 14.7091 8 12.5",
|
|
@@ -1075,12 +915,12 @@ var CameraOffIcon = (0, import_react15.forwardRef)(
|
|
|
1075
915
|
);
|
|
1076
916
|
|
|
1077
917
|
// src/icons/checkCircle.tsx
|
|
1078
|
-
var
|
|
1079
|
-
var
|
|
1080
|
-
var CheckCircleIcon = (0,
|
|
918
|
+
var import_react14 = require("react");
|
|
919
|
+
var import_jsx_runtime16 = require("react/jsx-runtime");
|
|
920
|
+
var CheckCircleIcon = (0, import_react14.forwardRef)(
|
|
1081
921
|
function CheckCircleIcon2(_a, ref) {
|
|
1082
922
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1083
|
-
return /* @__PURE__ */ (0,
|
|
923
|
+
return /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)(
|
|
1084
924
|
"svg",
|
|
1085
925
|
__spreadProps(__spreadValues({
|
|
1086
926
|
ref,
|
|
@@ -1092,7 +932,7 @@ var CheckCircleIcon = (0, import_react16.forwardRef)(
|
|
|
1092
932
|
className
|
|
1093
933
|
}, other), {
|
|
1094
934
|
children: [
|
|
1095
|
-
duotone && /* @__PURE__ */ (0,
|
|
935
|
+
duotone && /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
|
|
1096
936
|
"path",
|
|
1097
937
|
{
|
|
1098
938
|
opacity: "0.12",
|
|
@@ -1100,7 +940,7 @@ var CheckCircleIcon = (0, import_react16.forwardRef)(
|
|
|
1100
940
|
fill: "currentColor"
|
|
1101
941
|
}
|
|
1102
942
|
),
|
|
1103
|
-
/* @__PURE__ */ (0,
|
|
943
|
+
/* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
|
|
1104
944
|
"path",
|
|
1105
945
|
{
|
|
1106
946
|
d: "M7.5 12L10.5 15L16.5 9M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z",
|
|
@@ -1117,12 +957,12 @@ var CheckCircleIcon = (0, import_react16.forwardRef)(
|
|
|
1117
957
|
);
|
|
1118
958
|
|
|
1119
959
|
// src/icons/chevronDown.tsx
|
|
1120
|
-
var
|
|
1121
|
-
var
|
|
1122
|
-
var ChevronDownIcon = (0,
|
|
960
|
+
var import_react15 = require("react");
|
|
961
|
+
var import_jsx_runtime17 = require("react/jsx-runtime");
|
|
962
|
+
var ChevronDownIcon = (0, import_react15.forwardRef)(
|
|
1123
963
|
function ChevronDownIcon2(_a, ref) {
|
|
1124
964
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1125
|
-
return /* @__PURE__ */ (0,
|
|
965
|
+
return /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
1126
966
|
"svg",
|
|
1127
967
|
__spreadProps(__spreadValues({
|
|
1128
968
|
ref,
|
|
@@ -1133,7 +973,7 @@ var ChevronDownIcon = (0, import_react17.forwardRef)(
|
|
|
1133
973
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1134
974
|
className
|
|
1135
975
|
}, other), {
|
|
1136
|
-
children: /* @__PURE__ */ (0,
|
|
976
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
1137
977
|
"path",
|
|
1138
978
|
{
|
|
1139
979
|
d: "M6 9L12 15L18 9",
|
|
@@ -1149,12 +989,12 @@ var ChevronDownIcon = (0, import_react17.forwardRef)(
|
|
|
1149
989
|
);
|
|
1150
990
|
|
|
1151
991
|
// src/icons/chevronLeft.tsx
|
|
1152
|
-
var
|
|
1153
|
-
var
|
|
1154
|
-
var ChevronLeftIcon = (0,
|
|
992
|
+
var import_react16 = require("react");
|
|
993
|
+
var import_jsx_runtime18 = require("react/jsx-runtime");
|
|
994
|
+
var ChevronLeftIcon = (0, import_react16.forwardRef)(
|
|
1155
995
|
function ChevronLeftIcon2(_a, ref) {
|
|
1156
996
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1157
|
-
return /* @__PURE__ */ (0,
|
|
997
|
+
return /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
|
|
1158
998
|
"svg",
|
|
1159
999
|
__spreadProps(__spreadValues({
|
|
1160
1000
|
ref,
|
|
@@ -1165,7 +1005,7 @@ var ChevronLeftIcon = (0, import_react18.forwardRef)(
|
|
|
1165
1005
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1166
1006
|
className
|
|
1167
1007
|
}, other), {
|
|
1168
|
-
children: /* @__PURE__ */ (0,
|
|
1008
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
|
|
1169
1009
|
"path",
|
|
1170
1010
|
{
|
|
1171
1011
|
d: "M15 18L9 12L15 6",
|
|
@@ -1181,12 +1021,12 @@ var ChevronLeftIcon = (0, import_react18.forwardRef)(
|
|
|
1181
1021
|
);
|
|
1182
1022
|
|
|
1183
1023
|
// src/icons/chevronRight.tsx
|
|
1184
|
-
var
|
|
1185
|
-
var
|
|
1186
|
-
var ChevronRightIcon = (0,
|
|
1024
|
+
var import_react17 = require("react");
|
|
1025
|
+
var import_jsx_runtime19 = require("react/jsx-runtime");
|
|
1026
|
+
var ChevronRightIcon = (0, import_react17.forwardRef)(
|
|
1187
1027
|
function ChevronRightIcon2(_a, ref) {
|
|
1188
1028
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1189
|
-
return /* @__PURE__ */ (0,
|
|
1029
|
+
return /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
1190
1030
|
"svg",
|
|
1191
1031
|
__spreadProps(__spreadValues({
|
|
1192
1032
|
ref,
|
|
@@ -1197,7 +1037,7 @@ var ChevronRightIcon = (0, import_react19.forwardRef)(
|
|
|
1197
1037
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1198
1038
|
className
|
|
1199
1039
|
}, other), {
|
|
1200
|
-
children: /* @__PURE__ */ (0,
|
|
1040
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
1201
1041
|
"path",
|
|
1202
1042
|
{
|
|
1203
1043
|
d: "M9 18L15 12L9 6",
|
|
@@ -1213,12 +1053,12 @@ var ChevronRightIcon = (0, import_react19.forwardRef)(
|
|
|
1213
1053
|
);
|
|
1214
1054
|
|
|
1215
1055
|
// src/icons/chevronUp.tsx
|
|
1216
|
-
var
|
|
1217
|
-
var
|
|
1218
|
-
var ChevronUpIcon = (0,
|
|
1056
|
+
var import_react18 = require("react");
|
|
1057
|
+
var import_jsx_runtime20 = require("react/jsx-runtime");
|
|
1058
|
+
var ChevronUpIcon = (0, import_react18.forwardRef)(
|
|
1219
1059
|
function ChevronUpIcon2(_a, ref) {
|
|
1220
1060
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1221
|
-
return /* @__PURE__ */ (0,
|
|
1061
|
+
return /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
|
|
1222
1062
|
"svg",
|
|
1223
1063
|
__spreadProps(__spreadValues({
|
|
1224
1064
|
ref,
|
|
@@ -1229,7 +1069,7 @@ var ChevronUpIcon = (0, import_react20.forwardRef)(
|
|
|
1229
1069
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1230
1070
|
className
|
|
1231
1071
|
}, other), {
|
|
1232
|
-
children: /* @__PURE__ */ (0,
|
|
1072
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
|
|
1233
1073
|
"path",
|
|
1234
1074
|
{
|
|
1235
1075
|
d: "M18 15L12 9L6 15",
|
|
@@ -1245,11 +1085,11 @@ var ChevronUpIcon = (0, import_react20.forwardRef)(
|
|
|
1245
1085
|
);
|
|
1246
1086
|
|
|
1247
1087
|
// src/icons/copy.tsx
|
|
1248
|
-
var
|
|
1249
|
-
var
|
|
1250
|
-
var CopyIcon = (0,
|
|
1088
|
+
var import_react19 = require("react");
|
|
1089
|
+
var import_jsx_runtime21 = require("react/jsx-runtime");
|
|
1090
|
+
var CopyIcon = (0, import_react19.forwardRef)(function CopyIcon2(_a, ref) {
|
|
1251
1091
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1252
|
-
return /* @__PURE__ */ (0,
|
|
1092
|
+
return /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)(
|
|
1253
1093
|
"svg",
|
|
1254
1094
|
__spreadProps(__spreadValues({
|
|
1255
1095
|
ref,
|
|
@@ -1261,7 +1101,7 @@ var CopyIcon = (0, import_react21.forwardRef)(function CopyIcon2(_a, ref) {
|
|
|
1261
1101
|
className
|
|
1262
1102
|
}, other), {
|
|
1263
1103
|
children: [
|
|
1264
|
-
duotone && /* @__PURE__ */ (0,
|
|
1104
|
+
duotone && /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
|
|
1265
1105
|
"path",
|
|
1266
1106
|
{
|
|
1267
1107
|
opacity: "0.12",
|
|
@@ -1269,7 +1109,7 @@ var CopyIcon = (0, import_react21.forwardRef)(function CopyIcon2(_a, ref) {
|
|
|
1269
1109
|
fill: "currentColor"
|
|
1270
1110
|
}
|
|
1271
1111
|
),
|
|
1272
|
-
/* @__PURE__ */ (0,
|
|
1112
|
+
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
|
|
1273
1113
|
"path",
|
|
1274
1114
|
{
|
|
1275
1115
|
d: "M8 16V18.8C8 19.9201 8 20.4802 8.21799 20.908C8.40973 21.2843 8.71569 21.5903 9.09202 21.782C9.51984 22 10.0799 22 11.2 22H18.8C19.9201 22 20.4802 22 20.908 21.782C21.2843 21.5903 21.5903 21.2843 21.782 20.908C22 20.4802 22 19.9201 22 18.8V11.2C22 10.0799 22 9.51984 21.782 9.09202C21.5903 8.71569 21.2843 8.40973 20.908 8.21799C20.4802 8 19.9201 8 18.8 8H16M5.2 16H12.8C13.9201 16 14.4802 16 14.908 15.782C15.2843 15.5903 15.5903 15.2843 15.782 14.908C16 14.4802 16 13.9201 16 12.8V5.2C16 4.0799 16 3.51984 15.782 3.09202C15.5903 2.71569 15.2843 2.40973 14.908 2.21799C14.4802 2 13.9201 2 12.8 2H5.2C4.0799 2 3.51984 2 3.09202 2.21799C2.71569 2.40973 2.40973 2.71569 2.21799 3.09202C2 3.51984 2 4.07989 2 5.2V12.8C2 13.9201 2 14.4802 2.21799 14.908C2.40973 15.2843 2.71569 15.5903 3.09202 15.782C3.51984 16 4.07989 16 5.2 16Z",
|
|
@@ -1285,12 +1125,12 @@ var CopyIcon = (0, import_react21.forwardRef)(function CopyIcon2(_a, ref) {
|
|
|
1285
1125
|
});
|
|
1286
1126
|
|
|
1287
1127
|
// src/icons/cursorClick.tsx
|
|
1288
|
-
var
|
|
1289
|
-
var
|
|
1290
|
-
var CursorClickIcon = (0,
|
|
1128
|
+
var import_react20 = require("react");
|
|
1129
|
+
var import_jsx_runtime22 = require("react/jsx-runtime");
|
|
1130
|
+
var CursorClickIcon = (0, import_react20.forwardRef)(
|
|
1291
1131
|
function CursorClickIcon2(_a, ref) {
|
|
1292
1132
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1293
|
-
return /* @__PURE__ */ (0,
|
|
1133
|
+
return /* @__PURE__ */ (0, import_jsx_runtime22.jsxs)(
|
|
1294
1134
|
"svg",
|
|
1295
1135
|
__spreadProps(__spreadValues({
|
|
1296
1136
|
ref,
|
|
@@ -1302,7 +1142,7 @@ var CursorClickIcon = (0, import_react22.forwardRef)(
|
|
|
1302
1142
|
className
|
|
1303
1143
|
}, other), {
|
|
1304
1144
|
children: [
|
|
1305
|
-
duotone && /* @__PURE__ */ (0,
|
|
1145
|
+
duotone && /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|
|
1306
1146
|
"path",
|
|
1307
1147
|
{
|
|
1308
1148
|
opacity: "0.12",
|
|
@@ -1310,7 +1150,7 @@ var CursorClickIcon = (0, import_react22.forwardRef)(
|
|
|
1310
1150
|
fill: "currentColor"
|
|
1311
1151
|
}
|
|
1312
1152
|
),
|
|
1313
|
-
/* @__PURE__ */ (0,
|
|
1153
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|
|
1314
1154
|
"path",
|
|
1315
1155
|
{
|
|
1316
1156
|
d: "M9 3.5V2M5.06066 5.06066L4 4M5.06066 13L4 14.0607M13 5.06066L14.0607 4M3.5 9H2M15.8645 16.1896L13.3727 20.817C13.0881 21.3457 12.9457 21.61 12.7745 21.6769C12.6259 21.7349 12.4585 21.7185 12.324 21.6328C12.1689 21.534 12.0806 21.2471 11.9038 20.6733L8.44519 9.44525C8.3008 8.97651 8.2286 8.74213 8.28669 8.58383C8.33729 8.44595 8.44595 8.33729 8.58383 8.2867C8.74213 8.22861 8.9765 8.3008 9.44525 8.44519L20.6732 11.9038C21.247 12.0806 21.5339 12.169 21.6327 12.324C21.7185 12.4586 21.7348 12.6259 21.6768 12.7745C21.61 12.9458 21.3456 13.0881 20.817 13.3728L16.1896 15.8645C16.111 15.9068 16.0717 15.9279 16.0374 15.9551C16.0068 15.9792 15.9792 16.0068 15.9551 16.0374C15.9279 16.0717 15.9068 16.111 15.8645 16.1896Z",
|
|
@@ -1327,12 +1167,12 @@ var CursorClickIcon = (0, import_react22.forwardRef)(
|
|
|
1327
1167
|
);
|
|
1328
1168
|
|
|
1329
1169
|
// src/icons/download.tsx
|
|
1330
|
-
var
|
|
1331
|
-
var
|
|
1332
|
-
var DownloadIcon = (0,
|
|
1170
|
+
var import_react21 = require("react");
|
|
1171
|
+
var import_jsx_runtime23 = require("react/jsx-runtime");
|
|
1172
|
+
var DownloadIcon = (0, import_react21.forwardRef)(
|
|
1333
1173
|
function DownloadIcon2(_a, ref) {
|
|
1334
1174
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1335
|
-
return /* @__PURE__ */ (0,
|
|
1175
|
+
return /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)(
|
|
1336
1176
|
"svg",
|
|
1337
1177
|
__spreadProps(__spreadValues({
|
|
1338
1178
|
ref,
|
|
@@ -1344,7 +1184,7 @@ var DownloadIcon = (0, import_react23.forwardRef)(
|
|
|
1344
1184
|
className
|
|
1345
1185
|
}, other), {
|
|
1346
1186
|
children: [
|
|
1347
|
-
duotone && /* @__PURE__ */ (0,
|
|
1187
|
+
duotone && /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
|
|
1348
1188
|
"path",
|
|
1349
1189
|
{
|
|
1350
1190
|
opacity: "0.12",
|
|
@@ -1352,7 +1192,7 @@ var DownloadIcon = (0, import_react23.forwardRef)(
|
|
|
1352
1192
|
fill: "currentColor"
|
|
1353
1193
|
}
|
|
1354
1194
|
),
|
|
1355
|
-
/* @__PURE__ */ (0,
|
|
1195
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
|
|
1356
1196
|
"path",
|
|
1357
1197
|
{
|
|
1358
1198
|
d: "M8 12L12 16M12 16L16 12M12 16V8M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z",
|
|
@@ -1369,11 +1209,11 @@ var DownloadIcon = (0, import_react23.forwardRef)(
|
|
|
1369
1209
|
);
|
|
1370
1210
|
|
|
1371
1211
|
// src/icons/edit.tsx
|
|
1372
|
-
var
|
|
1373
|
-
var
|
|
1374
|
-
var EditIcon = (0,
|
|
1212
|
+
var import_react22 = require("react");
|
|
1213
|
+
var import_jsx_runtime24 = require("react/jsx-runtime");
|
|
1214
|
+
var EditIcon = (0, import_react22.forwardRef)(function EditIcon2(_a, ref) {
|
|
1375
1215
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1376
|
-
return /* @__PURE__ */ (0,
|
|
1216
|
+
return /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)(
|
|
1377
1217
|
"svg",
|
|
1378
1218
|
__spreadProps(__spreadValues({
|
|
1379
1219
|
ref,
|
|
@@ -1385,7 +1225,7 @@ var EditIcon = (0, import_react24.forwardRef)(function EditIcon2(_a, ref) {
|
|
|
1385
1225
|
className
|
|
1386
1226
|
}, other), {
|
|
1387
1227
|
children: [
|
|
1388
|
-
duotone && /* @__PURE__ */ (0,
|
|
1228
|
+
duotone && /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
|
|
1389
1229
|
"path",
|
|
1390
1230
|
{
|
|
1391
1231
|
opacity: "0.12",
|
|
@@ -1393,7 +1233,7 @@ var EditIcon = (0, import_react24.forwardRef)(function EditIcon2(_a, ref) {
|
|
|
1393
1233
|
fill: "currentColor"
|
|
1394
1234
|
}
|
|
1395
1235
|
),
|
|
1396
|
-
/* @__PURE__ */ (0,
|
|
1236
|
+
/* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
|
|
1397
1237
|
"path",
|
|
1398
1238
|
{
|
|
1399
1239
|
d: "M11 3.99998H6.8C5.11984 3.99998 4.27976 3.99998 3.63803 4.32696C3.07354 4.61458 2.6146 5.07353 2.32698 5.63801C2 6.27975 2 7.11983 2 8.79998V17.2C2 18.8801 2 19.7202 2.32698 20.362C2.6146 20.9264 3.07354 21.3854 3.63803 21.673C4.27976 22 5.11984 22 6.8 22H15.2C16.8802 22 17.7202 22 18.362 21.673C18.9265 21.3854 19.3854 20.9264 19.673 20.362C20 19.7202 20 18.8801 20 17.2V13M7.99997 16H9.67452C10.1637 16 10.4083 16 10.6385 15.9447C10.8425 15.8957 11.0376 15.8149 11.2166 15.7053C11.4184 15.5816 11.5914 15.4086 11.9373 15.0627L21.5 5.49998C22.3284 4.67156 22.3284 3.32841 21.5 2.49998C20.6716 1.67156 19.3284 1.67155 18.5 2.49998L8.93723 12.0627C8.59133 12.4086 8.41838 12.5816 8.29469 12.7834C8.18504 12.9624 8.10423 13.1574 8.05523 13.3615C7.99997 13.5917 7.99997 13.8363 7.99997 14.3255V16Z",
|
|
@@ -1409,12 +1249,12 @@ var EditIcon = (0, import_react24.forwardRef)(function EditIcon2(_a, ref) {
|
|
|
1409
1249
|
});
|
|
1410
1250
|
|
|
1411
1251
|
// src/icons/expand.tsx
|
|
1412
|
-
var
|
|
1413
|
-
var
|
|
1414
|
-
var ExpandIcon = (0,
|
|
1252
|
+
var import_react23 = require("react");
|
|
1253
|
+
var import_jsx_runtime25 = require("react/jsx-runtime");
|
|
1254
|
+
var ExpandIcon = (0, import_react23.forwardRef)(
|
|
1415
1255
|
function ExpandIcon2(_a, ref) {
|
|
1416
1256
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1417
|
-
return /* @__PURE__ */ (0,
|
|
1257
|
+
return /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
|
|
1418
1258
|
"svg",
|
|
1419
1259
|
__spreadProps(__spreadValues({
|
|
1420
1260
|
ref,
|
|
@@ -1425,7 +1265,7 @@ var ExpandIcon = (0, import_react25.forwardRef)(
|
|
|
1425
1265
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1426
1266
|
className
|
|
1427
1267
|
}, other), {
|
|
1428
|
-
children: /* @__PURE__ */ (0,
|
|
1268
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
|
|
1429
1269
|
"path",
|
|
1430
1270
|
{
|
|
1431
1271
|
d: "M16 8L21 3M21 3H16M21 3V8M8 8L3 3M3 3L3 8M3 3L8 3M8 16L3 21M3 21H8M3 21L3 16M16 16L21 21M21 21V16M21 21H16",
|
|
@@ -1441,12 +1281,12 @@ var ExpandIcon = (0, import_react25.forwardRef)(
|
|
|
1441
1281
|
);
|
|
1442
1282
|
|
|
1443
1283
|
// src/icons/flipBackward.tsx
|
|
1444
|
-
var
|
|
1445
|
-
var
|
|
1446
|
-
var FlipBackwardIcon = (0,
|
|
1284
|
+
var import_react24 = require("react");
|
|
1285
|
+
var import_jsx_runtime26 = require("react/jsx-runtime");
|
|
1286
|
+
var FlipBackwardIcon = (0, import_react24.forwardRef)(
|
|
1447
1287
|
function FlipBackwardIcon2(_a, ref) {
|
|
1448
1288
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1449
|
-
return /* @__PURE__ */ (0,
|
|
1289
|
+
return /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
|
|
1450
1290
|
"svg",
|
|
1451
1291
|
__spreadProps(__spreadValues({
|
|
1452
1292
|
ref,
|
|
@@ -1457,7 +1297,7 @@ var FlipBackwardIcon = (0, import_react26.forwardRef)(
|
|
|
1457
1297
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1458
1298
|
className
|
|
1459
1299
|
}, other), {
|
|
1460
|
-
children: /* @__PURE__ */ (0,
|
|
1300
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
|
|
1461
1301
|
"path",
|
|
1462
1302
|
{
|
|
1463
1303
|
d: "M3 9H16.5C18.9853 9 21 11.0147 21 13.5C21 15.9853 18.9853 18 16.5 18H12M3 9L7 5M3 9L7 13",
|
|
@@ -1473,12 +1313,12 @@ var FlipBackwardIcon = (0, import_react26.forwardRef)(
|
|
|
1473
1313
|
);
|
|
1474
1314
|
|
|
1475
1315
|
// src/icons/flipForward.tsx
|
|
1476
|
-
var
|
|
1477
|
-
var
|
|
1478
|
-
var FlipForwardIcon = (0,
|
|
1316
|
+
var import_react25 = require("react");
|
|
1317
|
+
var import_jsx_runtime27 = require("react/jsx-runtime");
|
|
1318
|
+
var FlipForwardIcon = (0, import_react25.forwardRef)(
|
|
1479
1319
|
function FlipForwardIcon2(_a, ref) {
|
|
1480
1320
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1481
|
-
return /* @__PURE__ */ (0,
|
|
1321
|
+
return /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
|
|
1482
1322
|
"svg",
|
|
1483
1323
|
__spreadProps(__spreadValues({
|
|
1484
1324
|
ref,
|
|
@@ -1489,7 +1329,7 @@ var FlipForwardIcon = (0, import_react27.forwardRef)(
|
|
|
1489
1329
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1490
1330
|
className
|
|
1491
1331
|
}, other), {
|
|
1492
|
-
children: /* @__PURE__ */ (0,
|
|
1332
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
|
|
1493
1333
|
"path",
|
|
1494
1334
|
{
|
|
1495
1335
|
d: "M21 9H7.5C5.01472 9 3 11.0147 3 13.5C3 15.9853 5.01472 18 7.5 18H12M21 9L17 5M21 9L17 13",
|
|
@@ -1505,12 +1345,12 @@ var FlipForwardIcon = (0, import_react27.forwardRef)(
|
|
|
1505
1345
|
);
|
|
1506
1346
|
|
|
1507
1347
|
// src/icons/helpCircle.tsx
|
|
1508
|
-
var
|
|
1509
|
-
var
|
|
1510
|
-
var HelpCircleIcon = (0,
|
|
1348
|
+
var import_react26 = require("react");
|
|
1349
|
+
var import_jsx_runtime28 = require("react/jsx-runtime");
|
|
1350
|
+
var HelpCircleIcon = (0, import_react26.forwardRef)(
|
|
1511
1351
|
function HelpCircleIcon2(_a, ref) {
|
|
1512
1352
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1513
|
-
return /* @__PURE__ */ (0,
|
|
1353
|
+
return /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)(
|
|
1514
1354
|
"svg",
|
|
1515
1355
|
__spreadProps(__spreadValues({
|
|
1516
1356
|
ref,
|
|
@@ -1522,7 +1362,7 @@ var HelpCircleIcon = (0, import_react28.forwardRef)(
|
|
|
1522
1362
|
className
|
|
1523
1363
|
}, other), {
|
|
1524
1364
|
children: [
|
|
1525
|
-
duotone && /* @__PURE__ */ (0,
|
|
1365
|
+
duotone && /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
|
|
1526
1366
|
"path",
|
|
1527
1367
|
{
|
|
1528
1368
|
opacity: "0.12",
|
|
@@ -1530,7 +1370,7 @@ var HelpCircleIcon = (0, import_react28.forwardRef)(
|
|
|
1530
1370
|
fill: "currentColor"
|
|
1531
1371
|
}
|
|
1532
1372
|
),
|
|
1533
|
-
/* @__PURE__ */ (0,
|
|
1373
|
+
/* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
|
|
1534
1374
|
"path",
|
|
1535
1375
|
{
|
|
1536
1376
|
d: "M9.09 9C9.3251 8.33167 9.78915 7.76811 10.4 7.40913C11.0108 7.05016 11.7289 6.91894 12.4272 7.03871C13.1255 7.15849 13.7588 7.52152 14.2151 8.06353C14.6713 8.60553 14.9211 9.29152 14.92 10C14.92 12 11.92 13 11.92 13M12 17H12.01M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z",
|
|
@@ -1547,11 +1387,11 @@ var HelpCircleIcon = (0, import_react28.forwardRef)(
|
|
|
1547
1387
|
);
|
|
1548
1388
|
|
|
1549
1389
|
// src/icons/home.tsx
|
|
1550
|
-
var
|
|
1551
|
-
var
|
|
1552
|
-
var HomeIcon = (0,
|
|
1390
|
+
var import_react27 = require("react");
|
|
1391
|
+
var import_jsx_runtime29 = require("react/jsx-runtime");
|
|
1392
|
+
var HomeIcon = (0, import_react27.forwardRef)(function HomeIcon2(_a, ref) {
|
|
1553
1393
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1554
|
-
return /* @__PURE__ */ (0,
|
|
1394
|
+
return /* @__PURE__ */ (0, import_jsx_runtime29.jsxs)(
|
|
1555
1395
|
"svg",
|
|
1556
1396
|
__spreadProps(__spreadValues({
|
|
1557
1397
|
ref,
|
|
@@ -1563,8 +1403,8 @@ var HomeIcon = (0, import_react29.forwardRef)(function HomeIcon2(_a, ref) {
|
|
|
1563
1403
|
className
|
|
1564
1404
|
}, other), {
|
|
1565
1405
|
children: [
|
|
1566
|
-
duotone && /* @__PURE__ */ (0,
|
|
1567
|
-
/* @__PURE__ */ (0,
|
|
1406
|
+
duotone && /* @__PURE__ */ (0, import_jsx_runtime29.jsx)("path", { opacity: "0.12", d: "M9 21V12H15V21", fill: "currentColor" }),
|
|
1407
|
+
/* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
|
|
1568
1408
|
"path",
|
|
1569
1409
|
{
|
|
1570
1410
|
d: "M9 21V13.6C9 13.0399 9 12.7599 9.10899 12.546C9.20487 12.3578 9.35785 12.2049 9.54601 12.109C9.75992 12 10.0399 12 10.6 12H13.4C13.9601 12 14.2401 12 14.454 12.109C14.6422 12.2049 14.7951 12.3578 14.891 12.546C15 12.7599 15 13.0399 15 13.6V21M11.0177 2.764L4.23539 8.03912C3.78202 8.39175 3.55534 8.56806 3.39203 8.78886C3.24737 8.98444 3.1396 9.20478 3.07403 9.43905C3 9.70352 3 9.9907 3 10.5651V17.8C3 18.9201 3 19.4801 3.21799 19.908C3.40973 20.2843 3.71569 20.5903 4.09202 20.782C4.51984 21 5.07989 21 6.2 21H17.8C18.9201 21 19.4802 21 19.908 20.782C20.2843 20.5903 20.5903 20.2843 20.782 19.908C21 19.4801 21 18.9201 21 17.8V10.5651C21 9.9907 21 9.70352 20.926 9.43905C20.8604 9.20478 20.7526 8.98444 20.608 8.78886C20.4447 8.56806 20.218 8.39175 19.7646 8.03913L12.9823 2.764C12.631 2.49075 12.4553 2.35412 12.2613 2.3016C12.0902 2.25526 11.9098 2.25526 11.7387 2.3016C11.5447 2.35412 11.369 2.49075 11.0177 2.764Z",
|
|
@@ -1580,12 +1420,12 @@ var HomeIcon = (0, import_react29.forwardRef)(function HomeIcon2(_a, ref) {
|
|
|
1580
1420
|
});
|
|
1581
1421
|
|
|
1582
1422
|
// src/icons/image.tsx
|
|
1583
|
-
var
|
|
1584
|
-
var
|
|
1585
|
-
var ImageIcon = (0,
|
|
1423
|
+
var import_react28 = require("react");
|
|
1424
|
+
var import_jsx_runtime30 = require("react/jsx-runtime");
|
|
1425
|
+
var ImageIcon = (0, import_react28.forwardRef)(
|
|
1586
1426
|
function ImageIcon2(_a, ref) {
|
|
1587
1427
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1588
|
-
return /* @__PURE__ */ (0,
|
|
1428
|
+
return /* @__PURE__ */ (0, import_jsx_runtime30.jsxs)(
|
|
1589
1429
|
"svg",
|
|
1590
1430
|
__spreadProps(__spreadValues({
|
|
1591
1431
|
ref,
|
|
@@ -1597,15 +1437,15 @@ var ImageIcon = (0, import_react30.forwardRef)(
|
|
|
1597
1437
|
className
|
|
1598
1438
|
}, other), {
|
|
1599
1439
|
children: [
|
|
1600
|
-
duotone && /* @__PURE__ */ (0,
|
|
1601
|
-
/* @__PURE__ */ (0,
|
|
1440
|
+
duotone && /* @__PURE__ */ (0, import_jsx_runtime30.jsxs)("g", { opacity: "0.12", children: [
|
|
1441
|
+
/* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
|
|
1602
1442
|
"path",
|
|
1603
1443
|
{
|
|
1604
1444
|
d: "M6.36567 19.6343L14.8686 11.1314C15.2646 10.7354 15.4626 10.5373 15.691 10.4632C15.8918 10.3979 16.1082 10.3979 16.309 10.4632C16.5373 10.5373 16.7353 10.7354 17.1314 11.1314L21 15V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9264 20.3854 19.362 20.673C18.7202 21 17.8801 21 16.2 21H6.93136C6.32554 21 6.02264 21 5.88237 20.8802C5.76067 20.7763 5.69608 20.6203 5.70864 20.4608C5.72311 20.2769 5.9373 20.0627 6.36567 19.6343Z",
|
|
1605
1445
|
fill: "currentColor"
|
|
1606
1446
|
}
|
|
1607
1447
|
),
|
|
1608
|
-
/* @__PURE__ */ (0,
|
|
1448
|
+
/* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
|
|
1609
1449
|
"path",
|
|
1610
1450
|
{
|
|
1611
1451
|
d: "M8.49999 10.5C9.60456 10.5 10.5 9.60457 10.5 8.5C10.5 7.39543 9.60456 6.5 8.49999 6.5C7.39542 6.5 6.49999 7.39543 6.49999 8.5C6.49999 9.60457 7.39542 10.5 8.49999 10.5Z",
|
|
@@ -1613,7 +1453,7 @@ var ImageIcon = (0, import_react30.forwardRef)(
|
|
|
1613
1453
|
}
|
|
1614
1454
|
)
|
|
1615
1455
|
] }),
|
|
1616
|
-
/* @__PURE__ */ (0,
|
|
1456
|
+
/* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
|
|
1617
1457
|
"path",
|
|
1618
1458
|
{
|
|
1619
1459
|
d: "M16.2 21H6.93137C6.32555 21 6.02265 21 5.88238 20.8802C5.76068 20.7763 5.69609 20.6203 5.70865 20.4608C5.72312 20.2769 5.93731 20.0627 6.36569 19.6343L14.8686 11.1314C15.2646 10.7354 15.4627 10.5373 15.691 10.4632C15.8918 10.3979 16.1082 10.3979 16.309 10.4632C16.5373 10.5373 16.7354 10.7354 17.1314 11.1314L21 15V16.2M16.2 21C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2M16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V7.8C3 6.11984 3 5.27976 3.32698 4.63803C3.6146 4.07354 4.07354 3.6146 4.63803 3.32698C5.27976 3 6.11984 3 7.8 3H16.2C17.8802 3 18.7202 3 19.362 3.32698C19.9265 3.6146 20.3854 4.07354 20.673 4.63803C21 5.27976 21 6.11984 21 7.8V16.2M10.5 8.5C10.5 9.60457 9.60457 10.5 8.5 10.5C7.39543 10.5 6.5 9.60457 6.5 8.5C6.5 7.39543 7.39543 6.5 8.5 6.5C9.60457 6.5 10.5 7.39543 10.5 8.5Z",
|
|
@@ -1630,12 +1470,12 @@ var ImageIcon = (0, import_react30.forwardRef)(
|
|
|
1630
1470
|
);
|
|
1631
1471
|
|
|
1632
1472
|
// src/icons/imageDown.tsx
|
|
1633
|
-
var
|
|
1634
|
-
var
|
|
1635
|
-
var ImageDownIcon = (0,
|
|
1473
|
+
var import_react29 = require("react");
|
|
1474
|
+
var import_jsx_runtime31 = require("react/jsx-runtime");
|
|
1475
|
+
var ImageDownIcon = (0, import_react29.forwardRef)(
|
|
1636
1476
|
function ImageDownIcon2(_a, ref) {
|
|
1637
1477
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1638
|
-
return /* @__PURE__ */ (0,
|
|
1478
|
+
return /* @__PURE__ */ (0, import_jsx_runtime31.jsxs)(
|
|
1639
1479
|
"svg",
|
|
1640
1480
|
__spreadProps(__spreadValues({
|
|
1641
1481
|
ref,
|
|
@@ -1647,15 +1487,15 @@ var ImageDownIcon = (0, import_react31.forwardRef)(
|
|
|
1647
1487
|
className
|
|
1648
1488
|
}, other), {
|
|
1649
1489
|
children: [
|
|
1650
|
-
duotone && /* @__PURE__ */ (0,
|
|
1651
|
-
/* @__PURE__ */ (0,
|
|
1490
|
+
duotone && /* @__PURE__ */ (0, import_jsx_runtime31.jsxs)("g", { opacity: "0.12", children: [
|
|
1491
|
+
/* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
|
|
1652
1492
|
"path",
|
|
1653
1493
|
{
|
|
1654
1494
|
d: "M8.50004 10.5C9.60461 10.5 10.5 9.60457 10.5 8.5C10.5 7.39543 9.60461 6.5 8.50004 6.5C7.39547 6.5 6.50004 7.39543 6.50004 8.5C6.50004 9.60457 7.39547 10.5 8.50004 10.5Z",
|
|
1655
1495
|
fill: "currentColor"
|
|
1656
1496
|
}
|
|
1657
1497
|
),
|
|
1658
|
-
/* @__PURE__ */ (0,
|
|
1498
|
+
/* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
|
|
1659
1499
|
"path",
|
|
1660
1500
|
{
|
|
1661
1501
|
d: "M6.53118 19.608L14.9901 11.9181C15.3487 11.5921 15.528 11.4291 15.7326 11.3627C15.9129 11.3041 16.1062 11.298 16.2898 11.3451C16.4982 11.3985 16.6874 11.5499 17.0659 11.8527L19.8631 14.0905C20.2412 14.3929 20.4303 14.5442 20.5733 14.7264C20.753 14.9554 20.8806 15.2208 20.9471 15.5042C21 15.7296 21 15.9717 21 16.456C21 17.8951 21 18.6147 20.7583 19.1799C20.4547 19.8894 19.8895 20.4547 19.18 20.7582C18.6148 21 17.8952 21 16.456 21H7.06932C6.42632 21 6.10481 21 5.96322 20.8755C5.84049 20.7676 5.77822 20.6066 5.79646 20.4442C5.81751 20.2568 6.0554 20.0406 6.53118 19.608Z",
|
|
@@ -1663,7 +1503,7 @@ var ImageDownIcon = (0, import_react31.forwardRef)(
|
|
|
1663
1503
|
}
|
|
1664
1504
|
)
|
|
1665
1505
|
] }),
|
|
1666
|
-
/* @__PURE__ */ (0,
|
|
1506
|
+
/* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
|
|
1667
1507
|
"path",
|
|
1668
1508
|
{
|
|
1669
1509
|
d: "M16 5L19 8M19 8L22 5M19 8V2M12.5 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21H17C17.93 21 18.395 21 18.7765 20.8978C19.8117 20.6204 20.6204 19.8117 20.8978 18.7765C21 18.395 21 17.93 21 17M10.5 8.5C10.5 9.60457 9.60457 10.5 8.5 10.5C7.39543 10.5 6.5 9.60457 6.5 8.5C6.5 7.39543 7.39543 6.5 8.5 6.5C9.60457 6.5 10.5 7.39543 10.5 8.5ZM14.99 11.9181L6.53115 19.608C6.05536 20.0406 5.81747 20.2568 5.79643 20.4442C5.77819 20.6066 5.84045 20.7676 5.96319 20.8755C6.10478 21 6.42628 21 7.06929 21H16.456C17.8951 21 18.6147 21 19.1799 20.7582C19.8894 20.4547 20.4547 19.8894 20.7582 19.1799C21 18.6147 21 17.8951 21 16.456C21 15.9717 21 15.7296 20.9471 15.5042C20.8805 15.2208 20.753 14.9554 20.5733 14.7264C20.4303 14.5442 20.2412 14.3929 19.8631 14.0905L17.0658 11.8527C16.6874 11.5499 16.4982 11.3985 16.2898 11.3451C16.1061 11.298 15.9129 11.3041 15.7325 11.3627C15.5279 11.4291 15.3486 11.5921 14.99 11.9181Z",
|
|
@@ -1680,12 +1520,12 @@ var ImageDownIcon = (0, import_react31.forwardRef)(
|
|
|
1680
1520
|
);
|
|
1681
1521
|
|
|
1682
1522
|
// src/icons/imageX.tsx
|
|
1683
|
-
var
|
|
1684
|
-
var
|
|
1685
|
-
var ImageXIcon = (0,
|
|
1523
|
+
var import_react30 = require("react");
|
|
1524
|
+
var import_jsx_runtime32 = require("react/jsx-runtime");
|
|
1525
|
+
var ImageXIcon = (0, import_react30.forwardRef)(
|
|
1686
1526
|
function ImageXIcon2(_a, ref) {
|
|
1687
1527
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1688
|
-
return /* @__PURE__ */ (0,
|
|
1528
|
+
return /* @__PURE__ */ (0, import_jsx_runtime32.jsxs)(
|
|
1689
1529
|
"svg",
|
|
1690
1530
|
__spreadProps(__spreadValues({
|
|
1691
1531
|
ref,
|
|
@@ -1697,15 +1537,15 @@ var ImageXIcon = (0, import_react32.forwardRef)(
|
|
|
1697
1537
|
className
|
|
1698
1538
|
}, other), {
|
|
1699
1539
|
children: [
|
|
1700
|
-
duotone && /* @__PURE__ */ (0,
|
|
1701
|
-
/* @__PURE__ */ (0,
|
|
1540
|
+
duotone && /* @__PURE__ */ (0, import_jsx_runtime32.jsxs)("g", { opacity: "0.12", children: [
|
|
1541
|
+
/* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
|
|
1702
1542
|
"path",
|
|
1703
1543
|
{
|
|
1704
1544
|
d: "M8.50016 10.5C9.60473 10.5 10.5002 9.60457 10.5002 8.5C10.5002 7.39543 9.60473 6.5 8.50016 6.5C7.39559 6.5 6.50016 7.39543 6.50016 8.5C6.50016 9.60457 7.39559 10.5 8.50016 10.5Z",
|
|
1705
1545
|
fill: "currentColor"
|
|
1706
1546
|
}
|
|
1707
1547
|
),
|
|
1708
|
-
/* @__PURE__ */ (0,
|
|
1548
|
+
/* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
|
|
1709
1549
|
"path",
|
|
1710
1550
|
{
|
|
1711
1551
|
d: "M6.53131 19.608L14.9902 11.9181C15.3488 11.5921 15.5281 11.4291 15.7327 11.3627C15.913 11.3041 16.1063 11.298 16.29 11.3451C16.4983 11.3985 16.6875 11.5499 17.066 11.8527L19.8632 14.0905C20.2413 14.3929 20.4304 14.5442 20.5734 14.7264C20.7531 14.9554 20.8807 15.2208 20.9472 15.5042C21.0002 15.7296 21.0002 15.9717 21.0002 16.456C21.0002 17.8951 21.0002 18.6147 20.7584 19.1799C20.4549 19.8894 19.8896 20.4547 19.1801 20.7582C18.6149 21 17.8953 21 16.4561 21H7.06944C6.42644 21 6.10494 21 5.96334 20.8755C5.84061 20.7676 5.77835 20.6066 5.79659 20.4442C5.81763 20.2568 6.05552 20.0406 6.53131 19.608Z",
|
|
@@ -1713,7 +1553,7 @@ var ImageXIcon = (0, import_react32.forwardRef)(
|
|
|
1713
1553
|
}
|
|
1714
1554
|
)
|
|
1715
1555
|
] }),
|
|
1716
|
-
/* @__PURE__ */ (0,
|
|
1556
|
+
/* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
|
|
1717
1557
|
"path",
|
|
1718
1558
|
{
|
|
1719
1559
|
d: "M16.5 2.5L21.5 7.5M21.5 2.5L16.5 7.5M12.5 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21H17C17.93 21 18.395 21 18.7765 20.8978C19.8117 20.6204 20.6204 19.8117 20.8978 18.7765C21 18.395 21 17.93 21 17M10.5 8.5C10.5 9.60457 9.60457 10.5 8.5 10.5C7.39543 10.5 6.5 9.60457 6.5 8.5C6.5 7.39543 7.39543 6.5 8.5 6.5C9.60457 6.5 10.5 7.39543 10.5 8.5ZM14.99 11.9181L6.53115 19.608C6.05536 20.0406 5.81747 20.2568 5.79643 20.4442C5.77819 20.6066 5.84045 20.7676 5.96319 20.8755C6.10478 21 6.42628 21 7.06929 21H16.456C17.8951 21 18.6147 21 19.1799 20.7582C19.8894 20.4547 20.4547 19.8894 20.7582 19.1799C21 18.6147 21 17.8951 21 16.456C21 15.9717 21 15.7296 20.9471 15.5042C20.8805 15.2208 20.753 14.9554 20.5733 14.7264C20.4303 14.5442 20.2412 14.3929 19.8631 14.0905L17.0658 11.8527C16.6874 11.5499 16.4982 11.3985 16.2898 11.3451C16.1061 11.298 15.9129 11.3041 15.7325 11.3627C15.5279 11.4291 15.3486 11.5921 14.99 11.9181Z",
|
|
@@ -1730,12 +1570,12 @@ var ImageXIcon = (0, import_react32.forwardRef)(
|
|
|
1730
1570
|
);
|
|
1731
1571
|
|
|
1732
1572
|
// src/icons/infoCircle.tsx
|
|
1733
|
-
var
|
|
1734
|
-
var
|
|
1735
|
-
var InfoCircleIcon = (0,
|
|
1573
|
+
var import_react31 = require("react");
|
|
1574
|
+
var import_jsx_runtime33 = require("react/jsx-runtime");
|
|
1575
|
+
var InfoCircleIcon = (0, import_react31.forwardRef)(
|
|
1736
1576
|
function InfoCircleIcon2(_a, ref) {
|
|
1737
1577
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1738
|
-
return /* @__PURE__ */ (0,
|
|
1578
|
+
return /* @__PURE__ */ (0, import_jsx_runtime33.jsxs)(
|
|
1739
1579
|
"svg",
|
|
1740
1580
|
__spreadProps(__spreadValues({
|
|
1741
1581
|
ref,
|
|
@@ -1747,7 +1587,7 @@ var InfoCircleIcon = (0, import_react33.forwardRef)(
|
|
|
1747
1587
|
className
|
|
1748
1588
|
}, other), {
|
|
1749
1589
|
children: [
|
|
1750
|
-
duotone && /* @__PURE__ */ (0,
|
|
1590
|
+
duotone && /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
|
|
1751
1591
|
"path",
|
|
1752
1592
|
{
|
|
1753
1593
|
opacity: "0.12",
|
|
@@ -1755,7 +1595,7 @@ var InfoCircleIcon = (0, import_react33.forwardRef)(
|
|
|
1755
1595
|
fill: "currentColor"
|
|
1756
1596
|
}
|
|
1757
1597
|
),
|
|
1758
|
-
/* @__PURE__ */ (0,
|
|
1598
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
|
|
1759
1599
|
"path",
|
|
1760
1600
|
{
|
|
1761
1601
|
d: "M12 16V12M12 8H12.01M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z",
|
|
@@ -1772,12 +1612,12 @@ var InfoCircleIcon = (0, import_react33.forwardRef)(
|
|
|
1772
1612
|
);
|
|
1773
1613
|
|
|
1774
1614
|
// src/icons/lightbulb.tsx
|
|
1775
|
-
var
|
|
1776
|
-
var
|
|
1777
|
-
var LightbulbIcon = (0,
|
|
1615
|
+
var import_react32 = require("react");
|
|
1616
|
+
var import_jsx_runtime34 = require("react/jsx-runtime");
|
|
1617
|
+
var LightbulbIcon = (0, import_react32.forwardRef)(
|
|
1778
1618
|
function LightbulbIcon2(_a, ref) {
|
|
1779
1619
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1780
|
-
return /* @__PURE__ */ (0,
|
|
1620
|
+
return /* @__PURE__ */ (0, import_jsx_runtime34.jsxs)(
|
|
1781
1621
|
"svg",
|
|
1782
1622
|
__spreadProps(__spreadValues({
|
|
1783
1623
|
ref,
|
|
@@ -1789,7 +1629,7 @@ var LightbulbIcon = (0, import_react34.forwardRef)(
|
|
|
1789
1629
|
className
|
|
1790
1630
|
}, other), {
|
|
1791
1631
|
children: [
|
|
1792
|
-
duotone && /* @__PURE__ */ (0,
|
|
1632
|
+
duotone && /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
|
|
1793
1633
|
"path",
|
|
1794
1634
|
{
|
|
1795
1635
|
opacity: "0.12",
|
|
@@ -1797,7 +1637,7 @@ var LightbulbIcon = (0, import_react34.forwardRef)(
|
|
|
1797
1637
|
fill: "currentColor"
|
|
1798
1638
|
}
|
|
1799
1639
|
),
|
|
1800
|
-
/* @__PURE__ */ (0,
|
|
1640
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
|
|
1801
1641
|
"path",
|
|
1802
1642
|
{
|
|
1803
1643
|
d: "M9.5 22H14.5M10 10H14M12 10L12 16M15 15.3264C17.3649 14.2029 19 11.7924 19 9C19 5.13401 15.866 2 12 2C8.13401 2 5 5.13401 5 9C5 11.7924 6.63505 14.2029 9 15.3264V16C9 16.9319 9 17.3978 9.15224 17.7654C9.35523 18.2554 9.74458 18.6448 10.2346 18.8478C10.6022 19 11.0681 19 12 19C12.9319 19 13.3978 19 13.7654 18.8478C14.2554 18.6448 14.6448 18.2554 14.8478 17.7654C15 17.3978 15 16.9319 15 16V15.3264Z",
|
|
@@ -1814,11 +1654,11 @@ var LightbulbIcon = (0, import_react34.forwardRef)(
|
|
|
1814
1654
|
);
|
|
1815
1655
|
|
|
1816
1656
|
// src/icons/lock.tsx
|
|
1817
|
-
var
|
|
1818
|
-
var
|
|
1819
|
-
var LockIcon = (0,
|
|
1657
|
+
var import_react33 = require("react");
|
|
1658
|
+
var import_jsx_runtime35 = require("react/jsx-runtime");
|
|
1659
|
+
var LockIcon = (0, import_react33.forwardRef)(function LockIcon2(_a, ref) {
|
|
1820
1660
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1821
|
-
return /* @__PURE__ */ (0,
|
|
1661
|
+
return /* @__PURE__ */ (0, import_jsx_runtime35.jsxs)(
|
|
1822
1662
|
"svg",
|
|
1823
1663
|
__spreadProps(__spreadValues({
|
|
1824
1664
|
ref,
|
|
@@ -1830,7 +1670,7 @@ var LockIcon = (0, import_react35.forwardRef)(function LockIcon2(_a, ref) {
|
|
|
1830
1670
|
className
|
|
1831
1671
|
}, other), {
|
|
1832
1672
|
children: [
|
|
1833
|
-
duotone && /* @__PURE__ */ (0,
|
|
1673
|
+
duotone && /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
|
|
1834
1674
|
"path",
|
|
1835
1675
|
{
|
|
1836
1676
|
opacity: "0.12",
|
|
@@ -1838,7 +1678,7 @@ var LockIcon = (0, import_react35.forwardRef)(function LockIcon2(_a, ref) {
|
|
|
1838
1678
|
fill: "currentColor"
|
|
1839
1679
|
}
|
|
1840
1680
|
),
|
|
1841
|
-
/* @__PURE__ */ (0,
|
|
1681
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
|
|
1842
1682
|
"path",
|
|
1843
1683
|
{
|
|
1844
1684
|
d: "M17 10V8C17 5.23858 14.7614 3 12 3C9.23858 3 7 5.23858 7 8V10M12 14.5V16.5M8.8 21H15.2C16.8802 21 17.7202 21 18.362 20.673C18.9265 20.3854 19.3854 19.9265 19.673 19.362C20 18.7202 20 17.8802 20 16.2V14.8C20 13.1198 20 12.2798 19.673 11.638C19.3854 11.0735 18.9265 10.6146 18.362 10.327C17.7202 10 16.8802 10 15.2 10H8.8C7.11984 10 6.27976 10 5.63803 10.327C5.07354 10.6146 4.6146 11.0735 4.32698 11.638C4 12.2798 4 13.1198 4 14.8V16.2C4 17.8802 4 18.7202 4.32698 19.362C4.6146 19.9265 5.07354 20.3854 5.63803 20.673C6.27976 21 7.11984 21 8.8 21Z",
|
|
@@ -1854,12 +1694,12 @@ var LockIcon = (0, import_react35.forwardRef)(function LockIcon2(_a, ref) {
|
|
|
1854
1694
|
});
|
|
1855
1695
|
|
|
1856
1696
|
// src/icons/logIn.tsx
|
|
1857
|
-
var
|
|
1858
|
-
var
|
|
1859
|
-
var LogInIcon = (0,
|
|
1697
|
+
var import_react34 = require("react");
|
|
1698
|
+
var import_jsx_runtime36 = require("react/jsx-runtime");
|
|
1699
|
+
var LogInIcon = (0, import_react34.forwardRef)(
|
|
1860
1700
|
function LogInIcon2(_a, ref) {
|
|
1861
1701
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1862
|
-
return /* @__PURE__ */ (0,
|
|
1702
|
+
return /* @__PURE__ */ (0, import_jsx_runtime36.jsxs)(
|
|
1863
1703
|
"svg",
|
|
1864
1704
|
__spreadProps(__spreadValues({
|
|
1865
1705
|
ref,
|
|
@@ -1871,7 +1711,7 @@ var LogInIcon = (0, import_react36.forwardRef)(
|
|
|
1871
1711
|
className
|
|
1872
1712
|
}, other), {
|
|
1873
1713
|
children: [
|
|
1874
|
-
duotone && /* @__PURE__ */ (0,
|
|
1714
|
+
duotone && /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
|
|
1875
1715
|
"path",
|
|
1876
1716
|
{
|
|
1877
1717
|
opacity: "0.12",
|
|
@@ -1879,7 +1719,7 @@ var LogInIcon = (0, import_react36.forwardRef)(
|
|
|
1879
1719
|
fill: "currentColor"
|
|
1880
1720
|
}
|
|
1881
1721
|
),
|
|
1882
|
-
/* @__PURE__ */ (0,
|
|
1722
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
|
|
1883
1723
|
"path",
|
|
1884
1724
|
{
|
|
1885
1725
|
d: "M6 17C6 17.93 6 18.395 6.10222 18.7765C6.37962 19.8117 7.18827 20.6204 8.22354 20.8978C8.60504 21 9.07003 21 10 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H10C9.07003 3 8.60504 3 8.22354 3.10222C7.18827 3.37962 6.37962 4.18827 6.10222 5.22354C6 5.60504 6 6.07003 6 7M12 8L16 12M16 12L12 16M16 12H3",
|
|
@@ -1896,12 +1736,12 @@ var LogInIcon = (0, import_react36.forwardRef)(
|
|
|
1896
1736
|
);
|
|
1897
1737
|
|
|
1898
1738
|
// src/icons/magicWand.tsx
|
|
1899
|
-
var
|
|
1900
|
-
var
|
|
1901
|
-
var MagicWandIcon = (0,
|
|
1739
|
+
var import_react35 = require("react");
|
|
1740
|
+
var import_jsx_runtime37 = require("react/jsx-runtime");
|
|
1741
|
+
var MagicWandIcon = (0, import_react35.forwardRef)(
|
|
1902
1742
|
function MagicWandIcon2(_a, ref) {
|
|
1903
1743
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1904
|
-
return /* @__PURE__ */ (0,
|
|
1744
|
+
return /* @__PURE__ */ (0, import_jsx_runtime37.jsxs)(
|
|
1905
1745
|
"svg",
|
|
1906
1746
|
__spreadProps(__spreadValues({
|
|
1907
1747
|
ref,
|
|
@@ -1913,7 +1753,7 @@ var MagicWandIcon = (0, import_react37.forwardRef)(
|
|
|
1913
1753
|
className
|
|
1914
1754
|
}, other), {
|
|
1915
1755
|
children: [
|
|
1916
|
-
duotone && /* @__PURE__ */ (0,
|
|
1756
|
+
duotone && /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
|
|
1917
1757
|
"path",
|
|
1918
1758
|
{
|
|
1919
1759
|
opacity: "0.12",
|
|
@@ -1921,7 +1761,7 @@ var MagicWandIcon = (0, import_react37.forwardRef)(
|
|
|
1921
1761
|
fill: "currentColor"
|
|
1922
1762
|
}
|
|
1923
1763
|
),
|
|
1924
|
-
/* @__PURE__ */ (0,
|
|
1764
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
|
|
1925
1765
|
"path",
|
|
1926
1766
|
{
|
|
1927
1767
|
d: "M13 14L9.99997 11M15.0103 3.5V2M18.9497 5.06066L20.0103 4M18.9497 13L20.0103 14.0607M11.0103 5.06066L9.94966 4M20.5103 9H22.0103M6.13134 20.8686L15.3686 11.6314C15.7646 11.2354 15.9626 11.0373 16.0368 10.809C16.1021 10.6082 16.1021 10.3918 16.0368 10.191C15.9626 9.96265 15.7646 9.76465 15.3686 9.36863L14.6313 8.63137C14.2353 8.23535 14.0373 8.03735 13.809 7.96316C13.6081 7.8979 13.3918 7.8979 13.191 7.96316C12.9626 8.03735 12.7646 8.23535 12.3686 8.63137L3.13134 17.8686C2.73532 18.2646 2.53732 18.4627 2.46313 18.691C2.39787 18.8918 2.39787 19.1082 2.46313 19.309C2.53732 19.5373 2.73533 19.7354 3.13134 20.1314L3.8686 20.8686C4.26462 21.2646 4.46263 21.4627 4.69095 21.5368C4.8918 21.6021 5.10814 21.6021 5.30899 21.5368C5.53732 21.4627 5.73533 21.2646 6.13134 20.8686Z",
|
|
@@ -1938,11 +1778,11 @@ var MagicWandIcon = (0, import_react37.forwardRef)(
|
|
|
1938
1778
|
);
|
|
1939
1779
|
|
|
1940
1780
|
// src/icons/mail.tsx
|
|
1941
|
-
var
|
|
1942
|
-
var
|
|
1943
|
-
var MailIcon = (0,
|
|
1781
|
+
var import_react36 = require("react");
|
|
1782
|
+
var import_jsx_runtime38 = require("react/jsx-runtime");
|
|
1783
|
+
var MailIcon = (0, import_react36.forwardRef)(function MailIcon2(_a, ref) {
|
|
1944
1784
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1945
|
-
return /* @__PURE__ */ (0,
|
|
1785
|
+
return /* @__PURE__ */ (0, import_jsx_runtime38.jsxs)(
|
|
1946
1786
|
"svg",
|
|
1947
1787
|
__spreadProps(__spreadValues({
|
|
1948
1788
|
ref,
|
|
@@ -1954,7 +1794,7 @@ var MailIcon = (0, import_react38.forwardRef)(function MailIcon2(_a, ref) {
|
|
|
1954
1794
|
className
|
|
1955
1795
|
}, other), {
|
|
1956
1796
|
children: [
|
|
1957
|
-
duotone && /* @__PURE__ */ (0,
|
|
1797
|
+
duotone && /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
|
|
1958
1798
|
"path",
|
|
1959
1799
|
{
|
|
1960
1800
|
opacity: "0.12",
|
|
@@ -1962,7 +1802,7 @@ var MailIcon = (0, import_react38.forwardRef)(function MailIcon2(_a, ref) {
|
|
|
1962
1802
|
fill: "currentColor"
|
|
1963
1803
|
}
|
|
1964
1804
|
),
|
|
1965
|
-
/* @__PURE__ */ (0,
|
|
1805
|
+
/* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
|
|
1966
1806
|
"path",
|
|
1967
1807
|
{
|
|
1968
1808
|
d: "M2 7L10.1649 12.7154C10.8261 13.1783 11.1567 13.4097 11.5163 13.4993C11.8339 13.5785 12.1661 13.5785 12.4837 13.4993C12.8433 13.4097 13.1739 13.1783 13.8351 12.7154L22 7M6.8 20H17.2C18.8802 20 19.7202 20 20.362 19.673C20.9265 19.3854 21.3854 18.9265 21.673 18.362C22 17.7202 22 16.8802 22 15.2V8.8C22 7.11984 22 6.27976 21.673 5.63803C21.3854 5.07354 20.9265 4.6146 20.362 4.32698C19.7202 4 18.8802 4 17.2 4H6.8C5.11984 4 4.27976 4 3.63803 4.32698C3.07354 4.6146 2.6146 5.07354 2.32698 5.63803C2 6.27976 2 7.11984 2 8.8V15.2C2 16.8802 2 17.7202 2.32698 18.362C2.6146 18.9265 3.07354 19.3854 3.63803 19.673C4.27976 20 5.11984 20 6.8 20Z",
|
|
@@ -1978,11 +1818,11 @@ var MailIcon = (0, import_react38.forwardRef)(function MailIcon2(_a, ref) {
|
|
|
1978
1818
|
});
|
|
1979
1819
|
|
|
1980
1820
|
// src/icons/menu.tsx
|
|
1981
|
-
var
|
|
1982
|
-
var
|
|
1983
|
-
var MenuIcon = (0,
|
|
1821
|
+
var import_react37 = require("react");
|
|
1822
|
+
var import_jsx_runtime39 = require("react/jsx-runtime");
|
|
1823
|
+
var MenuIcon = (0, import_react37.forwardRef)(function MenuIcon2(_a, ref) {
|
|
1984
1824
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1985
|
-
return /* @__PURE__ */ (0,
|
|
1825
|
+
return /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
|
|
1986
1826
|
"svg",
|
|
1987
1827
|
__spreadProps(__spreadValues({
|
|
1988
1828
|
ref,
|
|
@@ -1993,7 +1833,7 @@ var MenuIcon = (0, import_react39.forwardRef)(function MenuIcon2(_a, ref) {
|
|
|
1993
1833
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1994
1834
|
className
|
|
1995
1835
|
}, other), {
|
|
1996
|
-
children: /* @__PURE__ */ (0,
|
|
1836
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
|
|
1997
1837
|
"path",
|
|
1998
1838
|
{
|
|
1999
1839
|
d: "M3 12H21M3 6H21M3 18H21",
|
|
@@ -2008,12 +1848,12 @@ var MenuIcon = (0, import_react39.forwardRef)(function MenuIcon2(_a, ref) {
|
|
|
2008
1848
|
});
|
|
2009
1849
|
|
|
2010
1850
|
// src/icons/messageChatSquare.tsx
|
|
2011
|
-
var
|
|
2012
|
-
var
|
|
2013
|
-
var MessageChatSquareIcon = (0,
|
|
1851
|
+
var import_react38 = require("react");
|
|
1852
|
+
var import_jsx_runtime40 = require("react/jsx-runtime");
|
|
1853
|
+
var MessageChatSquareIcon = (0, import_react38.forwardRef)(
|
|
2014
1854
|
function MessageChatSquareIcon2(_a, ref) {
|
|
2015
1855
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2016
|
-
return /* @__PURE__ */ (0,
|
|
1856
|
+
return /* @__PURE__ */ (0, import_jsx_runtime40.jsxs)(
|
|
2017
1857
|
"svg",
|
|
2018
1858
|
__spreadProps(__spreadValues({
|
|
2019
1859
|
ref,
|
|
@@ -2025,7 +1865,7 @@ var MessageChatSquareIcon = (0, import_react40.forwardRef)(
|
|
|
2025
1865
|
className
|
|
2026
1866
|
}, other), {
|
|
2027
1867
|
children: [
|
|
2028
|
-
duotone && /* @__PURE__ */ (0,
|
|
1868
|
+
duotone && /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
|
|
2029
1869
|
"path",
|
|
2030
1870
|
{
|
|
2031
1871
|
opacity: "0.12",
|
|
@@ -2033,7 +1873,7 @@ var MessageChatSquareIcon = (0, import_react40.forwardRef)(
|
|
|
2033
1873
|
fill: "currentColor"
|
|
2034
1874
|
}
|
|
2035
1875
|
),
|
|
2036
|
-
/* @__PURE__ */ (0,
|
|
1876
|
+
/* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
|
|
2037
1877
|
"path",
|
|
2038
1878
|
{
|
|
2039
1879
|
d: "M10 15L6.92474 18.1137C6.49579 18.548 6.28131 18.7652 6.09695 18.7805C5.93701 18.7938 5.78042 18.7295 5.67596 18.6076C5.55556 18.4672 5.55556 18.162 5.55556 17.5515V15.9916C5.55556 15.444 5.10707 15.0477 4.5652 14.9683V14.9683C3.25374 14.7762 2.22378 13.7463 2.03168 12.4348C2 12.2186 2 11.9605 2 11.4444V6.8C2 5.11984 2 4.27976 2.32698 3.63803C2.6146 3.07354 3.07354 2.6146 3.63803 2.32698C4.27976 2 5.11984 2 6.8 2H14.2C15.8802 2 16.7202 2 17.362 2.32698C17.9265 2.6146 18.3854 3.07354 18.673 3.63803C19 4.27976 19 5.11984 19 6.8V11M19 22L16.8236 20.4869C16.5177 20.2742 16.3647 20.1678 16.1982 20.0924C16.0504 20.0255 15.8951 19.9768 15.7356 19.9474C15.5558 19.9143 15.3695 19.9143 14.9969 19.9143H13.2C12.0799 19.9143 11.5198 19.9143 11.092 19.6963C10.7157 19.5046 10.4097 19.1986 10.218 18.8223C10 18.3944 10 17.8344 10 16.7143V14.2C10 13.0799 10 12.5198 10.218 12.092C10.4097 11.7157 10.7157 11.4097 11.092 11.218C11.5198 11 12.0799 11 13.2 11H18.8C19.9201 11 20.4802 11 20.908 11.218C21.2843 11.4097 21.5903 11.7157 21.782 12.092C22 12.5198 22 13.0799 22 14.2V16.9143C22 17.8462 22 18.3121 21.8478 18.6797C21.6448 19.1697 21.2554 19.5591 20.7654 19.762C20.3978 19.9143 19.9319 19.9143 19 19.9143V22Z",
|
|
@@ -2050,12 +1890,12 @@ var MessageChatSquareIcon = (0, import_react40.forwardRef)(
|
|
|
2050
1890
|
);
|
|
2051
1891
|
|
|
2052
1892
|
// src/icons/messagePlusSquare.tsx
|
|
2053
|
-
var
|
|
2054
|
-
var
|
|
2055
|
-
var MessagePlusSquareIcon = (0,
|
|
1893
|
+
var import_react39 = require("react");
|
|
1894
|
+
var import_jsx_runtime41 = require("react/jsx-runtime");
|
|
1895
|
+
var MessagePlusSquareIcon = (0, import_react39.forwardRef)(
|
|
2056
1896
|
function MessagePlusSquareIcon2(_a, ref) {
|
|
2057
1897
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2058
|
-
return /* @__PURE__ */ (0,
|
|
1898
|
+
return /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)(
|
|
2059
1899
|
"svg",
|
|
2060
1900
|
__spreadProps(__spreadValues({
|
|
2061
1901
|
ref,
|
|
@@ -2067,7 +1907,7 @@ var MessagePlusSquareIcon = (0, import_react41.forwardRef)(
|
|
|
2067
1907
|
className
|
|
2068
1908
|
}, other), {
|
|
2069
1909
|
children: [
|
|
2070
|
-
duotone && /* @__PURE__ */ (0,
|
|
1910
|
+
duotone && /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
|
|
2071
1911
|
"path",
|
|
2072
1912
|
{
|
|
2073
1913
|
opacity: "0.12",
|
|
@@ -2075,7 +1915,7 @@ var MessagePlusSquareIcon = (0, import_react41.forwardRef)(
|
|
|
2075
1915
|
fill: "currentColor"
|
|
2076
1916
|
}
|
|
2077
1917
|
),
|
|
2078
|
-
/* @__PURE__ */ (0,
|
|
1918
|
+
/* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
|
|
2079
1919
|
"path",
|
|
2080
1920
|
{
|
|
2081
1921
|
d: "M12 13.5V7.5M9 10.5H15M7 18V20.3355C7 20.8684 7 21.1348 7.10923 21.2716C7.20422 21.3906 7.34827 21.4599 7.50054 21.4597C7.67563 21.4595 7.88367 21.2931 8.29976 20.9602L10.6852 19.0518C11.1725 18.662 11.4162 18.4671 11.6875 18.3285C11.9282 18.2055 12.1844 18.1156 12.4492 18.0613C12.7477 18 13.0597 18 13.6837 18H16.2C17.8802 18 18.7202 18 19.362 17.673C19.9265 17.3854 20.3854 16.9265 20.673 16.362C21 15.7202 21 14.8802 21 13.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V14C3 14.93 3 15.395 3.10222 15.7765C3.37962 16.8117 4.18827 17.6204 5.22354 17.8978C5.60504 18 6.07003 18 7 18Z",
|
|
@@ -2092,12 +1932,12 @@ var MessagePlusSquareIcon = (0, import_react41.forwardRef)(
|
|
|
2092
1932
|
);
|
|
2093
1933
|
|
|
2094
1934
|
// src/icons/messageTextSquare.tsx
|
|
2095
|
-
var
|
|
2096
|
-
var
|
|
2097
|
-
var MessageTextSquareIcon = (0,
|
|
1935
|
+
var import_react40 = require("react");
|
|
1936
|
+
var import_jsx_runtime42 = require("react/jsx-runtime");
|
|
1937
|
+
var MessageTextSquareIcon = (0, import_react40.forwardRef)(
|
|
2098
1938
|
function MessageTextSquareIcon2(_a, ref) {
|
|
2099
1939
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2100
|
-
return /* @__PURE__ */ (0,
|
|
1940
|
+
return /* @__PURE__ */ (0, import_jsx_runtime42.jsxs)(
|
|
2101
1941
|
"svg",
|
|
2102
1942
|
__spreadProps(__spreadValues({
|
|
2103
1943
|
ref,
|
|
@@ -2109,7 +1949,7 @@ var MessageTextSquareIcon = (0, import_react42.forwardRef)(
|
|
|
2109
1949
|
className
|
|
2110
1950
|
}, other), {
|
|
2111
1951
|
children: [
|
|
2112
|
-
duotone && /* @__PURE__ */ (0,
|
|
1952
|
+
duotone && /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
|
|
2113
1953
|
"path",
|
|
2114
1954
|
{
|
|
2115
1955
|
opacity: "0.12",
|
|
@@ -2117,7 +1957,7 @@ var MessageTextSquareIcon = (0, import_react42.forwardRef)(
|
|
|
2117
1957
|
fill: "currentColor"
|
|
2118
1958
|
}
|
|
2119
1959
|
),
|
|
2120
|
-
/* @__PURE__ */ (0,
|
|
1960
|
+
/* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
|
|
2121
1961
|
"path",
|
|
2122
1962
|
{
|
|
2123
1963
|
d: "M7 8.5H12M7 12H15M7 18V20.3355C7 20.8684 7 21.1348 7.10923 21.2716C7.20422 21.3906 7.34827 21.4599 7.50054 21.4597C7.67563 21.4595 7.88367 21.2931 8.29976 20.9602L10.6852 19.0518C11.1725 18.662 11.4162 18.4671 11.6875 18.3285C11.9282 18.2055 12.1844 18.1156 12.4492 18.0613C12.7477 18 13.0597 18 13.6837 18H16.2C17.8802 18 18.7202 18 19.362 17.673C19.9265 17.3854 20.3854 16.9265 20.673 16.362C21 15.7202 21 14.8802 21 13.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V14C3 14.93 3 15.395 3.10222 15.7765C3.37962 16.8117 4.18827 17.6204 5.22354 17.8978C5.60504 18 6.07003 18 7 18Z",
|
|
@@ -2134,12 +1974,12 @@ var MessageTextSquareIcon = (0, import_react42.forwardRef)(
|
|
|
2134
1974
|
);
|
|
2135
1975
|
|
|
2136
1976
|
// src/icons/microphone.tsx
|
|
2137
|
-
var
|
|
2138
|
-
var
|
|
2139
|
-
var MicrophoneIcon = (0,
|
|
1977
|
+
var import_react41 = require("react");
|
|
1978
|
+
var import_jsx_runtime43 = require("react/jsx-runtime");
|
|
1979
|
+
var MicrophoneIcon = (0, import_react41.forwardRef)(
|
|
2140
1980
|
function MicrophoneIcon2(_a, ref) {
|
|
2141
1981
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2142
|
-
return /* @__PURE__ */ (0,
|
|
1982
|
+
return /* @__PURE__ */ (0, import_jsx_runtime43.jsxs)(
|
|
2143
1983
|
"svg",
|
|
2144
1984
|
__spreadProps(__spreadValues({
|
|
2145
1985
|
ref,
|
|
@@ -2151,7 +1991,7 @@ var MicrophoneIcon = (0, import_react43.forwardRef)(
|
|
|
2151
1991
|
className
|
|
2152
1992
|
}, other), {
|
|
2153
1993
|
children: [
|
|
2154
|
-
duotone && /* @__PURE__ */ (0,
|
|
1994
|
+
duotone && /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
|
|
2155
1995
|
"path",
|
|
2156
1996
|
{
|
|
2157
1997
|
opacity: "0.12",
|
|
@@ -2159,7 +1999,7 @@ var MicrophoneIcon = (0, import_react43.forwardRef)(
|
|
|
2159
1999
|
fill: "currentColor"
|
|
2160
2000
|
}
|
|
2161
2001
|
),
|
|
2162
|
-
/* @__PURE__ */ (0,
|
|
2002
|
+
/* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
|
|
2163
2003
|
"path",
|
|
2164
2004
|
{
|
|
2165
2005
|
d: "M19 10V12C19 15.866 15.866 19 12 19M5 10V12C5 15.866 8.13401 19 12 19M12 19V22M8 22H16M12 15C10.3431 15 9 13.6569 9 12V5C9 3.34315 10.3431 2 12 2C13.6569 2 15 3.34315 15 5V12C15 13.6569 13.6569 15 12 15Z",
|
|
@@ -2176,12 +2016,12 @@ var MicrophoneIcon = (0, import_react43.forwardRef)(
|
|
|
2176
2016
|
);
|
|
2177
2017
|
|
|
2178
2018
|
// src/icons/microphoneOff.tsx
|
|
2179
|
-
var
|
|
2180
|
-
var
|
|
2181
|
-
var MicrophoneOffIcon = (0,
|
|
2019
|
+
var import_react42 = require("react");
|
|
2020
|
+
var import_jsx_runtime44 = require("react/jsx-runtime");
|
|
2021
|
+
var MicrophoneOffIcon = (0, import_react42.forwardRef)(
|
|
2182
2022
|
function MicrophoneOffIcon2(_a, ref) {
|
|
2183
2023
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2184
|
-
return /* @__PURE__ */ (0,
|
|
2024
|
+
return /* @__PURE__ */ (0, import_jsx_runtime44.jsxs)(
|
|
2185
2025
|
"svg",
|
|
2186
2026
|
__spreadProps(__spreadValues({
|
|
2187
2027
|
ref,
|
|
@@ -2193,7 +2033,7 @@ var MicrophoneOffIcon = (0, import_react44.forwardRef)(
|
|
|
2193
2033
|
className
|
|
2194
2034
|
}, other), {
|
|
2195
2035
|
children: [
|
|
2196
|
-
duotone && /* @__PURE__ */ (0,
|
|
2036
|
+
duotone && /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
|
|
2197
2037
|
"path",
|
|
2198
2038
|
{
|
|
2199
2039
|
opacity: "0.12",
|
|
@@ -2201,7 +2041,7 @@ var MicrophoneOffIcon = (0, import_react44.forwardRef)(
|
|
|
2201
2041
|
fill: "currentColor"
|
|
2202
2042
|
}
|
|
2203
2043
|
),
|
|
2204
|
-
/* @__PURE__ */ (0,
|
|
2044
|
+
/* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
|
|
2205
2045
|
"path",
|
|
2206
2046
|
{
|
|
2207
2047
|
d: "M15 9.4V5C15 3.34315 13.6569 2 12 2C10.8224 2 9.80325 2.67852 9.3122 3.66593M12 19V22M12 19C8.13401 19 5 15.866 5 12V10M12 19C15.866 19 19 15.866 19 12V10M8 22H16M2 2L22 22M12 15C10.3431 15 9 13.6569 9 12V9L14.1226 14.12C13.5796 14.6637 12.8291 15 12 15Z",
|
|
@@ -2218,12 +2058,12 @@ var MicrophoneOffIcon = (0, import_react44.forwardRef)(
|
|
|
2218
2058
|
);
|
|
2219
2059
|
|
|
2220
2060
|
// src/icons/monitor.tsx
|
|
2221
|
-
var
|
|
2222
|
-
var
|
|
2223
|
-
var MonitorIcon = (0,
|
|
2061
|
+
var import_react43 = require("react");
|
|
2062
|
+
var import_jsx_runtime45 = require("react/jsx-runtime");
|
|
2063
|
+
var MonitorIcon = (0, import_react43.forwardRef)(
|
|
2224
2064
|
function MonitorIcon2(_a, ref) {
|
|
2225
2065
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2226
|
-
return /* @__PURE__ */ (0,
|
|
2066
|
+
return /* @__PURE__ */ (0, import_jsx_runtime45.jsxs)(
|
|
2227
2067
|
"svg",
|
|
2228
2068
|
__spreadProps(__spreadValues({
|
|
2229
2069
|
ref,
|
|
@@ -2235,7 +2075,7 @@ var MonitorIcon = (0, import_react45.forwardRef)(
|
|
|
2235
2075
|
className
|
|
2236
2076
|
}, other), {
|
|
2237
2077
|
children: [
|
|
2238
|
-
duotone && /* @__PURE__ */ (0,
|
|
2078
|
+
duotone && /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
|
|
2239
2079
|
"path",
|
|
2240
2080
|
{
|
|
2241
2081
|
opacity: "0.12",
|
|
@@ -2243,7 +2083,7 @@ var MonitorIcon = (0, import_react45.forwardRef)(
|
|
|
2243
2083
|
fill: "currentColor"
|
|
2244
2084
|
}
|
|
2245
2085
|
),
|
|
2246
|
-
/* @__PURE__ */ (0,
|
|
2086
|
+
/* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
|
|
2247
2087
|
"path",
|
|
2248
2088
|
{
|
|
2249
2089
|
d: "M7.57181 21C8.90661 20.3598 10.41 20 12 20C13.59 20 15.0934 20.3598 16.4282 21M6.8 17H17.2C18.8802 17 19.7202 17 20.362 16.673C20.9265 16.3854 21.3854 15.9265 21.673 15.362C22 14.7202 22 13.8802 22 12.2V7.8C22 6.11984 22 5.27976 21.673 4.63803C21.3854 4.07354 20.9265 3.6146 20.362 3.32698C19.7202 3 18.8802 3 17.2 3H6.8C5.11984 3 4.27976 3 3.63803 3.32698C3.07354 3.6146 2.6146 4.07354 2.32698 4.63803C2 5.27976 2 6.11984 2 7.8V12.2C2 13.8802 2 14.7202 2.32698 15.362C2.6146 15.9265 3.07354 16.3854 3.63803 16.673C4.27976 17 5.11984 17 6.8 17Z",
|
|
@@ -2260,12 +2100,12 @@ var MonitorIcon = (0, import_react45.forwardRef)(
|
|
|
2260
2100
|
);
|
|
2261
2101
|
|
|
2262
2102
|
// src/icons/notificationBox.tsx
|
|
2263
|
-
var
|
|
2264
|
-
var
|
|
2265
|
-
var NotificationBoxIcon = (0,
|
|
2103
|
+
var import_react44 = require("react");
|
|
2104
|
+
var import_jsx_runtime46 = require("react/jsx-runtime");
|
|
2105
|
+
var NotificationBoxIcon = (0, import_react44.forwardRef)(
|
|
2266
2106
|
function NotificationBoxIcon2(_a, ref) {
|
|
2267
2107
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2268
|
-
return /* @__PURE__ */ (0,
|
|
2108
|
+
return /* @__PURE__ */ (0, import_jsx_runtime46.jsxs)(
|
|
2269
2109
|
"svg",
|
|
2270
2110
|
__spreadProps(__spreadValues({
|
|
2271
2111
|
ref,
|
|
@@ -2277,7 +2117,7 @@ var NotificationBoxIcon = (0, import_react46.forwardRef)(
|
|
|
2277
2117
|
className
|
|
2278
2118
|
}, other), {
|
|
2279
2119
|
children: [
|
|
2280
|
-
duotone && /* @__PURE__ */ (0,
|
|
2120
|
+
duotone && /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
|
|
2281
2121
|
"path",
|
|
2282
2122
|
{
|
|
2283
2123
|
opacity: "0.12",
|
|
@@ -2285,7 +2125,7 @@ var NotificationBoxIcon = (0, import_react46.forwardRef)(
|
|
|
2285
2125
|
fill: "currentColor"
|
|
2286
2126
|
}
|
|
2287
2127
|
),
|
|
2288
|
-
/* @__PURE__ */ (0,
|
|
2128
|
+
/* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
|
|
2289
2129
|
"path",
|
|
2290
2130
|
{
|
|
2291
2131
|
d: "M11 4H7.8C6.11984 4 5.27976 4 4.63803 4.32698C4.07354 4.6146 3.6146 5.07354 3.32698 5.63803C3 6.27976 3 7.11984 3 8.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21H15.2C16.8802 21 17.7202 21 18.362 20.673C18.9265 20.3854 19.3854 19.9265 19.673 19.362C20 18.7202 20 17.8802 20 16.2V13M20.1213 3.87868C21.2929 5.05025 21.2929 6.94975 20.1213 8.12132C18.9497 9.29289 17.0503 9.29289 15.8787 8.12132C14.7071 6.94975 14.7071 5.05025 15.8787 3.87868C17.0503 2.70711 18.9497 2.70711 20.1213 3.87868Z",
|
|
@@ -2302,12 +2142,12 @@ var NotificationBoxIcon = (0, import_react46.forwardRef)(
|
|
|
2302
2142
|
);
|
|
2303
2143
|
|
|
2304
2144
|
// src/icons/pauseCircle.tsx
|
|
2305
|
-
var
|
|
2306
|
-
var
|
|
2307
|
-
var PauseCircleIcon = (0,
|
|
2145
|
+
var import_react45 = require("react");
|
|
2146
|
+
var import_jsx_runtime47 = require("react/jsx-runtime");
|
|
2147
|
+
var PauseCircleIcon = (0, import_react45.forwardRef)(
|
|
2308
2148
|
function PauseCircleIcon2(_a, ref) {
|
|
2309
2149
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2310
|
-
return /* @__PURE__ */ (0,
|
|
2150
|
+
return /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)(
|
|
2311
2151
|
"svg",
|
|
2312
2152
|
__spreadProps(__spreadValues({
|
|
2313
2153
|
ref,
|
|
@@ -2319,7 +2159,7 @@ var PauseCircleIcon = (0, import_react47.forwardRef)(
|
|
|
2319
2159
|
className
|
|
2320
2160
|
}, other), {
|
|
2321
2161
|
children: [
|
|
2322
|
-
duotone && /* @__PURE__ */ (0,
|
|
2162
|
+
duotone && /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
|
|
2323
2163
|
"path",
|
|
2324
2164
|
{
|
|
2325
2165
|
opacity: "0.12",
|
|
@@ -2327,7 +2167,7 @@ var PauseCircleIcon = (0, import_react47.forwardRef)(
|
|
|
2327
2167
|
fill: "currentColor"
|
|
2328
2168
|
}
|
|
2329
2169
|
),
|
|
2330
|
-
/* @__PURE__ */ (0,
|
|
2170
|
+
/* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
|
|
2331
2171
|
"path",
|
|
2332
2172
|
{
|
|
2333
2173
|
d: "M9.5 15V9M14.5 15V9M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z",
|
|
@@ -2344,12 +2184,12 @@ var PauseCircleIcon = (0, import_react47.forwardRef)(
|
|
|
2344
2184
|
);
|
|
2345
2185
|
|
|
2346
2186
|
// src/icons/phone.tsx
|
|
2347
|
-
var
|
|
2348
|
-
var
|
|
2349
|
-
var PhoneIcon = (0,
|
|
2187
|
+
var import_react46 = require("react");
|
|
2188
|
+
var import_jsx_runtime48 = require("react/jsx-runtime");
|
|
2189
|
+
var PhoneIcon = (0, import_react46.forwardRef)(
|
|
2350
2190
|
function PhoneIcon2(_a, ref) {
|
|
2351
2191
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2352
|
-
return /* @__PURE__ */ (0,
|
|
2192
|
+
return /* @__PURE__ */ (0, import_jsx_runtime48.jsxs)(
|
|
2353
2193
|
"svg",
|
|
2354
2194
|
__spreadProps(__spreadValues({
|
|
2355
2195
|
ref,
|
|
@@ -2361,7 +2201,7 @@ var PhoneIcon = (0, import_react48.forwardRef)(
|
|
|
2361
2201
|
className
|
|
2362
2202
|
}, other), {
|
|
2363
2203
|
children: [
|
|
2364
|
-
duotone && /* @__PURE__ */ (0,
|
|
2204
|
+
duotone && /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(
|
|
2365
2205
|
"path",
|
|
2366
2206
|
{
|
|
2367
2207
|
opacity: "0.12",
|
|
@@ -2369,7 +2209,7 @@ var PhoneIcon = (0, import_react48.forwardRef)(
|
|
|
2369
2209
|
fill: "currentColor"
|
|
2370
2210
|
}
|
|
2371
2211
|
),
|
|
2372
|
-
/* @__PURE__ */ (0,
|
|
2212
|
+
/* @__PURE__ */ (0, import_jsx_runtime48.jsx)(
|
|
2373
2213
|
"path",
|
|
2374
2214
|
{
|
|
2375
2215
|
d: "M12 17.5H12.01M8.2 22H15.8C16.9201 22 17.4802 22 17.908 21.782C18.2843 21.5903 18.5903 21.2843 18.782 20.908C19 20.4802 19 19.9201 19 18.8V5.2C19 4.07989 19 3.51984 18.782 3.09202C18.5903 2.71569 18.2843 2.40973 17.908 2.21799C17.4802 2 16.9201 2 15.8 2H8.2C7.0799 2 6.51984 2 6.09202 2.21799C5.71569 2.40973 5.40973 2.71569 5.21799 3.09202C5 3.51984 5 4.0799 5 5.2V18.8C5 19.9201 5 20.4802 5.21799 20.908C5.40973 21.2843 5.71569 21.5903 6.09202 21.782C6.51984 22 7.07989 22 8.2 22ZM12.5 17.5C12.5 17.7761 12.2761 18 12 18C11.7239 18 11.5 17.7761 11.5 17.5C11.5 17.2239 11.7239 17 12 17C12.2761 17 12.5 17.2239 12.5 17.5Z",
|
|
@@ -2386,12 +2226,12 @@ var PhoneIcon = (0, import_react48.forwardRef)(
|
|
|
2386
2226
|
);
|
|
2387
2227
|
|
|
2388
2228
|
// src/icons/pieChart.tsx
|
|
2389
|
-
var
|
|
2390
|
-
var
|
|
2391
|
-
var PieChartIcon = (0,
|
|
2229
|
+
var import_react47 = require("react");
|
|
2230
|
+
var import_jsx_runtime49 = require("react/jsx-runtime");
|
|
2231
|
+
var PieChartIcon = (0, import_react47.forwardRef)(
|
|
2392
2232
|
function PieChartIcon2(_a, ref) {
|
|
2393
2233
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2394
|
-
return /* @__PURE__ */ (0,
|
|
2234
|
+
return /* @__PURE__ */ (0, import_jsx_runtime49.jsxs)(
|
|
2395
2235
|
"svg",
|
|
2396
2236
|
__spreadProps(__spreadValues({
|
|
2397
2237
|
ref,
|
|
@@ -2403,7 +2243,7 @@ var PieChartIcon = (0, import_react49.forwardRef)(
|
|
|
2403
2243
|
className
|
|
2404
2244
|
}, other), {
|
|
2405
2245
|
children: [
|
|
2406
|
-
duotone && /* @__PURE__ */ (0,
|
|
2246
|
+
duotone && /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
|
|
2407
2247
|
"path",
|
|
2408
2248
|
{
|
|
2409
2249
|
opacity: "0.12",
|
|
@@ -2411,7 +2251,7 @@ var PieChartIcon = (0, import_react49.forwardRef)(
|
|
|
2411
2251
|
fill: "currentColor"
|
|
2412
2252
|
}
|
|
2413
2253
|
),
|
|
2414
|
-
/* @__PURE__ */ (0,
|
|
2254
|
+
/* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
|
|
2415
2255
|
"path",
|
|
2416
2256
|
{
|
|
2417
2257
|
d: "M17.2 14C17.477 14 17.6155 14 17.7278 14.0615C17.8204 14.1122 17.9065 14.2075 17.9478 14.3047C17.9978 14.4225 17.9852 14.5479 17.96 14.7987C17.8296 16.0987 17.3822 17.3514 16.6518 18.4445C15.7727 19.7601 14.5233 20.7855 13.0615 21.391C11.5997 21.9965 9.99113 22.155 8.43928 21.8463C6.88743 21.5376 5.46197 20.7757 4.34315 19.6568C3.22433 18.538 2.4624 17.1126 2.15372 15.5607C1.84504 14.0089 2.00347 12.4003 2.60897 10.9385C3.21447 9.47671 4.23985 8.22728 5.55544 7.34823C6.64856 6.61783 7.90125 6.17039 9.20131 6.03995C9.45207 6.01479 9.57745 6.00221 9.69528 6.0522C9.79249 6.09344 9.88776 6.17964 9.9385 6.27224C10 6.38449 10 6.52299 10 6.79999V13.2C10 13.48 10 13.62 10.0545 13.727C10.1024 13.8211 10.1789 13.8976 10.273 13.9455C10.38 14 10.52 14 10.8 14H17.2Z",
|
|
@@ -2422,7 +2262,7 @@ var PieChartIcon = (0, import_react49.forwardRef)(
|
|
|
2422
2262
|
}
|
|
2423
2263
|
),
|
|
2424
2264
|
",",
|
|
2425
|
-
/* @__PURE__ */ (0,
|
|
2265
|
+
/* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
|
|
2426
2266
|
"path",
|
|
2427
2267
|
{
|
|
2428
2268
|
d: "M14 2.79999C14 2.52298 14 2.38448 14.0615 2.27223C14.1122 2.17963 14.2075 2.09344 14.3047 2.0522C14.4225 2.0022 14.5479 2.01478 14.7987 2.03993C16.6271 2.22333 18.346 3.03229 19.6569 4.34313C20.9677 5.65398 21.7767 7.37289 21.9601 9.20129C21.9852 9.45206 21.9978 9.57744 21.9478 9.69527C21.9066 9.79248 21.8204 9.88774 21.7278 9.93848C21.6155 9.99998 21.477 9.99999 21.2 9.99999L14.8 9.99999C14.52 9.99999 14.38 9.99999 14.273 9.94549C14.1789 9.89755 14.1024 9.82106 14.0545 9.72698C14 9.62003 14 9.48001 14 9.19999V2.79999Z",
|
|
@@ -2439,12 +2279,12 @@ var PieChartIcon = (0, import_react49.forwardRef)(
|
|
|
2439
2279
|
);
|
|
2440
2280
|
|
|
2441
2281
|
// src/icons/playCircle.tsx
|
|
2442
|
-
var
|
|
2443
|
-
var
|
|
2444
|
-
var PlayCircleIcon = (0,
|
|
2282
|
+
var import_react48 = require("react");
|
|
2283
|
+
var import_jsx_runtime50 = require("react/jsx-runtime");
|
|
2284
|
+
var PlayCircleIcon = (0, import_react48.forwardRef)(
|
|
2445
2285
|
function PlayCircleIcon2(_a, ref) {
|
|
2446
2286
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2447
|
-
return /* @__PURE__ */ (0,
|
|
2287
|
+
return /* @__PURE__ */ (0, import_jsx_runtime50.jsxs)(
|
|
2448
2288
|
"svg",
|
|
2449
2289
|
__spreadProps(__spreadValues({
|
|
2450
2290
|
ref,
|
|
@@ -2456,7 +2296,7 @@ var PlayCircleIcon = (0, import_react50.forwardRef)(
|
|
|
2456
2296
|
className
|
|
2457
2297
|
}, other), {
|
|
2458
2298
|
children: [
|
|
2459
|
-
duotone && /* @__PURE__ */ (0,
|
|
2299
|
+
duotone && /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
|
|
2460
2300
|
"path",
|
|
2461
2301
|
{
|
|
2462
2302
|
opacity: "0.12",
|
|
@@ -2464,7 +2304,7 @@ var PlayCircleIcon = (0, import_react50.forwardRef)(
|
|
|
2464
2304
|
fill: "currentColor"
|
|
2465
2305
|
}
|
|
2466
2306
|
),
|
|
2467
|
-
/* @__PURE__ */ (0,
|
|
2307
|
+
/* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
|
|
2468
2308
|
"path",
|
|
2469
2309
|
{
|
|
2470
2310
|
d: "M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z",
|
|
@@ -2475,7 +2315,7 @@ var PlayCircleIcon = (0, import_react50.forwardRef)(
|
|
|
2475
2315
|
}
|
|
2476
2316
|
),
|
|
2477
2317
|
",",
|
|
2478
|
-
/* @__PURE__ */ (0,
|
|
2318
|
+
/* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
|
|
2479
2319
|
"path",
|
|
2480
2320
|
{
|
|
2481
2321
|
d: "M9.5 8.96533C9.5 8.48805 9.5 8.24941 9.59974 8.11618C9.68666 8.00007 9.81971 7.92744 9.96438 7.9171C10.1304 7.90525 10.3311 8.03429 10.7326 8.29239L15.4532 11.3271C15.8016 11.551 15.9758 11.663 16.0359 11.8054C16.0885 11.9298 16.0885 12.0702 16.0359 12.1946C15.9758 12.337 15.8016 12.449 15.4532 12.6729L10.7326 15.7076C10.3311 15.9657 10.1304 16.0948 9.96438 16.0829C9.81971 16.0726 9.68666 15.9999 9.59974 15.8838C9.5 15.7506 9.5 15.512 9.5 15.0347V8.96533Z",
|
|
@@ -2492,11 +2332,11 @@ var PlayCircleIcon = (0, import_react50.forwardRef)(
|
|
|
2492
2332
|
);
|
|
2493
2333
|
|
|
2494
2334
|
// src/icons/plus.tsx
|
|
2495
|
-
var
|
|
2496
|
-
var
|
|
2497
|
-
var PlusIcon = (0,
|
|
2335
|
+
var import_react49 = require("react");
|
|
2336
|
+
var import_jsx_runtime51 = require("react/jsx-runtime");
|
|
2337
|
+
var PlusIcon = (0, import_react49.forwardRef)(function PlusIcon2(_a, ref) {
|
|
2498
2338
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2499
|
-
return /* @__PURE__ */ (0,
|
|
2339
|
+
return /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(
|
|
2500
2340
|
"svg",
|
|
2501
2341
|
__spreadProps(__spreadValues({
|
|
2502
2342
|
ref,
|
|
@@ -2507,7 +2347,7 @@ var PlusIcon = (0, import_react51.forwardRef)(function PlusIcon2(_a, ref) {
|
|
|
2507
2347
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2508
2348
|
className
|
|
2509
2349
|
}, other), {
|
|
2510
|
-
children: /* @__PURE__ */ (0,
|
|
2350
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(
|
|
2511
2351
|
"path",
|
|
2512
2352
|
{
|
|
2513
2353
|
d: "M12 5V19M5 12H19",
|
|
@@ -2522,12 +2362,12 @@ var PlusIcon = (0, import_react51.forwardRef)(function PlusIcon2(_a, ref) {
|
|
|
2522
2362
|
});
|
|
2523
2363
|
|
|
2524
2364
|
// src/icons/plusCircle.tsx
|
|
2525
|
-
var
|
|
2526
|
-
var
|
|
2527
|
-
var PlusCircleIcon = (0,
|
|
2365
|
+
var import_react50 = require("react");
|
|
2366
|
+
var import_jsx_runtime52 = require("react/jsx-runtime");
|
|
2367
|
+
var PlusCircleIcon = (0, import_react50.forwardRef)(
|
|
2528
2368
|
function PlusCircleIcon2(_a, ref) {
|
|
2529
2369
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2530
|
-
return /* @__PURE__ */ (0,
|
|
2370
|
+
return /* @__PURE__ */ (0, import_jsx_runtime52.jsxs)(
|
|
2531
2371
|
"svg",
|
|
2532
2372
|
__spreadProps(__spreadValues({
|
|
2533
2373
|
ref,
|
|
@@ -2539,7 +2379,7 @@ var PlusCircleIcon = (0, import_react52.forwardRef)(
|
|
|
2539
2379
|
className
|
|
2540
2380
|
}, other), {
|
|
2541
2381
|
children: [
|
|
2542
|
-
duotone && /* @__PURE__ */ (0,
|
|
2382
|
+
duotone && /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
|
|
2543
2383
|
"path",
|
|
2544
2384
|
{
|
|
2545
2385
|
opacity: "0.12",
|
|
@@ -2547,7 +2387,7 @@ var PlusCircleIcon = (0, import_react52.forwardRef)(
|
|
|
2547
2387
|
fill: "currentColor"
|
|
2548
2388
|
}
|
|
2549
2389
|
),
|
|
2550
|
-
/* @__PURE__ */ (0,
|
|
2390
|
+
/* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
|
|
2551
2391
|
"path",
|
|
2552
2392
|
{
|
|
2553
2393
|
d: "M12 8V16M8 12H16M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z",
|
|
@@ -2564,12 +2404,12 @@ var PlusCircleIcon = (0, import_react52.forwardRef)(
|
|
|
2564
2404
|
);
|
|
2565
2405
|
|
|
2566
2406
|
// src/icons/puzzlePiece.tsx
|
|
2567
|
-
var
|
|
2568
|
-
var
|
|
2569
|
-
var PuzzlePieceIcon = (0,
|
|
2407
|
+
var import_react51 = require("react");
|
|
2408
|
+
var import_jsx_runtime53 = require("react/jsx-runtime");
|
|
2409
|
+
var PuzzlePieceIcon = (0, import_react51.forwardRef)(
|
|
2570
2410
|
function PuzzlePieceIcon2(_a, ref) {
|
|
2571
2411
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2572
|
-
return /* @__PURE__ */ (0,
|
|
2412
|
+
return /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)(
|
|
2573
2413
|
"svg",
|
|
2574
2414
|
__spreadProps(__spreadValues({
|
|
2575
2415
|
ref,
|
|
@@ -2581,7 +2421,7 @@ var PuzzlePieceIcon = (0, import_react53.forwardRef)(
|
|
|
2581
2421
|
className
|
|
2582
2422
|
}, other), {
|
|
2583
2423
|
children: [
|
|
2584
|
-
duotone && /* @__PURE__ */ (0,
|
|
2424
|
+
duotone && /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
|
|
2585
2425
|
"path",
|
|
2586
2426
|
{
|
|
2587
2427
|
opacity: "0.12",
|
|
@@ -2589,7 +2429,7 @@ var PuzzlePieceIcon = (0, import_react53.forwardRef)(
|
|
|
2589
2429
|
fill: "currentColor"
|
|
2590
2430
|
}
|
|
2591
2431
|
),
|
|
2592
|
-
/* @__PURE__ */ (0,
|
|
2432
|
+
/* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
|
|
2593
2433
|
"path",
|
|
2594
2434
|
{
|
|
2595
2435
|
d: "M7.5 4.5C7.5 3.11929 8.61929 2 10 2C11.3807 2 12.5 3.11929 12.5 4.5V6H13.5C14.8978 6 15.5967 6 16.1481 6.22836C16.8831 6.53284 17.4672 7.11687 17.7716 7.85195C18 8.40326 18 9.10218 18 10.5H19.5C20.8807 10.5 22 11.6193 22 13C22 14.3807 20.8807 15.5 19.5 15.5H18V17.2C18 18.8802 18 19.7202 17.673 20.362C17.3854 20.9265 16.9265 21.3854 16.362 21.673C15.7202 22 14.8802 22 13.2 22H12.5V20.25C12.5 19.0074 11.4926 18 10.25 18C9.00736 18 8 19.0074 8 20.25V22H6.8C5.11984 22 4.27976 22 3.63803 21.673C3.07354 21.3854 2.6146 20.9265 2.32698 20.362C2 19.7202 2 18.8802 2 17.2V15.5H3.5C4.88071 15.5 6 14.3807 6 13C6 11.6193 4.88071 10.5 3.5 10.5H2C2 9.10218 2 8.40326 2.22836 7.85195C2.53284 7.11687 3.11687 6.53284 3.85195 6.22836C4.40326 6 5.10218 6 6.5 6H7.5V4.5Z",
|
|
@@ -2606,12 +2446,12 @@ var PuzzlePieceIcon = (0, import_react53.forwardRef)(
|
|
|
2606
2446
|
);
|
|
2607
2447
|
|
|
2608
2448
|
// src/icons/qrCode.tsx
|
|
2609
|
-
var
|
|
2610
|
-
var
|
|
2611
|
-
var QrCodeIcon = (0,
|
|
2449
|
+
var import_react52 = require("react");
|
|
2450
|
+
var import_jsx_runtime54 = require("react/jsx-runtime");
|
|
2451
|
+
var QrCodeIcon = (0, import_react52.forwardRef)(
|
|
2612
2452
|
function QrCodeIcon2(_a, ref) {
|
|
2613
2453
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2614
|
-
return /* @__PURE__ */ (0,
|
|
2454
|
+
return /* @__PURE__ */ (0, import_jsx_runtime54.jsxs)(
|
|
2615
2455
|
"svg",
|
|
2616
2456
|
__spreadProps(__spreadValues({
|
|
2617
2457
|
ref,
|
|
@@ -2623,7 +2463,7 @@ var QrCodeIcon = (0, import_react54.forwardRef)(
|
|
|
2623
2463
|
className
|
|
2624
2464
|
}, other), {
|
|
2625
2465
|
children: [
|
|
2626
|
-
duotone && /* @__PURE__ */ (0,
|
|
2466
|
+
duotone && /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(
|
|
2627
2467
|
"path",
|
|
2628
2468
|
{
|
|
2629
2469
|
opacity: "0.4",
|
|
@@ -2634,7 +2474,7 @@ var QrCodeIcon = (0, import_react54.forwardRef)(
|
|
|
2634
2474
|
strokeLinejoin: "round"
|
|
2635
2475
|
}
|
|
2636
2476
|
),
|
|
2637
|
-
/* @__PURE__ */ (0,
|
|
2477
|
+
/* @__PURE__ */ (0, import_jsx_runtime54.jsx)(
|
|
2638
2478
|
"path",
|
|
2639
2479
|
{
|
|
2640
2480
|
d: "M7 12H12V17M17.6 21H19.4C19.9601 21 20.2401 21 20.454 20.891C20.6422 20.7951 20.7951 20.6422 20.891 20.454C21 20.2401 21 19.9601 21 19.4V17.6C21 17.0399 21 16.7599 20.891 16.546C20.7951 16.3578 20.6422 16.2049 20.454 16.109C20.2401 16 19.9601 16 19.4 16H17.6C17.0399 16 16.7599 16 16.546 16.109C16.3578 16.2049 16.2049 16.3578 16.109 16.546C16 16.7599 16 17.0399 16 17.6V19.4C16 19.9601 16 20.2401 16.109 20.454C16.2049 20.6422 16.3578 20.7951 16.546 20.891C16.7599 21 17.0399 21 17.6 21ZM17.6 8H19.4C19.9601 8 20.2401 8 20.454 7.89101C20.6422 7.79513 20.7951 7.64215 20.891 7.45399C21 7.24008 21 6.96005 21 6.4V4.6C21 4.03995 21 3.75992 20.891 3.54601C20.7951 3.35785 20.6422 3.20487 20.454 3.10899C20.2401 3 19.9601 3 19.4 3H17.6C17.0399 3 16.7599 3 16.546 3.10899C16.3578 3.20487 16.2049 3.35785 16.109 3.54601C16 3.75992 16 4.03995 16 4.6V6.4C16 6.96005 16 7.24008 16.109 7.45399C16.2049 7.64215 16.3578 7.79513 16.546 7.89101C16.7599 8 17.0399 8 17.6 8ZM4.6 8H6.4C6.96005 8 7.24008 8 7.45399 7.89101C7.64215 7.79513 7.79513 7.64215 7.89101 7.45399C8 7.24008 8 6.96005 8 6.4V4.6C8 4.03995 8 3.75992 7.89101 3.54601C7.79513 3.35785 7.64215 3.20487 7.45399 3.10899C7.24008 3 6.96005 3 6.4 3H4.6C4.03995 3 3.75992 3 3.54601 3.10899C3.35785 3.20487 3.20487 3.35785 3.10899 3.54601C3 3.75992 3 4.03995 3 4.6V6.4C3 6.96005 3 7.24008 3.10899 7.45399C3.20487 7.64215 3.35785 7.79513 3.54601 7.89101C3.75992 8 4.03995 8 4.6 8Z",
|
|
@@ -2651,12 +2491,12 @@ var QrCodeIcon = (0, import_react54.forwardRef)(
|
|
|
2651
2491
|
);
|
|
2652
2492
|
|
|
2653
2493
|
// src/icons/receiptCheck.tsx
|
|
2654
|
-
var
|
|
2655
|
-
var
|
|
2656
|
-
var ReceiptCheckIcon = (0,
|
|
2494
|
+
var import_react53 = require("react");
|
|
2495
|
+
var import_jsx_runtime55 = require("react/jsx-runtime");
|
|
2496
|
+
var ReceiptCheckIcon = (0, import_react53.forwardRef)(
|
|
2657
2497
|
function ReceiptCheckIcon2(_a, ref) {
|
|
2658
2498
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2659
|
-
return /* @__PURE__ */ (0,
|
|
2499
|
+
return /* @__PURE__ */ (0, import_jsx_runtime55.jsxs)(
|
|
2660
2500
|
"svg",
|
|
2661
2501
|
__spreadProps(__spreadValues({
|
|
2662
2502
|
ref,
|
|
@@ -2668,7 +2508,7 @@ var ReceiptCheckIcon = (0, import_react55.forwardRef)(
|
|
|
2668
2508
|
className
|
|
2669
2509
|
}, other), {
|
|
2670
2510
|
children: [
|
|
2671
|
-
duotone && /* @__PURE__ */ (0,
|
|
2511
|
+
duotone && /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
|
|
2672
2512
|
"path",
|
|
2673
2513
|
{
|
|
2674
2514
|
opacity: "0.12",
|
|
@@ -2676,7 +2516,7 @@ var ReceiptCheckIcon = (0, import_react55.forwardRef)(
|
|
|
2676
2516
|
fill: "currentColor"
|
|
2677
2517
|
}
|
|
2678
2518
|
),
|
|
2679
|
-
/* @__PURE__ */ (0,
|
|
2519
|
+
/* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
|
|
2680
2520
|
"path",
|
|
2681
2521
|
{
|
|
2682
2522
|
d: "M9 10.5L11 12.5L15.5 8M20 21V7.8C20 6.11984 20 5.27976 19.673 4.63803C19.3854 4.07354 18.9265 3.6146 18.362 3.32698C17.7202 3 16.8802 3 15.2 3H8.8C7.11984 3 6.27976 3 5.63803 3.32698C5.07354 3.6146 4.6146 4.07354 4.32698 4.63803C4 5.27976 4 6.11984 4 7.8V21L6.75 19L9.25 21L12 19L14.75 21L17.25 19L20 21Z",
|
|
@@ -2693,12 +2533,12 @@ var ReceiptCheckIcon = (0, import_react55.forwardRef)(
|
|
|
2693
2533
|
);
|
|
2694
2534
|
|
|
2695
2535
|
// src/icons/recording.tsx
|
|
2696
|
-
var
|
|
2697
|
-
var
|
|
2698
|
-
var RecordingIcon = (0,
|
|
2536
|
+
var import_react54 = require("react");
|
|
2537
|
+
var import_jsx_runtime56 = require("react/jsx-runtime");
|
|
2538
|
+
var RecordingIcon = (0, import_react54.forwardRef)(
|
|
2699
2539
|
function RecordingIcon2(_a, ref) {
|
|
2700
2540
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2701
|
-
return /* @__PURE__ */ (0,
|
|
2541
|
+
return /* @__PURE__ */ (0, import_jsx_runtime56.jsxs)(
|
|
2702
2542
|
"svg",
|
|
2703
2543
|
__spreadProps(__spreadValues({
|
|
2704
2544
|
ref,
|
|
@@ -2710,7 +2550,7 @@ var RecordingIcon = (0, import_react56.forwardRef)(
|
|
|
2710
2550
|
className
|
|
2711
2551
|
}, other), {
|
|
2712
2552
|
children: [
|
|
2713
|
-
duotone && /* @__PURE__ */ (0,
|
|
2553
|
+
duotone && /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
|
|
2714
2554
|
"path",
|
|
2715
2555
|
{
|
|
2716
2556
|
opacity: "0.12",
|
|
@@ -2718,7 +2558,7 @@ var RecordingIcon = (0, import_react56.forwardRef)(
|
|
|
2718
2558
|
fill: "currentColor"
|
|
2719
2559
|
}
|
|
2720
2560
|
),
|
|
2721
|
-
/* @__PURE__ */ (0,
|
|
2561
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
|
|
2722
2562
|
"path",
|
|
2723
2563
|
{
|
|
2724
2564
|
d: "M6 11V13M10 9V15M14 7V17M18 11V13M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z",
|
|
@@ -2735,12 +2575,12 @@ var RecordingIcon = (0, import_react56.forwardRef)(
|
|
|
2735
2575
|
);
|
|
2736
2576
|
|
|
2737
2577
|
// src/icons/refreshCcw.tsx
|
|
2738
|
-
var
|
|
2739
|
-
var
|
|
2740
|
-
var RefreshCcwIcon = (0,
|
|
2578
|
+
var import_react55 = require("react");
|
|
2579
|
+
var import_jsx_runtime57 = require("react/jsx-runtime");
|
|
2580
|
+
var RefreshCcwIcon = (0, import_react55.forwardRef)(
|
|
2741
2581
|
function RefreshCcwIcon2(_a, ref) {
|
|
2742
2582
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2743
|
-
return /* @__PURE__ */ (0,
|
|
2583
|
+
return /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
|
|
2744
2584
|
"svg",
|
|
2745
2585
|
__spreadProps(__spreadValues({
|
|
2746
2586
|
ref,
|
|
@@ -2751,7 +2591,7 @@ var RefreshCcwIcon = (0, import_react57.forwardRef)(
|
|
|
2751
2591
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2752
2592
|
className
|
|
2753
2593
|
}, other), {
|
|
2754
|
-
children: /* @__PURE__ */ (0,
|
|
2594
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
|
|
2755
2595
|
"path",
|
|
2756
2596
|
{
|
|
2757
2597
|
d: "M2 10C2 10 4.00498 7.26822 5.63384 5.63824C7.26269 4.00827 9.5136 3 12 3C16.9706 3 21 7.02944 21 12C21 16.9706 16.9706 21 12 21C7.89691 21 4.43511 18.2543 3.35177 14.5M2 10V4M2 10H8",
|
|
@@ -2767,12 +2607,12 @@ var RefreshCcwIcon = (0, import_react57.forwardRef)(
|
|
|
2767
2607
|
);
|
|
2768
2608
|
|
|
2769
2609
|
// src/icons/refreshCw.tsx
|
|
2770
|
-
var
|
|
2771
|
-
var
|
|
2772
|
-
var RefreshCwIcon = (0,
|
|
2610
|
+
var import_react56 = require("react");
|
|
2611
|
+
var import_jsx_runtime58 = require("react/jsx-runtime");
|
|
2612
|
+
var RefreshCwIcon = (0, import_react56.forwardRef)(
|
|
2773
2613
|
function RefreshCwIcon2(_a, ref) {
|
|
2774
2614
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2775
|
-
return /* @__PURE__ */ (0,
|
|
2615
|
+
return /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
|
|
2776
2616
|
"svg",
|
|
2777
2617
|
__spreadProps(__spreadValues({
|
|
2778
2618
|
ref,
|
|
@@ -2783,7 +2623,7 @@ var RefreshCwIcon = (0, import_react58.forwardRef)(
|
|
|
2783
2623
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2784
2624
|
className
|
|
2785
2625
|
}, other), {
|
|
2786
|
-
children: /* @__PURE__ */ (0,
|
|
2626
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
|
|
2787
2627
|
"path",
|
|
2788
2628
|
{
|
|
2789
2629
|
d: "M14 22C14 22 14.8492 21.8787 18.364 18.364C21.8787 14.8492 21.8787 9.15076 18.364 5.63604C17.1187 4.39077 15.5993 3.58669 14 3.22383M14 22H20M14 22L14 16M10 2.00019C10 2.00019 9.15076 2.12152 5.63604 5.63624C2.12132 9.15095 2.12132 14.8494 5.63604 18.3642C6.88131 19.6094 8.40072 20.4135 10 20.7764M10 2.00019L4 2M10 2.00019L10 8",
|
|
@@ -2799,12 +2639,12 @@ var RefreshCwIcon = (0, import_react58.forwardRef)(
|
|
|
2799
2639
|
);
|
|
2800
2640
|
|
|
2801
2641
|
// src/icons/rocket.tsx
|
|
2802
|
-
var
|
|
2803
|
-
var
|
|
2804
|
-
var RocketIcon = (0,
|
|
2642
|
+
var import_react57 = require("react");
|
|
2643
|
+
var import_jsx_runtime59 = require("react/jsx-runtime");
|
|
2644
|
+
var RocketIcon = (0, import_react57.forwardRef)(
|
|
2805
2645
|
function RocketIcon2(_a, ref) {
|
|
2806
2646
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2807
|
-
return /* @__PURE__ */ (0,
|
|
2647
|
+
return /* @__PURE__ */ (0, import_jsx_runtime59.jsxs)(
|
|
2808
2648
|
"svg",
|
|
2809
2649
|
__spreadProps(__spreadValues({
|
|
2810
2650
|
ref,
|
|
@@ -2816,7 +2656,7 @@ var RocketIcon = (0, import_react59.forwardRef)(
|
|
|
2816
2656
|
className
|
|
2817
2657
|
}, other), {
|
|
2818
2658
|
children: [
|
|
2819
|
-
duotone && /* @__PURE__ */ (0,
|
|
2659
|
+
duotone && /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
|
|
2820
2660
|
"path",
|
|
2821
2661
|
{
|
|
2822
2662
|
opacity: "0.12",
|
|
@@ -2824,7 +2664,7 @@ var RocketIcon = (0, import_react59.forwardRef)(
|
|
|
2824
2664
|
fill: "currentColor"
|
|
2825
2665
|
}
|
|
2826
2666
|
),
|
|
2827
|
-
/* @__PURE__ */ (0,
|
|
2667
|
+
/* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
|
|
2828
2668
|
"path",
|
|
2829
2669
|
{
|
|
2830
2670
|
d: "M12 15L9 12M12 15C13.3968 14.4687 14.7369 13.7987 16 13M12 15V20C12 20 15.03 19.45 16 18C17.08 16.38 16 13 16 13M9 12C9.53214 10.6194 10.2022 9.29607 11 8.05C12.1652 6.18699 13.7876 4.65305 15.713 3.5941C17.6384 2.53514 19.8027 1.98637 22 2C22 4.72 21.22 9.5 16 13M9 12H4C4 12 4.55 8.97 6 8C7.62 6.92 11 8 11 8M4.5 16.5C3 17.76 2.5 21.5 2.5 21.5C2.5 21.5 6.24 21 7.5 19.5C8.21 18.66 8.2 17.37 7.41 16.59C7.02131 16.219 6.50929 16.0046 5.97223 15.988C5.43516 15.9714 4.91088 16.1537 4.5 16.5Z",
|
|
@@ -2841,11 +2681,11 @@ var RocketIcon = (0, import_react59.forwardRef)(
|
|
|
2841
2681
|
);
|
|
2842
2682
|
|
|
2843
2683
|
// src/icons/save.tsx
|
|
2844
|
-
var
|
|
2845
|
-
var
|
|
2846
|
-
var SaveIcon = (0,
|
|
2684
|
+
var import_react58 = require("react");
|
|
2685
|
+
var import_jsx_runtime60 = require("react/jsx-runtime");
|
|
2686
|
+
var SaveIcon = (0, import_react58.forwardRef)(function SaveIcon2(_a, ref) {
|
|
2847
2687
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2848
|
-
return /* @__PURE__ */ (0,
|
|
2688
|
+
return /* @__PURE__ */ (0, import_jsx_runtime60.jsxs)(
|
|
2849
2689
|
"svg",
|
|
2850
2690
|
__spreadProps(__spreadValues({
|
|
2851
2691
|
ref,
|
|
@@ -2857,15 +2697,15 @@ var SaveIcon = (0, import_react60.forwardRef)(function SaveIcon2(_a, ref) {
|
|
|
2857
2697
|
className
|
|
2858
2698
|
}, other), {
|
|
2859
2699
|
children: [
|
|
2860
|
-
duotone && /* @__PURE__ */ (0,
|
|
2861
|
-
/* @__PURE__ */ (0,
|
|
2700
|
+
duotone && /* @__PURE__ */ (0, import_jsx_runtime60.jsxs)("g", { opacity: "0.12", children: [
|
|
2701
|
+
/* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
|
|
2862
2702
|
"path",
|
|
2863
2703
|
{
|
|
2864
2704
|
d: "M7 3H15.2929C15.7456 3 16.1799 3.17986 16.5 3.5C16.8201 3.82014 17 4.25435 17 4.70711V6.4C17 6.96005 17 7.24008 16.891 7.45399C16.7951 7.64215 16.6422 7.79513 16.454 7.89101C16.2401 8 15.9601 8 15.4 8H8.6C8.03995 8 7.75992 8 7.54601 7.89101C7.35785 7.79513 7.20487 7.64215 7.10899 7.45399C7 7.24008 7 6.96005 7 6.4V3Z",
|
|
2865
2705
|
fill: "currentColor"
|
|
2866
2706
|
}
|
|
2867
2707
|
),
|
|
2868
|
-
/* @__PURE__ */ (0,
|
|
2708
|
+
/* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
|
|
2869
2709
|
"path",
|
|
2870
2710
|
{
|
|
2871
2711
|
d: "M7 14.6C7 14.0399 7 13.7599 7.10899 13.546C7.20487 13.3578 7.35785 13.2049 7.54601 13.109C7.75992 13 8.03995 13 8.6 13H15.4C15.9601 13 16.2401 13 16.454 13.109C16.6422 13.2049 16.7951 13.3578 16.891 13.546C17 13.7599 17 14.0399 17 14.6V21H7V14.6Z",
|
|
@@ -2873,7 +2713,7 @@ var SaveIcon = (0, import_react60.forwardRef)(function SaveIcon2(_a, ref) {
|
|
|
2873
2713
|
}
|
|
2874
2714
|
)
|
|
2875
2715
|
] }),
|
|
2876
|
-
/* @__PURE__ */ (0,
|
|
2716
|
+
/* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
|
|
2877
2717
|
"path",
|
|
2878
2718
|
{
|
|
2879
2719
|
d: "M7 3V6.4C7 6.96005 7 7.24008 7.10899 7.45399C7.20487 7.64215 7.35785 7.79513 7.54601 7.89101C7.75992 8 8.03995 8 8.6 8H15.4C15.9601 8 16.2401 8 16.454 7.89101C16.6422 7.79513 16.7951 7.64215 16.891 7.45399C17 7.24008 17 6.96005 17 6.4V4M17 21V14.6C17 14.0399 17 13.7599 16.891 13.546C16.7951 13.3578 16.6422 13.2049 16.454 13.109C16.2401 13 15.9601 13 15.4 13H8.6C8.03995 13 7.75992 13 7.54601 13.109C7.35785 13.2049 7.20487 13.3578 7.10899 13.546C7 13.7599 7 14.0399 7 14.6V21M21 9.32548V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V7.8C3 6.11984 3 5.27976 3.32698 4.63803C3.6146 4.07354 4.07354 3.6146 4.63803 3.32698C5.27976 3 6.11984 3 7.8 3H14.6745C15.1637 3 15.4083 3 15.6385 3.05526C15.8425 3.10425 16.0376 3.18506 16.2166 3.29472C16.4184 3.4184 16.5914 3.59135 16.9373 3.93726L20.0627 7.06274C20.4086 7.40865 20.5816 7.5816 20.7053 7.78343C20.8149 7.96237 20.8957 8.15746 20.9447 8.36154C21 8.59171 21 8.8363 21 9.32548Z",
|
|
@@ -2889,12 +2729,12 @@ var SaveIcon = (0, import_react60.forwardRef)(function SaveIcon2(_a, ref) {
|
|
|
2889
2729
|
});
|
|
2890
2730
|
|
|
2891
2731
|
// src/icons/search.tsx
|
|
2892
|
-
var
|
|
2893
|
-
var
|
|
2894
|
-
var SearchMdIcon = (0,
|
|
2732
|
+
var import_react59 = require("react");
|
|
2733
|
+
var import_jsx_runtime61 = require("react/jsx-runtime");
|
|
2734
|
+
var SearchMdIcon = (0, import_react59.forwardRef)(
|
|
2895
2735
|
function SearchMdIcon2(_a, ref) {
|
|
2896
2736
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2897
|
-
return /* @__PURE__ */ (0,
|
|
2737
|
+
return /* @__PURE__ */ (0, import_jsx_runtime61.jsxs)(
|
|
2898
2738
|
"svg",
|
|
2899
2739
|
__spreadProps(__spreadValues({
|
|
2900
2740
|
ref,
|
|
@@ -2906,7 +2746,7 @@ var SearchMdIcon = (0, import_react61.forwardRef)(
|
|
|
2906
2746
|
className
|
|
2907
2747
|
}, other), {
|
|
2908
2748
|
children: [
|
|
2909
|
-
duotone && /* @__PURE__ */ (0,
|
|
2749
|
+
duotone && /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(
|
|
2910
2750
|
"path",
|
|
2911
2751
|
{
|
|
2912
2752
|
opacity: "0.12",
|
|
@@ -2914,7 +2754,7 @@ var SearchMdIcon = (0, import_react61.forwardRef)(
|
|
|
2914
2754
|
fill: "currentColor"
|
|
2915
2755
|
}
|
|
2916
2756
|
),
|
|
2917
|
-
/* @__PURE__ */ (0,
|
|
2757
|
+
/* @__PURE__ */ (0, import_jsx_runtime61.jsx)(
|
|
2918
2758
|
"path",
|
|
2919
2759
|
{
|
|
2920
2760
|
d: "M21 21L16.65 16.65M19 11C19 15.4183 15.4183 19 11 19C6.58172 19 3 15.4183 3 11C3 6.58172 6.58172 3 11 3C15.4183 3 19 6.58172 19 11Z",
|
|
@@ -2931,11 +2771,11 @@ var SearchMdIcon = (0, import_react61.forwardRef)(
|
|
|
2931
2771
|
);
|
|
2932
2772
|
|
|
2933
2773
|
// src/icons/send.tsx
|
|
2934
|
-
var
|
|
2935
|
-
var
|
|
2936
|
-
var SendIcon = (0,
|
|
2774
|
+
var import_react60 = require("react");
|
|
2775
|
+
var import_jsx_runtime62 = require("react/jsx-runtime");
|
|
2776
|
+
var SendIcon = (0, import_react60.forwardRef)(function SendIcon2(_a, ref) {
|
|
2937
2777
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2938
|
-
return /* @__PURE__ */ (0,
|
|
2778
|
+
return /* @__PURE__ */ (0, import_jsx_runtime62.jsxs)(
|
|
2939
2779
|
"svg",
|
|
2940
2780
|
__spreadProps(__spreadValues({
|
|
2941
2781
|
ref,
|
|
@@ -2947,7 +2787,7 @@ var SendIcon = (0, import_react62.forwardRef)(function SendIcon2(_a, ref) {
|
|
|
2947
2787
|
className
|
|
2948
2788
|
}, other), {
|
|
2949
2789
|
children: [
|
|
2950
|
-
duotone && /* @__PURE__ */ (0,
|
|
2790
|
+
duotone && /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
|
|
2951
2791
|
"path",
|
|
2952
2792
|
{
|
|
2953
2793
|
opacity: "0.12",
|
|
@@ -2955,7 +2795,7 @@ var SendIcon = (0, import_react62.forwardRef)(function SendIcon2(_a, ref) {
|
|
|
2955
2795
|
fill: "currentColor"
|
|
2956
2796
|
}
|
|
2957
2797
|
),
|
|
2958
|
-
/* @__PURE__ */ (0,
|
|
2798
|
+
/* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
|
|
2959
2799
|
"path",
|
|
2960
2800
|
{
|
|
2961
2801
|
d: "M10.5 12H5M4.91534 12.2915L2.58042 19.2662C2.39699 19.8141 2.30527 20.0881 2.37109 20.2568C2.42825 20.4033 2.55102 20.5144 2.7025 20.5567C2.87693 20.6054 3.1404 20.4868 3.66733 20.2497L20.3788 12.7295C20.8931 12.4981 21.1503 12.3823 21.2298 12.2216C21.2988 12.0819 21.2988 11.918 21.2298 11.7784C21.1503 11.6176 20.8931 11.5019 20.3788 11.2704L3.66151 3.7477C3.13616 3.51129 2.87349 3.39309 2.69923 3.44158C2.54789 3.48369 2.42514 3.59448 2.36778 3.74072C2.30174 3.90911 2.39247 4.18249 2.57395 4.72924L4.91599 11.7855C4.94716 11.8794 4.96275 11.9264 4.9689 11.9744C4.97436 12.017 4.9743 12.0601 4.96873 12.1027C4.96246 12.1507 4.94675 12.1976 4.91534 12.2915Z",
|
|
@@ -2971,12 +2811,12 @@ var SendIcon = (0, import_react62.forwardRef)(function SendIcon2(_a, ref) {
|
|
|
2971
2811
|
});
|
|
2972
2812
|
|
|
2973
2813
|
// src/icons/settings.tsx
|
|
2974
|
-
var
|
|
2975
|
-
var
|
|
2976
|
-
var SettingsIcon = (0,
|
|
2814
|
+
var import_react61 = require("react");
|
|
2815
|
+
var import_jsx_runtime63 = require("react/jsx-runtime");
|
|
2816
|
+
var SettingsIcon = (0, import_react61.forwardRef)(
|
|
2977
2817
|
function SettingsIcon2(_a, ref) {
|
|
2978
2818
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2979
|
-
return /* @__PURE__ */ (0,
|
|
2819
|
+
return /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)(
|
|
2980
2820
|
"svg",
|
|
2981
2821
|
__spreadProps(__spreadValues({
|
|
2982
2822
|
ref,
|
|
@@ -2988,7 +2828,7 @@ var SettingsIcon = (0, import_react63.forwardRef)(
|
|
|
2988
2828
|
className
|
|
2989
2829
|
}, other), {
|
|
2990
2830
|
children: [
|
|
2991
|
-
duotone && /* @__PURE__ */ (0,
|
|
2831
|
+
duotone && /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
|
|
2992
2832
|
"path",
|
|
2993
2833
|
{
|
|
2994
2834
|
opacity: "0.12",
|
|
@@ -2998,7 +2838,7 @@ var SettingsIcon = (0, import_react63.forwardRef)(
|
|
|
2998
2838
|
fill: "currentColor"
|
|
2999
2839
|
}
|
|
3000
2840
|
),
|
|
3001
|
-
/* @__PURE__ */ (0,
|
|
2841
|
+
/* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
|
|
3002
2842
|
"path",
|
|
3003
2843
|
{
|
|
3004
2844
|
d: "M12 15C13.6569 15 15 13.6569 15 12C15 10.3431 13.6569 9 12 9C10.3431 9 9 10.3431 9 12C9 13.6569 10.3431 15 12 15Z",
|
|
@@ -3009,7 +2849,7 @@ var SettingsIcon = (0, import_react63.forwardRef)(
|
|
|
3009
2849
|
}
|
|
3010
2850
|
),
|
|
3011
2851
|
",",
|
|
3012
|
-
/* @__PURE__ */ (0,
|
|
2852
|
+
/* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
|
|
3013
2853
|
"path",
|
|
3014
2854
|
{
|
|
3015
2855
|
d: "M18.7273 14.7273C18.6063 15.0015 18.5702 15.3056 18.6236 15.6005C18.6771 15.8954 18.8177 16.1676 19.0273 16.3818L19.0818 16.4364C19.2509 16.6052 19.385 16.8057 19.4765 17.0265C19.568 17.2472 19.6151 17.4838 19.6151 17.7227C19.6151 17.9617 19.568 18.1983 19.4765 18.419C19.385 18.6397 19.2509 18.8402 19.0818 19.0091C18.913 19.1781 18.7124 19.3122 18.4917 19.4037C18.271 19.4952 18.0344 19.5423 17.7955 19.5423C17.5565 19.5423 17.3199 19.4952 17.0992 19.4037C16.8785 19.3122 16.678 19.1781 16.5091 19.0091L16.4545 18.9545C16.2403 18.745 15.9682 18.6044 15.6733 18.5509C15.3784 18.4974 15.0742 18.5335 14.8 18.6545C14.5311 18.7698 14.3018 18.9611 14.1403 19.205C13.9788 19.4489 13.8921 19.7347 13.8909 20.0273V20.1818C13.8909 20.664 13.6994 21.1265 13.3584 21.4675C13.0174 21.8084 12.5549 22 12.0727 22C11.5905 22 11.1281 21.8084 10.7871 21.4675C10.4461 21.1265 10.2545 20.664 10.2545 20.1818V20.1C10.2475 19.7991 10.1501 19.5073 9.97501 19.2625C9.79991 19.0176 9.55521 18.8312 9.27273 18.7273C8.99853 18.6063 8.69437 18.5702 8.39947 18.6236C8.10456 18.6771 7.83244 18.8177 7.61818 19.0273L7.56364 19.0818C7.39478 19.2509 7.19425 19.385 6.97353 19.4765C6.7528 19.568 6.51621 19.6151 6.27727 19.6151C6.03834 19.6151 5.80174 19.568 5.58102 19.4765C5.36029 19.385 5.15977 19.2509 4.99091 19.0818C4.82186 18.913 4.68775 18.7124 4.59626 18.4917C4.50476 18.271 4.45766 18.0344 4.45766 17.7955C4.45766 17.5565 4.50476 17.3199 4.59626 17.0992C4.68775 16.8785 4.82186 16.678 4.99091 16.5091L5.04545 16.4545C5.25503 16.2403 5.39562 15.9682 5.4491 15.6733C5.50257 15.3784 5.46647 15.0742 5.34545 14.8C5.23022 14.5311 5.03887 14.3018 4.79497 14.1403C4.55107 13.9788 4.26526 13.8921 3.97273 13.8909H3.81818C3.33597 13.8909 2.87351 13.6994 2.53253 13.3584C2.19156 13.0174 2 12.5549 2 12.0727C2 11.5905 2.19156 11.1281 2.53253 10.7871C2.87351 10.4461 3.33597 10.2545 3.81818 10.2545H3.9C4.2009 10.2475 4.49273 10.1501 4.73754 9.97501C4.98236 9.79991 5.16883 9.55521 5.27273 9.27273C5.39374 8.99853 5.42984 8.69437 5.37637 8.39947C5.3229 8.10456 5.18231 7.83244 4.97273 7.61818L4.91818 7.56364C4.74913 7.39478 4.61503 7.19425 4.52353 6.97353C4.43203 6.7528 4.38493 6.51621 4.38493 6.27727C4.38493 6.03834 4.43203 5.80174 4.52353 5.58102C4.61503 5.36029 4.74913 5.15977 4.91818 4.99091C5.08704 4.82186 5.28757 4.68775 5.50829 4.59626C5.72901 4.50476 5.96561 4.45766 6.20455 4.45766C6.44348 4.45766 6.68008 4.50476 6.9008 4.59626C7.12152 4.68775 7.32205 4.82186 7.49091 4.99091L7.54545 5.04545C7.75971 5.25503 8.03183 5.39562 8.32674 5.4491C8.62164 5.50257 8.9258 5.46647 9.2 5.34545H9.27273C9.54161 5.23022 9.77093 5.03887 9.93245 4.79497C10.094 4.55107 10.1807 4.26526 10.1818 3.97273V3.81818C10.1818 3.33597 10.3734 2.87351 10.7144 2.53253C11.0553 2.19156 11.5178 2 12 2C12.4822 2 12.9447 2.19156 13.2856 2.53253C13.6266 2.87351 13.8182 3.33597 13.8182 3.81818V3.9C13.8193 4.19253 13.906 4.47834 14.0676 4.72224C14.2291 4.96614 14.4584 5.15749 14.7273 5.27273C15.0015 5.39374 15.3056 5.42984 15.6005 5.37637C15.8954 5.3229 16.1676 5.18231 16.3818 4.97273L16.4364 4.91818C16.6052 4.74913 16.8057 4.61503 17.0265 4.52353C17.2472 4.43203 17.4838 4.38493 17.7227 4.38493C17.9617 4.38493 18.1983 4.43203 18.419 4.52353C18.6397 4.61503 18.8402 4.74913 19.0091 4.91818C19.1781 5.08704 19.3122 5.28757 19.4037 5.50829C19.4952 5.72901 19.5423 5.96561 19.5423 6.20455C19.5423 6.44348 19.4952 6.68008 19.4037 6.9008C19.3122 7.12152 19.1781 7.32205 19.0091 7.49091L18.9545 7.54545C18.745 7.75971 18.6044 8.03183 18.5509 8.32674C18.4974 8.62164 18.5335 8.9258 18.6545 9.2V9.27273C18.7698 9.54161 18.9611 9.77093 19.205 9.93245C19.4489 10.094 19.7347 10.1807 20.0273 10.1818H20.1818C20.664 10.1818 21.1265 10.3734 21.4675 10.7144C21.8084 11.0553 22 11.5178 22 12C22 12.4822 21.8084 12.9447 21.4675 13.2856C21.1265 13.6266 20.664 13.8182 20.1818 13.8182H20.1C19.8075 13.8193 19.5217 13.906 19.2778 14.0676C19.0339 14.2291 18.8425 14.4584 18.7273 14.7273Z",
|
|
@@ -3026,12 +2866,12 @@ var SettingsIcon = (0, import_react63.forwardRef)(
|
|
|
3026
2866
|
);
|
|
3027
2867
|
|
|
3028
2868
|
// src/icons/share.tsx
|
|
3029
|
-
var
|
|
3030
|
-
var
|
|
3031
|
-
var ShareIcon = (0,
|
|
2869
|
+
var import_react62 = require("react");
|
|
2870
|
+
var import_jsx_runtime64 = require("react/jsx-runtime");
|
|
2871
|
+
var ShareIcon = (0, import_react62.forwardRef)(
|
|
3032
2872
|
function ShareIcon2(_a, ref) {
|
|
3033
2873
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3034
|
-
return /* @__PURE__ */ (0,
|
|
2874
|
+
return /* @__PURE__ */ (0, import_jsx_runtime64.jsxs)(
|
|
3035
2875
|
"svg",
|
|
3036
2876
|
__spreadProps(__spreadValues({
|
|
3037
2877
|
ref,
|
|
@@ -3043,22 +2883,22 @@ var ShareIcon = (0, import_react64.forwardRef)(
|
|
|
3043
2883
|
className
|
|
3044
2884
|
}, other), {
|
|
3045
2885
|
children: [
|
|
3046
|
-
duotone && /* @__PURE__ */ (0,
|
|
3047
|
-
/* @__PURE__ */ (0,
|
|
2886
|
+
duotone && /* @__PURE__ */ (0, import_jsx_runtime64.jsxs)("g", { opacity: "0.12", children: [
|
|
2887
|
+
/* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
|
|
3048
2888
|
"path",
|
|
3049
2889
|
{
|
|
3050
2890
|
d: "M18 8C19.6569 8 21 6.65685 21 5C21 3.34315 19.6569 2 18 2C16.3431 2 15 3.34315 15 5C15 6.65685 16.3431 8 18 8Z",
|
|
3051
2891
|
fill: "currentColor"
|
|
3052
2892
|
}
|
|
3053
2893
|
),
|
|
3054
|
-
/* @__PURE__ */ (0,
|
|
2894
|
+
/* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
|
|
3055
2895
|
"path",
|
|
3056
2896
|
{
|
|
3057
2897
|
d: "M6 15C7.65685 15 9 13.6569 9 12C9 10.3431 7.65685 9 6 9C4.34315 9 3 10.3431 3 12C3 13.6569 4.34315 15 6 15Z",
|
|
3058
2898
|
fill: "currentColor"
|
|
3059
2899
|
}
|
|
3060
2900
|
),
|
|
3061
|
-
/* @__PURE__ */ (0,
|
|
2901
|
+
/* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
|
|
3062
2902
|
"path",
|
|
3063
2903
|
{
|
|
3064
2904
|
d: "M18 22C19.6569 22 21 20.6569 21 19C21 17.3431 19.6569 16 18 16C16.3431 16 15 17.3431 15 19C15 20.6569 16.3431 22 18 22Z",
|
|
@@ -3066,7 +2906,7 @@ var ShareIcon = (0, import_react64.forwardRef)(
|
|
|
3066
2906
|
}
|
|
3067
2907
|
)
|
|
3068
2908
|
] }),
|
|
3069
|
-
/* @__PURE__ */ (0,
|
|
2909
|
+
/* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
|
|
3070
2910
|
"path",
|
|
3071
2911
|
{
|
|
3072
2912
|
d: "M8.59 13.51L15.42 17.49M15.41 6.51L8.59 10.49M21 5C21 6.65685 19.6569 8 18 8C16.3431 8 15 6.65685 15 5C15 3.34315 16.3431 2 18 2C19.6569 2 21 3.34315 21 5ZM9 12C9 13.6569 7.65685 15 6 15C4.34315 15 3 13.6569 3 12C3 10.3431 4.34315 9 6 9C7.65685 9 9 10.3431 9 12ZM21 19C21 20.6569 19.6569 22 18 22C16.3431 22 15 20.6569 15 19C15 17.3431 16.3431 16 18 16C19.6569 16 21 17.3431 21 19Z",
|
|
@@ -3083,12 +2923,12 @@ var ShareIcon = (0, import_react64.forwardRef)(
|
|
|
3083
2923
|
);
|
|
3084
2924
|
|
|
3085
2925
|
// src/icons/skipBack.tsx
|
|
3086
|
-
var
|
|
3087
|
-
var
|
|
3088
|
-
var SkipBackIcon = (0,
|
|
2926
|
+
var import_react63 = require("react");
|
|
2927
|
+
var import_jsx_runtime65 = require("react/jsx-runtime");
|
|
2928
|
+
var SkipBackIcon = (0, import_react63.forwardRef)(
|
|
3089
2929
|
function SkipBackIcon2(_a, ref) {
|
|
3090
2930
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3091
|
-
return /* @__PURE__ */ (0,
|
|
2931
|
+
return /* @__PURE__ */ (0, import_jsx_runtime65.jsxs)(
|
|
3092
2932
|
"svg",
|
|
3093
2933
|
__spreadProps(__spreadValues({
|
|
3094
2934
|
ref,
|
|
@@ -3100,7 +2940,7 @@ var SkipBackIcon = (0, import_react65.forwardRef)(
|
|
|
3100
2940
|
className
|
|
3101
2941
|
}, other), {
|
|
3102
2942
|
children: [
|
|
3103
|
-
duotone && /* @__PURE__ */ (0,
|
|
2943
|
+
duotone && /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
|
|
3104
2944
|
"path",
|
|
3105
2945
|
{
|
|
3106
2946
|
opacity: "0.12",
|
|
@@ -3108,7 +2948,7 @@ var SkipBackIcon = (0, import_react65.forwardRef)(
|
|
|
3108
2948
|
fill: "currentColor"
|
|
3109
2949
|
}
|
|
3110
2950
|
),
|
|
3111
|
-
/* @__PURE__ */ (0,
|
|
2951
|
+
/* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
|
|
3112
2952
|
"path",
|
|
3113
2953
|
{
|
|
3114
2954
|
d: "M5 19V5M16.4005 6.07961L10.5617 10.7506C10.0279 11.1777 9.76097 11.3912 9.66433 11.6492C9.5796 11.8754 9.5796 12.1246 9.66433 12.3508C9.76097 12.6088 10.0279 12.8223 10.5617 13.2494L16.4005 17.9204C17.2327 18.5861 17.6487 18.919 17.9989 18.9194C18.3035 18.9197 18.5916 18.7812 18.7815 18.5432C19 18.2695 19 17.7367 19 16.671V7.329C19 6.2633 19 5.73045 18.7815 5.45677C18.5916 5.21876 18.3035 5.0803 17.9989 5.08063C17.6487 5.081 17.2327 5.41387 16.4005 6.07961Z",
|
|
@@ -3125,12 +2965,12 @@ var SkipBackIcon = (0, import_react65.forwardRef)(
|
|
|
3125
2965
|
);
|
|
3126
2966
|
|
|
3127
2967
|
// src/icons/skipForward.tsx
|
|
3128
|
-
var
|
|
3129
|
-
var
|
|
3130
|
-
var SkipForwardIcon = (0,
|
|
2968
|
+
var import_react64 = require("react");
|
|
2969
|
+
var import_jsx_runtime66 = require("react/jsx-runtime");
|
|
2970
|
+
var SkipForwardIcon = (0, import_react64.forwardRef)(
|
|
3131
2971
|
function SkipForwardIcon2(_a, ref) {
|
|
3132
2972
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3133
|
-
return /* @__PURE__ */ (0,
|
|
2973
|
+
return /* @__PURE__ */ (0, import_jsx_runtime66.jsxs)(
|
|
3134
2974
|
"svg",
|
|
3135
2975
|
__spreadProps(__spreadValues({
|
|
3136
2976
|
ref,
|
|
@@ -3142,7 +2982,7 @@ var SkipForwardIcon = (0, import_react66.forwardRef)(
|
|
|
3142
2982
|
className
|
|
3143
2983
|
}, other), {
|
|
3144
2984
|
children: [
|
|
3145
|
-
duotone && /* @__PURE__ */ (0,
|
|
2985
|
+
duotone && /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
|
|
3146
2986
|
"path",
|
|
3147
2987
|
{
|
|
3148
2988
|
opacity: "0.12",
|
|
@@ -3150,7 +2990,7 @@ var SkipForwardIcon = (0, import_react66.forwardRef)(
|
|
|
3150
2990
|
fill: "currentColor"
|
|
3151
2991
|
}
|
|
3152
2992
|
),
|
|
3153
|
-
/* @__PURE__ */ (0,
|
|
2993
|
+
/* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
|
|
3154
2994
|
"path",
|
|
3155
2995
|
{
|
|
3156
2996
|
d: "M19 5V19M7.59951 17.9204L13.4383 13.2494C13.9721 12.8223 14.239 12.6088 14.3357 12.3508C14.4204 12.1246 14.4204 11.8754 14.3357 11.6492C14.239 11.3912 13.9721 11.1777 13.4383 10.7506L7.59951 6.07961C6.76734 5.41387 6.35125 5.081 6.00108 5.08063C5.69654 5.0803 5.40845 5.21876 5.21846 5.45677C5 5.73045 5 6.2633 5 7.329V16.671C5 17.7367 5 18.2695 5.21846 18.5432C5.40845 18.7812 5.69654 18.9197 6.00108 18.9194C6.35125 18.919 6.76734 18.5861 7.59951 17.9204Z",
|
|
@@ -3167,12 +3007,12 @@ var SkipForwardIcon = (0, import_react66.forwardRef)(
|
|
|
3167
3007
|
);
|
|
3168
3008
|
|
|
3169
3009
|
// src/icons/stars.tsx
|
|
3170
|
-
var
|
|
3171
|
-
var
|
|
3172
|
-
var StarsIcon = (0,
|
|
3010
|
+
var import_react65 = require("react");
|
|
3011
|
+
var import_jsx_runtime67 = require("react/jsx-runtime");
|
|
3012
|
+
var StarsIcon = (0, import_react65.forwardRef)(
|
|
3173
3013
|
function StarsIcon2(_a, ref) {
|
|
3174
3014
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3175
|
-
return /* @__PURE__ */ (0,
|
|
3015
|
+
return /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)(
|
|
3176
3016
|
"svg",
|
|
3177
3017
|
__spreadProps(__spreadValues({
|
|
3178
3018
|
ref,
|
|
@@ -3184,7 +3024,7 @@ var StarsIcon = (0, import_react67.forwardRef)(
|
|
|
3184
3024
|
className
|
|
3185
3025
|
}, other), {
|
|
3186
3026
|
children: [
|
|
3187
|
-
duotone && /* @__PURE__ */ (0,
|
|
3027
|
+
duotone && /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
|
|
3188
3028
|
"path",
|
|
3189
3029
|
{
|
|
3190
3030
|
opacity: "0.12",
|
|
@@ -3192,7 +3032,7 @@ var StarsIcon = (0, import_react67.forwardRef)(
|
|
|
3192
3032
|
fill: "currentColor"
|
|
3193
3033
|
}
|
|
3194
3034
|
),
|
|
3195
|
-
/* @__PURE__ */ (0,
|
|
3035
|
+
/* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
|
|
3196
3036
|
"path",
|
|
3197
3037
|
{
|
|
3198
3038
|
d: "M4.5 22V17M4.5 7V2M2 4.5H7M2 19.5H7M13 3L11.2658 7.50886C10.9838 8.24209 10.8428 8.60871 10.6235 8.91709C10.4292 9.1904 10.1904 9.42919 9.91709 9.62353C9.60871 9.8428 9.24209 9.98381 8.50886 10.2658L4 12L8.50886 13.7342C9.24209 14.0162 9.60871 14.1572 9.91709 14.3765C10.1904 14.5708 10.4292 14.8096 10.6235 15.0829C10.8428 15.3913 10.9838 15.7579 11.2658 16.4911L13 21L14.7342 16.4911C15.0162 15.7579 15.1572 15.3913 15.3765 15.0829C15.5708 14.8096 15.8096 14.5708 16.0829 14.3765C16.3913 14.1572 16.7579 14.0162 17.4911 13.7342L22 12L17.4911 10.2658C16.7579 9.98381 16.3913 9.8428 16.0829 9.62353C15.8096 9.42919 15.5708 9.1904 15.3765 8.91709C15.1572 8.60871 15.0162 8.24209 14.7342 7.50886L13 3Z",
|
|
@@ -3209,12 +3049,12 @@ var StarsIcon = (0, import_react67.forwardRef)(
|
|
|
3209
3049
|
);
|
|
3210
3050
|
|
|
3211
3051
|
// src/icons/trash.tsx
|
|
3212
|
-
var
|
|
3213
|
-
var
|
|
3214
|
-
var TrashIcon = (0,
|
|
3052
|
+
var import_react66 = require("react");
|
|
3053
|
+
var import_jsx_runtime68 = require("react/jsx-runtime");
|
|
3054
|
+
var TrashIcon = (0, import_react66.forwardRef)(
|
|
3215
3055
|
function TrashIcon2(_a, ref) {
|
|
3216
3056
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3217
|
-
return /* @__PURE__ */ (0,
|
|
3057
|
+
return /* @__PURE__ */ (0, import_jsx_runtime68.jsxs)(
|
|
3218
3058
|
"svg",
|
|
3219
3059
|
__spreadProps(__spreadValues({
|
|
3220
3060
|
ref,
|
|
@@ -3226,7 +3066,7 @@ var TrashIcon = (0, import_react68.forwardRef)(
|
|
|
3226
3066
|
className
|
|
3227
3067
|
}, other), {
|
|
3228
3068
|
children: [
|
|
3229
|
-
duotone && /* @__PURE__ */ (0,
|
|
3069
|
+
duotone && /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
|
|
3230
3070
|
"path",
|
|
3231
3071
|
{
|
|
3232
3072
|
opacity: "0.12",
|
|
@@ -3234,7 +3074,7 @@ var TrashIcon = (0, import_react68.forwardRef)(
|
|
|
3234
3074
|
fill: "currentColor"
|
|
3235
3075
|
}
|
|
3236
3076
|
),
|
|
3237
|
-
/* @__PURE__ */ (0,
|
|
3077
|
+
/* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
|
|
3238
3078
|
"path",
|
|
3239
3079
|
{
|
|
3240
3080
|
d: "M9 3H15M3 6H21M19 6L18.2987 16.5193C18.1935 18.0975 18.1409 18.8867 17.8 19.485C17.4999 20.0118 17.0472 20.4353 16.5017 20.6997C15.882 21 15.0911 21 13.5093 21H10.4907C8.90891 21 8.11803 21 7.49834 20.6997C6.95276 20.4353 6.50009 20.0118 6.19998 19.485C5.85911 18.8867 5.8065 18.0975 5.70129 16.5193L5 6M10 10.5V15.5M14 10.5V15.5",
|
|
@@ -3251,12 +3091,12 @@ var TrashIcon = (0, import_react68.forwardRef)(
|
|
|
3251
3091
|
);
|
|
3252
3092
|
|
|
3253
3093
|
// src/icons/trendDown.tsx
|
|
3254
|
-
var
|
|
3255
|
-
var
|
|
3256
|
-
var TrendDownIcon = (0,
|
|
3094
|
+
var import_react67 = require("react");
|
|
3095
|
+
var import_jsx_runtime69 = require("react/jsx-runtime");
|
|
3096
|
+
var TrendDownIcon = (0, import_react67.forwardRef)(
|
|
3257
3097
|
function TrendDownIcon2(_a, ref) {
|
|
3258
3098
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3259
|
-
return /* @__PURE__ */ (0,
|
|
3099
|
+
return /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
|
|
3260
3100
|
"svg",
|
|
3261
3101
|
__spreadProps(__spreadValues({
|
|
3262
3102
|
ref,
|
|
@@ -3267,7 +3107,7 @@ var TrendDownIcon = (0, import_react69.forwardRef)(
|
|
|
3267
3107
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3268
3108
|
className
|
|
3269
3109
|
}, other), {
|
|
3270
|
-
children: /* @__PURE__ */ (0,
|
|
3110
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
|
|
3271
3111
|
"path",
|
|
3272
3112
|
{
|
|
3273
3113
|
d: "M22 17L14.1314 9.13137C13.7354 8.73535 13.5373 8.53735 13.309 8.46316C13.1082 8.3979 12.8918 8.3979 12.691 8.46316C12.4627 8.53735 12.2646 8.73535 11.8686 9.13137L9.13137 11.8686C8.73535 12.2646 8.53735 12.4627 8.30902 12.5368C8.10817 12.6021 7.89183 12.6021 7.69098 12.5368C7.46265 12.4627 7.26465 12.2646 6.86863 11.8686L2 7M22 17H15M22 17V10",
|
|
@@ -3283,12 +3123,12 @@ var TrendDownIcon = (0, import_react69.forwardRef)(
|
|
|
3283
3123
|
);
|
|
3284
3124
|
|
|
3285
3125
|
// src/icons/trendUp.tsx
|
|
3286
|
-
var
|
|
3287
|
-
var
|
|
3288
|
-
var TrendUpIcon = (0,
|
|
3126
|
+
var import_react68 = require("react");
|
|
3127
|
+
var import_jsx_runtime70 = require("react/jsx-runtime");
|
|
3128
|
+
var TrendUpIcon = (0, import_react68.forwardRef)(
|
|
3289
3129
|
function TrendUpIcon2(_a, ref) {
|
|
3290
3130
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3291
|
-
return /* @__PURE__ */ (0,
|
|
3131
|
+
return /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(
|
|
3292
3132
|
"svg",
|
|
3293
3133
|
__spreadProps(__spreadValues({
|
|
3294
3134
|
ref,
|
|
@@ -3299,7 +3139,7 @@ var TrendUpIcon = (0, import_react70.forwardRef)(
|
|
|
3299
3139
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3300
3140
|
className
|
|
3301
3141
|
}, other), {
|
|
3302
|
-
children: /* @__PURE__ */ (0,
|
|
3142
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(
|
|
3303
3143
|
"path",
|
|
3304
3144
|
{
|
|
3305
3145
|
d: "M22 7L14.1314 14.8686C13.7354 15.2646 13.5373 15.4627 13.309 15.5368C13.1082 15.6021 12.8918 15.6021 12.691 15.5368C12.4627 15.4627 12.2646 15.2646 11.8686 14.8686L9.13137 12.1314C8.73535 11.7354 8.53735 11.5373 8.30902 11.4632C8.10817 11.3979 7.89183 11.3979 7.69098 11.4632C7.46265 11.5373 7.26465 11.7354 6.86863 12.1314L2 17M22 7H15M22 7V14",
|
|
@@ -3315,11 +3155,11 @@ var TrendUpIcon = (0, import_react70.forwardRef)(
|
|
|
3315
3155
|
);
|
|
3316
3156
|
|
|
3317
3157
|
// src/icons/user.tsx
|
|
3318
|
-
var
|
|
3319
|
-
var
|
|
3320
|
-
var UserIcon = (0,
|
|
3158
|
+
var import_react69 = require("react");
|
|
3159
|
+
var import_jsx_runtime71 = require("react/jsx-runtime");
|
|
3160
|
+
var UserIcon = (0, import_react69.forwardRef)(function UserIcon2(_a, ref) {
|
|
3321
3161
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3322
|
-
return /* @__PURE__ */ (0,
|
|
3162
|
+
return /* @__PURE__ */ (0, import_jsx_runtime71.jsxs)(
|
|
3323
3163
|
"svg",
|
|
3324
3164
|
__spreadProps(__spreadValues({
|
|
3325
3165
|
ref,
|
|
@@ -3331,7 +3171,7 @@ var UserIcon = (0, import_react71.forwardRef)(function UserIcon2(_a, ref) {
|
|
|
3331
3171
|
className
|
|
3332
3172
|
}, other), {
|
|
3333
3173
|
children: [
|
|
3334
|
-
duotone && /* @__PURE__ */ (0,
|
|
3174
|
+
duotone && /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(
|
|
3335
3175
|
"path",
|
|
3336
3176
|
{
|
|
3337
3177
|
opacity: "0.12",
|
|
@@ -3339,7 +3179,7 @@ var UserIcon = (0, import_react71.forwardRef)(function UserIcon2(_a, ref) {
|
|
|
3339
3179
|
fill: "currentColor"
|
|
3340
3180
|
}
|
|
3341
3181
|
),
|
|
3342
|
-
/* @__PURE__ */ (0,
|
|
3182
|
+
/* @__PURE__ */ (0, import_jsx_runtime71.jsx)(
|
|
3343
3183
|
"path",
|
|
3344
3184
|
{
|
|
3345
3185
|
d: "M20 21C20 19.6044 20 18.9067 19.8278 18.3389C19.44 17.0605 18.4395 16.06 17.1611 15.6722C16.5933 15.5 15.8956 15.5 14.5 15.5H9.5C8.10444 15.5 7.40665 15.5 6.83886 15.6722C5.56045 16.06 4.56004 17.0605 4.17224 18.3389C4 18.9067 4 19.6044 4 21M16.5 7.5C16.5 9.98528 14.4853 12 12 12C9.51472 12 7.5 9.98528 7.5 7.5C7.5 5.01472 9.51472 3 12 3C14.4853 3 16.5 5.01472 16.5 7.5Z",
|
|
@@ -3355,12 +3195,12 @@ var UserIcon = (0, import_react71.forwardRef)(function UserIcon2(_a, ref) {
|
|
|
3355
3195
|
});
|
|
3356
3196
|
|
|
3357
3197
|
// src/icons/userPlus.tsx
|
|
3358
|
-
var
|
|
3359
|
-
var
|
|
3360
|
-
var UserPlusIcon = (0,
|
|
3198
|
+
var import_react70 = require("react");
|
|
3199
|
+
var import_jsx_runtime72 = require("react/jsx-runtime");
|
|
3200
|
+
var UserPlusIcon = (0, import_react70.forwardRef)(
|
|
3361
3201
|
function UserPlusIcon2(_a, ref) {
|
|
3362
3202
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3363
|
-
return /* @__PURE__ */ (0,
|
|
3203
|
+
return /* @__PURE__ */ (0, import_jsx_runtime72.jsxs)(
|
|
3364
3204
|
"svg",
|
|
3365
3205
|
__spreadProps(__spreadValues({
|
|
3366
3206
|
ref,
|
|
@@ -3372,7 +3212,7 @@ var UserPlusIcon = (0, import_react72.forwardRef)(
|
|
|
3372
3212
|
className
|
|
3373
3213
|
}, other), {
|
|
3374
3214
|
children: [
|
|
3375
|
-
duotone && /* @__PURE__ */ (0,
|
|
3215
|
+
duotone && /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(
|
|
3376
3216
|
"path",
|
|
3377
3217
|
{
|
|
3378
3218
|
opacity: "0.12",
|
|
@@ -3380,7 +3220,7 @@ var UserPlusIcon = (0, import_react72.forwardRef)(
|
|
|
3380
3220
|
fill: "currentColor"
|
|
3381
3221
|
}
|
|
3382
3222
|
),
|
|
3383
|
-
/* @__PURE__ */ (0,
|
|
3223
|
+
/* @__PURE__ */ (0, import_jsx_runtime72.jsx)(
|
|
3384
3224
|
"path",
|
|
3385
3225
|
{
|
|
3386
3226
|
d: "M12 15.5H7.5C6.10444 15.5 5.40665 15.5 4.83886 15.6722C3.56045 16.06 2.56004 17.0605 2.17224 18.3389C2 18.9067 2 19.6044 2 21M19 21V15M16 18H22M14.5 7.5C14.5 9.98528 12.4853 12 10 12C7.51472 12 5.5 9.98528 5.5 7.5C5.5 5.01472 7.51472 3 10 3C12.4853 3 14.5 5.01472 14.5 7.5Z",
|
|
@@ -3397,12 +3237,12 @@ var UserPlusIcon = (0, import_react72.forwardRef)(
|
|
|
3397
3237
|
);
|
|
3398
3238
|
|
|
3399
3239
|
// src/icons/userX.tsx
|
|
3400
|
-
var
|
|
3401
|
-
var
|
|
3402
|
-
var UserXIcon = (0,
|
|
3240
|
+
var import_react71 = require("react");
|
|
3241
|
+
var import_jsx_runtime73 = require("react/jsx-runtime");
|
|
3242
|
+
var UserXIcon = (0, import_react71.forwardRef)(
|
|
3403
3243
|
function UserXIcon2(_a, ref) {
|
|
3404
3244
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3405
|
-
return /* @__PURE__ */ (0,
|
|
3245
|
+
return /* @__PURE__ */ (0, import_jsx_runtime73.jsxs)(
|
|
3406
3246
|
"svg",
|
|
3407
3247
|
__spreadProps(__spreadValues({
|
|
3408
3248
|
ref,
|
|
@@ -3414,7 +3254,7 @@ var UserXIcon = (0, import_react73.forwardRef)(
|
|
|
3414
3254
|
className
|
|
3415
3255
|
}, other), {
|
|
3416
3256
|
children: [
|
|
3417
|
-
duotone && /* @__PURE__ */ (0,
|
|
3257
|
+
duotone && /* @__PURE__ */ (0, import_jsx_runtime73.jsx)(
|
|
3418
3258
|
"path",
|
|
3419
3259
|
{
|
|
3420
3260
|
opacity: "0.12",
|
|
@@ -3422,7 +3262,7 @@ var UserXIcon = (0, import_react73.forwardRef)(
|
|
|
3422
3262
|
fill: "currentColor"
|
|
3423
3263
|
}
|
|
3424
3264
|
),
|
|
3425
|
-
/* @__PURE__ */ (0,
|
|
3265
|
+
/* @__PURE__ */ (0, import_jsx_runtime73.jsx)(
|
|
3426
3266
|
"path",
|
|
3427
3267
|
{
|
|
3428
3268
|
d: "M16.5 16L21.5 21M21.5 16L16.5 21M12 15.5H7.5C6.10444 15.5 5.40665 15.5 4.83886 15.6722C3.56045 16.06 2.56004 17.0605 2.17224 18.3389C2 18.9067 2 19.6044 2 21M14.5 7.5C14.5 9.98528 12.4853 12 10 12C7.51472 12 5.5 9.98528 5.5 7.5C5.5 5.01472 7.51472 3 10 3C12.4853 3 14.5 5.01472 14.5 7.5Z",
|
|
@@ -3439,12 +3279,12 @@ var UserXIcon = (0, import_react73.forwardRef)(
|
|
|
3439
3279
|
);
|
|
3440
3280
|
|
|
3441
3281
|
// src/icons/users.tsx
|
|
3442
|
-
var
|
|
3443
|
-
var
|
|
3444
|
-
var UsersIcon = (0,
|
|
3282
|
+
var import_react72 = require("react");
|
|
3283
|
+
var import_jsx_runtime74 = require("react/jsx-runtime");
|
|
3284
|
+
var UsersIcon = (0, import_react72.forwardRef)(
|
|
3445
3285
|
function UsersIcon2(_a, ref) {
|
|
3446
3286
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3447
|
-
return /* @__PURE__ */ (0,
|
|
3287
|
+
return /* @__PURE__ */ (0, import_jsx_runtime74.jsxs)(
|
|
3448
3288
|
"svg",
|
|
3449
3289
|
__spreadProps(__spreadValues({
|
|
3450
3290
|
ref,
|
|
@@ -3456,7 +3296,7 @@ var UsersIcon = (0, import_react74.forwardRef)(
|
|
|
3456
3296
|
className
|
|
3457
3297
|
}, other), {
|
|
3458
3298
|
children: [
|
|
3459
|
-
duotone && /* @__PURE__ */ (0,
|
|
3299
|
+
duotone && /* @__PURE__ */ (0, import_jsx_runtime74.jsx)(
|
|
3460
3300
|
"path",
|
|
3461
3301
|
{
|
|
3462
3302
|
opacity: "0.12",
|
|
@@ -3464,7 +3304,7 @@ var UsersIcon = (0, import_react74.forwardRef)(
|
|
|
3464
3304
|
fill: "currentColor"
|
|
3465
3305
|
}
|
|
3466
3306
|
),
|
|
3467
|
-
/* @__PURE__ */ (0,
|
|
3307
|
+
/* @__PURE__ */ (0, import_jsx_runtime74.jsx)(
|
|
3468
3308
|
"path",
|
|
3469
3309
|
{
|
|
3470
3310
|
d: "M22 21V19C22 17.1362 20.7252 15.5701 19 15.126M15.5 3.29076C16.9659 3.88415 18 5.32131 18 7C18 8.67869 16.9659 10.1159 15.5 10.7092M17 21C17 19.1362 17 18.2044 16.6955 17.4693C16.2895 16.4892 15.5108 15.7105 14.5307 15.3045C13.7956 15 12.8638 15 11 15H8C6.13623 15 5.20435 15 4.46927 15.3045C3.48915 15.7105 2.71046 16.4892 2.30448 17.4693C2 18.2044 2 19.1362 2 21M13.5 7C13.5 9.20914 11.7091 11 9.5 11C7.29086 11 5.5 9.20914 5.5 7C5.5 4.79086 7.29086 3 9.5 3C11.7091 3 13.5 4.79086 13.5 7Z",
|
|
@@ -3481,12 +3321,12 @@ var UsersIcon = (0, import_react74.forwardRef)(
|
|
|
3481
3321
|
);
|
|
3482
3322
|
|
|
3483
3323
|
// src/icons/usersPlus.tsx
|
|
3484
|
-
var
|
|
3485
|
-
var
|
|
3486
|
-
var UsersPlusIcon = (0,
|
|
3324
|
+
var import_react73 = require("react");
|
|
3325
|
+
var import_jsx_runtime75 = require("react/jsx-runtime");
|
|
3326
|
+
var UsersPlusIcon = (0, import_react73.forwardRef)(
|
|
3487
3327
|
function UsersPlusIcon2(_a, ref) {
|
|
3488
3328
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3489
|
-
return /* @__PURE__ */ (0,
|
|
3329
|
+
return /* @__PURE__ */ (0, import_jsx_runtime75.jsxs)(
|
|
3490
3330
|
"svg",
|
|
3491
3331
|
__spreadProps(__spreadValues({
|
|
3492
3332
|
ref,
|
|
@@ -3498,7 +3338,7 @@ var UsersPlusIcon = (0, import_react75.forwardRef)(
|
|
|
3498
3338
|
className
|
|
3499
3339
|
}, other), {
|
|
3500
3340
|
children: [
|
|
3501
|
-
duotone && /* @__PURE__ */ (0,
|
|
3341
|
+
duotone && /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
3502
3342
|
"path",
|
|
3503
3343
|
{
|
|
3504
3344
|
opacity: "0.12",
|
|
@@ -3506,7 +3346,7 @@ var UsersPlusIcon = (0, import_react75.forwardRef)(
|
|
|
3506
3346
|
fill: "currentColor"
|
|
3507
3347
|
}
|
|
3508
3348
|
),
|
|
3509
|
-
/* @__PURE__ */ (0,
|
|
3349
|
+
/* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
3510
3350
|
"path",
|
|
3511
3351
|
{
|
|
3512
3352
|
d: "M19 21V15M16 18H22M12 15H8C6.13623 15 5.20435 15 4.46927 15.3045C3.48915 15.7105 2.71046 16.4892 2.30448 17.4693C2 18.2044 2 19.1362 2 21M15.5 3.29076C16.9659 3.88415 18 5.32131 18 7C18 8.67869 16.9659 10.1159 15.5 10.7092M13.5 7C13.5 9.20914 11.7091 11 9.5 11C7.29086 11 5.5 9.20914 5.5 7C5.5 4.79086 7.29086 3 9.5 3C11.7091 3 13.5 4.79086 13.5 7Z",
|
|
@@ -3523,12 +3363,12 @@ var UsersPlusIcon = (0, import_react75.forwardRef)(
|
|
|
3523
3363
|
);
|
|
3524
3364
|
|
|
3525
3365
|
// src/icons/usersX.tsx
|
|
3526
|
-
var
|
|
3527
|
-
var
|
|
3528
|
-
var UsersXIcon = (0,
|
|
3366
|
+
var import_react74 = require("react");
|
|
3367
|
+
var import_jsx_runtime76 = require("react/jsx-runtime");
|
|
3368
|
+
var UsersXIcon = (0, import_react74.forwardRef)(
|
|
3529
3369
|
function UsersXIcon2(_a, ref) {
|
|
3530
3370
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3531
|
-
return /* @__PURE__ */ (0,
|
|
3371
|
+
return /* @__PURE__ */ (0, import_jsx_runtime76.jsxs)(
|
|
3532
3372
|
"svg",
|
|
3533
3373
|
__spreadProps(__spreadValues({
|
|
3534
3374
|
ref,
|
|
@@ -3540,7 +3380,7 @@ var UsersXIcon = (0, import_react76.forwardRef)(
|
|
|
3540
3380
|
className
|
|
3541
3381
|
}, other), {
|
|
3542
3382
|
children: [
|
|
3543
|
-
duotone && /* @__PURE__ */ (0,
|
|
3383
|
+
duotone && /* @__PURE__ */ (0, import_jsx_runtime76.jsx)(
|
|
3544
3384
|
"path",
|
|
3545
3385
|
{
|
|
3546
3386
|
opacity: "0.12",
|
|
@@ -3548,7 +3388,7 @@ var UsersXIcon = (0, import_react76.forwardRef)(
|
|
|
3548
3388
|
fill: "currentColor"
|
|
3549
3389
|
}
|
|
3550
3390
|
),
|
|
3551
|
-
/* @__PURE__ */ (0,
|
|
3391
|
+
/* @__PURE__ */ (0, import_jsx_runtime76.jsx)(
|
|
3552
3392
|
"path",
|
|
3553
3393
|
{
|
|
3554
3394
|
d: "M16.5 16L21.5 21M21.5 16L16.5 21M15.5 3.29076C16.9659 3.88415 18 5.32131 18 7C18 8.67869 16.9659 10.1159 15.5 10.7092M12 15H8C6.13623 15 5.20435 15 4.46927 15.3045C3.48915 15.7105 2.71046 16.4892 2.30448 17.4693C2 18.2044 2 19.1362 2 21M13.5 7C13.5 9.20914 11.7091 11 9.5 11C7.29086 11 5.5 9.20914 5.5 7C5.5 4.79086 7.29086 3 9.5 3C11.7091 3 13.5 4.79086 13.5 7Z",
|
|
@@ -3565,12 +3405,12 @@ var UsersXIcon = (0, import_react76.forwardRef)(
|
|
|
3565
3405
|
);
|
|
3566
3406
|
|
|
3567
3407
|
// src/icons/videoRecorder.tsx
|
|
3568
|
-
var
|
|
3569
|
-
var
|
|
3570
|
-
var VideoRecorderIcon = (0,
|
|
3408
|
+
var import_react75 = require("react");
|
|
3409
|
+
var import_jsx_runtime77 = require("react/jsx-runtime");
|
|
3410
|
+
var VideoRecorderIcon = (0, import_react75.forwardRef)(
|
|
3571
3411
|
function VideoRecorderIcon2(_a, ref) {
|
|
3572
3412
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3573
|
-
return /* @__PURE__ */ (0,
|
|
3413
|
+
return /* @__PURE__ */ (0, import_jsx_runtime77.jsxs)(
|
|
3574
3414
|
"svg",
|
|
3575
3415
|
__spreadProps(__spreadValues({
|
|
3576
3416
|
ref,
|
|
@@ -3582,7 +3422,7 @@ var VideoRecorderIcon = (0, import_react77.forwardRef)(
|
|
|
3582
3422
|
className
|
|
3583
3423
|
}, other), {
|
|
3584
3424
|
children: [
|
|
3585
|
-
duotone && /* @__PURE__ */ (0,
|
|
3425
|
+
duotone && /* @__PURE__ */ (0, import_jsx_runtime77.jsx)(
|
|
3586
3426
|
"path",
|
|
3587
3427
|
{
|
|
3588
3428
|
opacity: "0.12",
|
|
@@ -3594,7 +3434,7 @@ var VideoRecorderIcon = (0, import_react77.forwardRef)(
|
|
|
3594
3434
|
strokeLinejoin: "round"
|
|
3595
3435
|
}
|
|
3596
3436
|
),
|
|
3597
|
-
/* @__PURE__ */ (0,
|
|
3437
|
+
/* @__PURE__ */ (0, import_jsx_runtime77.jsx)(
|
|
3598
3438
|
"path",
|
|
3599
3439
|
{
|
|
3600
3440
|
d: "M22 8.93137C22 8.32555 22 8.02265 21.8802 7.88238C21.7763 7.76068 21.6203 7.69609 21.4608 7.70865C21.2769 7.72312 21.0627 7.93731 20.6343 8.36569L17 12L20.6343 15.6343C21.0627 16.0627 21.2769 16.2769 21.4608 16.2914C21.6203 16.3039 21.7763 16.2393 21.8802 16.1176C22 15.9774 22 15.6744 22 15.0686V8.93137Z",
|
|
@@ -3605,7 +3445,7 @@ var VideoRecorderIcon = (0, import_react77.forwardRef)(
|
|
|
3605
3445
|
}
|
|
3606
3446
|
),
|
|
3607
3447
|
",",
|
|
3608
|
-
/* @__PURE__ */ (0,
|
|
3448
|
+
/* @__PURE__ */ (0, import_jsx_runtime77.jsx)(
|
|
3609
3449
|
"path",
|
|
3610
3450
|
{
|
|
3611
3451
|
d: "M2 9.8C2 8.11984 2 7.27976 2.32698 6.63803C2.6146 6.07354 3.07354 5.6146 3.63803 5.32698C4.27976 5 5.11984 5 6.8 5H12.2C13.8802 5 14.7202 5 15.362 5.32698C15.9265 5.6146 16.3854 6.07354 16.673 6.63803C17 7.27976 17 8.11984 17 9.8V14.2C17 15.8802 17 16.7202 16.673 17.362C16.3854 17.9265 15.9265 18.3854 15.362 18.673C14.7202 19 13.8802 19 12.2 19H6.8C5.11984 19 4.27976 19 3.63803 18.673C3.07354 18.3854 2.6146 17.9265 2.32698 17.362C2 16.7202 2 15.8802 2 14.2V9.8Z",
|
|
@@ -3622,12 +3462,12 @@ var VideoRecorderIcon = (0, import_react77.forwardRef)(
|
|
|
3622
3462
|
);
|
|
3623
3463
|
|
|
3624
3464
|
// src/icons/videoRecorderOff.tsx
|
|
3625
|
-
var
|
|
3626
|
-
var
|
|
3627
|
-
var VideoRecorderOffIcon = (0,
|
|
3465
|
+
var import_react76 = require("react");
|
|
3466
|
+
var import_jsx_runtime78 = require("react/jsx-runtime");
|
|
3467
|
+
var VideoRecorderOffIcon = (0, import_react76.forwardRef)(
|
|
3628
3468
|
function VideoRecorderOffIcon2(_a, ref) {
|
|
3629
3469
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3630
|
-
return /* @__PURE__ */ (0,
|
|
3470
|
+
return /* @__PURE__ */ (0, import_jsx_runtime78.jsxs)(
|
|
3631
3471
|
"svg",
|
|
3632
3472
|
__spreadProps(__spreadValues({
|
|
3633
3473
|
ref,
|
|
@@ -3639,7 +3479,7 @@ var VideoRecorderOffIcon = (0, import_react78.forwardRef)(
|
|
|
3639
3479
|
className
|
|
3640
3480
|
}, other), {
|
|
3641
3481
|
children: [
|
|
3642
|
-
duotone && /* @__PURE__ */ (0,
|
|
3482
|
+
duotone && /* @__PURE__ */ (0, import_jsx_runtime78.jsx)(
|
|
3643
3483
|
"path",
|
|
3644
3484
|
{
|
|
3645
3485
|
opacity: "0.12",
|
|
@@ -3651,7 +3491,7 @@ var VideoRecorderOffIcon = (0, import_react78.forwardRef)(
|
|
|
3651
3491
|
strokeLinejoin: "round"
|
|
3652
3492
|
}
|
|
3653
3493
|
),
|
|
3654
|
-
/* @__PURE__ */ (0,
|
|
3494
|
+
/* @__PURE__ */ (0, import_jsx_runtime78.jsx)(
|
|
3655
3495
|
"path",
|
|
3656
3496
|
{
|
|
3657
3497
|
d: "M5 5C3.34315 5 2 6.34315 2 8V16C2 17.6569 3.34315 19 5 19H14C15.3527 19 16.4962 18.1048 16.8705 16.8745M17 12L20.6343 8.36569C21.0627 7.93731 21.2769 7.72312 21.4608 7.70865C21.6203 7.69609 21.7763 7.76068 21.8802 7.88238C22 8.02265 22 8.32556 22 8.93137V15.0686C22 15.6744 22 15.9774 21.8802 16.1176C21.7763 16.2393 21.6203 16.3039 21.4608 16.2914C21.2769 16.2769 21.0627 16.0627 20.6343 15.6343L17 12ZM17 12V9.8C17 8.11984 17 7.27976 16.673 6.63803C16.3854 6.07354 15.9265 5.6146 15.362 5.32698C14.7202 5 13.8802 5 12.2 5H9.5M2 2L22 22",
|
|
@@ -3668,12 +3508,12 @@ var VideoRecorderOffIcon = (0, import_react78.forwardRef)(
|
|
|
3668
3508
|
);
|
|
3669
3509
|
|
|
3670
3510
|
// src/icons/volumeMax.tsx
|
|
3671
|
-
var
|
|
3672
|
-
var
|
|
3673
|
-
var VolumeMaxIcon = (0,
|
|
3511
|
+
var import_react77 = require("react");
|
|
3512
|
+
var import_jsx_runtime79 = require("react/jsx-runtime");
|
|
3513
|
+
var VolumeMaxIcon = (0, import_react77.forwardRef)(
|
|
3674
3514
|
function VolumeMaxIcon2(_a, ref) {
|
|
3675
3515
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3676
|
-
return /* @__PURE__ */ (0,
|
|
3516
|
+
return /* @__PURE__ */ (0, import_jsx_runtime79.jsxs)(
|
|
3677
3517
|
"svg",
|
|
3678
3518
|
__spreadProps(__spreadValues({
|
|
3679
3519
|
ref,
|
|
@@ -3685,7 +3525,7 @@ var VolumeMaxIcon = (0, import_react79.forwardRef)(
|
|
|
3685
3525
|
className
|
|
3686
3526
|
}, other), {
|
|
3687
3527
|
children: [
|
|
3688
|
-
duotone && /* @__PURE__ */ (0,
|
|
3528
|
+
duotone && /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(
|
|
3689
3529
|
"path",
|
|
3690
3530
|
{
|
|
3691
3531
|
opacity: "0.12",
|
|
@@ -3693,7 +3533,7 @@ var VolumeMaxIcon = (0, import_react79.forwardRef)(
|
|
|
3693
3533
|
fill: "currentColor"
|
|
3694
3534
|
}
|
|
3695
3535
|
),
|
|
3696
|
-
/* @__PURE__ */ (0,
|
|
3536
|
+
/* @__PURE__ */ (0, import_jsx_runtime79.jsx)(
|
|
3697
3537
|
"path",
|
|
3698
3538
|
{
|
|
3699
3539
|
d: "M19.7479 4.99999C21.1652 6.97023 22 9.38762 22 12C22 14.6124 21.1652 17.0298 19.7479 19M15.7453 7.99999C16.5362 9.13382 17 10.5127 17 12C17 13.4872 16.5362 14.8662 15.7453 16M9.63432 4.36567L6.46863 7.53136C6.29568 7.70431 6.2092 7.79079 6.10828 7.85263C6.01881 7.90746 5.92127 7.94786 5.81923 7.97236C5.70414 7.99999 5.58185 7.99999 5.33726 7.99999H3.6C3.03995 7.99999 2.75992 7.99999 2.54601 8.10898C2.35785 8.20485 2.20487 8.35784 2.10899 8.546C2 8.75991 2 9.03994 2 9.59999V14.4C2 14.96 2 15.2401 2.10899 15.454C2.20487 15.6421 2.35785 15.7951 2.54601 15.891C2.75992 16 3.03995 16 3.6 16H5.33726C5.58185 16 5.70414 16 5.81923 16.0276C5.92127 16.0521 6.01881 16.0925 6.10828 16.1473C6.2092 16.2092 6.29568 16.2957 6.46863 16.4686L9.63431 19.6343C10.0627 20.0627 10.2769 20.2769 10.4608 20.2913C10.6203 20.3039 10.7763 20.2393 10.8802 20.1176C11 19.9773 11 19.6744 11 19.0686V4.93136C11 4.32554 11 4.02264 10.8802 3.88237C10.7763 3.76067 10.6203 3.69608 10.4608 3.70864C10.2769 3.72311 10.0627 3.9373 9.63432 4.36567Z",
|
|
@@ -3710,12 +3550,12 @@ var VolumeMaxIcon = (0, import_react79.forwardRef)(
|
|
|
3710
3550
|
);
|
|
3711
3551
|
|
|
3712
3552
|
// src/icons/volumeX.tsx
|
|
3713
|
-
var
|
|
3714
|
-
var
|
|
3715
|
-
var VolumeXIcon = (0,
|
|
3553
|
+
var import_react78 = require("react");
|
|
3554
|
+
var import_jsx_runtime80 = require("react/jsx-runtime");
|
|
3555
|
+
var VolumeXIcon = (0, import_react78.forwardRef)(
|
|
3716
3556
|
function VolumeXIcon2(_a, ref) {
|
|
3717
3557
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3718
|
-
return /* @__PURE__ */ (0,
|
|
3558
|
+
return /* @__PURE__ */ (0, import_jsx_runtime80.jsxs)(
|
|
3719
3559
|
"svg",
|
|
3720
3560
|
__spreadProps(__spreadValues({
|
|
3721
3561
|
ref,
|
|
@@ -3727,7 +3567,7 @@ var VolumeXIcon = (0, import_react80.forwardRef)(
|
|
|
3727
3567
|
className
|
|
3728
3568
|
}, other), {
|
|
3729
3569
|
children: [
|
|
3730
|
-
duotone && /* @__PURE__ */ (0,
|
|
3570
|
+
duotone && /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(
|
|
3731
3571
|
"path",
|
|
3732
3572
|
{
|
|
3733
3573
|
opacity: "0.12",
|
|
@@ -3735,7 +3575,7 @@ var VolumeXIcon = (0, import_react80.forwardRef)(
|
|
|
3735
3575
|
fill: "currentColor"
|
|
3736
3576
|
}
|
|
3737
3577
|
),
|
|
3738
|
-
/* @__PURE__ */ (0,
|
|
3578
|
+
/* @__PURE__ */ (0, import_jsx_runtime80.jsx)(
|
|
3739
3579
|
"path",
|
|
3740
3580
|
{
|
|
3741
3581
|
d: "M22 8.99999L16 15M16 8.99999L22 15M9.63432 4.36567L6.46863 7.53136C6.29568 7.70431 6.2092 7.79079 6.10828 7.85263C6.01881 7.90746 5.92127 7.94786 5.81923 7.97236C5.70414 7.99999 5.58185 7.99999 5.33726 7.99999H3.6C3.03995 7.99999 2.75992 7.99999 2.54601 8.10898C2.35785 8.20485 2.20487 8.35784 2.10899 8.546C2 8.75991 2 9.03994 2 9.59999V14.4C2 14.96 2 15.2401 2.10899 15.454C2.20487 15.6421 2.35785 15.7951 2.54601 15.891C2.75992 16 3.03995 16 3.6 16H5.33726C5.58185 16 5.70414 16 5.81923 16.0276C5.92127 16.0521 6.01881 16.0925 6.10828 16.1473C6.2092 16.2092 6.29568 16.2957 6.46863 16.4686L9.63431 19.6343C10.0627 20.0627 10.2769 20.2769 10.4608 20.2913C10.6203 20.3039 10.7763 20.2393 10.8802 20.1176C11 19.9773 11 19.6744 11 19.0686V4.93136C11 4.32554 11 4.02264 10.8802 3.88237C10.7763 3.76067 10.6203 3.69608 10.4608 3.70864C10.2769 3.72311 10.0627 3.9373 9.63432 4.36567Z",
|
|
@@ -3752,12 +3592,12 @@ var VolumeXIcon = (0, import_react80.forwardRef)(
|
|
|
3752
3592
|
);
|
|
3753
3593
|
|
|
3754
3594
|
// src/icons/xCircle.tsx
|
|
3755
|
-
var
|
|
3756
|
-
var
|
|
3757
|
-
var XCircleIcon = (0,
|
|
3595
|
+
var import_react79 = require("react");
|
|
3596
|
+
var import_jsx_runtime81 = require("react/jsx-runtime");
|
|
3597
|
+
var XCircleIcon = (0, import_react79.forwardRef)(
|
|
3758
3598
|
function XCircleIcon2(_a, ref) {
|
|
3759
3599
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3760
|
-
return /* @__PURE__ */ (0,
|
|
3600
|
+
return /* @__PURE__ */ (0, import_jsx_runtime81.jsxs)(
|
|
3761
3601
|
"svg",
|
|
3762
3602
|
__spreadProps(__spreadValues({
|
|
3763
3603
|
ref,
|
|
@@ -3769,7 +3609,7 @@ var XCircleIcon = (0, import_react81.forwardRef)(
|
|
|
3769
3609
|
className
|
|
3770
3610
|
}, other), {
|
|
3771
3611
|
children: [
|
|
3772
|
-
duotone && /* @__PURE__ */ (0,
|
|
3612
|
+
duotone && /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(
|
|
3773
3613
|
"path",
|
|
3774
3614
|
{
|
|
3775
3615
|
opacity: "0.12",
|
|
@@ -3777,7 +3617,7 @@ var XCircleIcon = (0, import_react81.forwardRef)(
|
|
|
3777
3617
|
fill: "currentColor"
|
|
3778
3618
|
}
|
|
3779
3619
|
),
|
|
3780
|
-
/* @__PURE__ */ (0,
|
|
3620
|
+
/* @__PURE__ */ (0, import_jsx_runtime81.jsx)(
|
|
3781
3621
|
"path",
|
|
3782
3622
|
{
|
|
3783
3623
|
d: "M15 9L9 15M9 9L15 15M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z",
|
|
@@ -3794,12 +3634,12 @@ var XCircleIcon = (0, import_react81.forwardRef)(
|
|
|
3794
3634
|
);
|
|
3795
3635
|
|
|
3796
3636
|
// src/icons/xClose.tsx
|
|
3797
|
-
var
|
|
3798
|
-
var
|
|
3799
|
-
var XCloseIcon = (0,
|
|
3637
|
+
var import_react80 = require("react");
|
|
3638
|
+
var import_jsx_runtime82 = require("react/jsx-runtime");
|
|
3639
|
+
var XCloseIcon = (0, import_react80.forwardRef)(
|
|
3800
3640
|
function XCloseIcon2(_a, ref) {
|
|
3801
3641
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3802
|
-
return /* @__PURE__ */ (0,
|
|
3642
|
+
return /* @__PURE__ */ (0, import_jsx_runtime82.jsx)(
|
|
3803
3643
|
"svg",
|
|
3804
3644
|
__spreadProps(__spreadValues({
|
|
3805
3645
|
ref,
|
|
@@ -3810,7 +3650,7 @@ var XCloseIcon = (0, import_react82.forwardRef)(
|
|
|
3810
3650
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3811
3651
|
className
|
|
3812
3652
|
}, other), {
|
|
3813
|
-
children: /* @__PURE__ */ (0,
|
|
3653
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime82.jsx)(
|
|
3814
3654
|
"path",
|
|
3815
3655
|
{
|
|
3816
3656
|
d: "M18 6L6 18M6 6L18 18",
|
|
@@ -3848,7 +3688,6 @@ var XCloseIcon = (0, import_react82.forwardRef)(
|
|
|
3848
3688
|
CopyIcon,
|
|
3849
3689
|
CursorClickIcon,
|
|
3850
3690
|
DownloadIcon,
|
|
3851
|
-
Drawer,
|
|
3852
3691
|
EditIcon,
|
|
3853
3692
|
ExpandIcon,
|
|
3854
3693
|
FlipBackwardIcon,
|
|
@@ -3897,7 +3736,6 @@ var XCloseIcon = (0, import_react82.forwardRef)(
|
|
|
3897
3736
|
TabsContent,
|
|
3898
3737
|
TabsList,
|
|
3899
3738
|
TabsTrigger,
|
|
3900
|
-
TextField,
|
|
3901
3739
|
TrashIcon,
|
|
3902
3740
|
TrendDownIcon,
|
|
3903
3741
|
TrendUpIcon,
|
|
@@ -3912,6 +3750,5 @@ var XCloseIcon = (0, import_react82.forwardRef)(
|
|
|
3912
3750
|
VolumeMaxIcon,
|
|
3913
3751
|
VolumeXIcon,
|
|
3914
3752
|
XCircleIcon,
|
|
3915
|
-
XCloseIcon
|
|
3916
|
-
useDrawerState
|
|
3753
|
+
XCloseIcon
|
|
3917
3754
|
});
|