@kopexa/icons 13.0.3 → 14.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/arrow-counter-clockwise-icon.d.mts +7 -0
- package/dist/arrow-counter-clockwise-icon.d.ts +7 -0
- package/dist/arrow-counter-clockwise-icon.js +52 -0
- package/dist/arrow-counter-clockwise-icon.mjs +7 -0
- package/dist/chunk-D64IST4N.mjs +25 -0
- package/dist/chunk-IGXSNGGR.mjs +61 -0
- package/dist/chunk-IYMWSJME.mjs +29 -0
- package/dist/crop-icon.d.mts +7 -0
- package/dist/crop-icon.d.ts +7 -0
- package/dist/crop-icon.js +48 -0
- package/dist/crop-icon.mjs +7 -0
- package/dist/index.d.mts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +612 -506
- package/dist/index.mjs +53 -41
- package/dist/user-circle-icon.d.mts +7 -0
- package/dist/user-circle-icon.d.ts +7 -0
- package/dist/user-circle-icon.js +84 -0
- package/dist/user-circle-icon.mjs +7 -0
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -29,6 +29,7 @@ __export(index_exports, {
|
|
|
29
29
|
AlignLeftIcon: () => AlignLeftIcon,
|
|
30
30
|
AlignRightIcon: () => AlignRightIcon,
|
|
31
31
|
ApplicationAssetIcon: () => ApplicationAssetIcon,
|
|
32
|
+
ArrowCounterClockwiseIcon: () => ArrowCounterClockwiseIcon,
|
|
32
33
|
ArrowDown: () => ArrowDown,
|
|
33
34
|
ArrowDownUp: () => ArrowDownUp,
|
|
34
35
|
ArrowRightIcon: () => ArrowRightIcon,
|
|
@@ -57,6 +58,7 @@ __export(index_exports, {
|
|
|
57
58
|
ControlsIcon: () => ControlsIcon,
|
|
58
59
|
CopyIcon: () => CopyIcon,
|
|
59
60
|
CornerDownLeftIcon: () => CornerDownLeftIcon,
|
|
61
|
+
CropIcon: () => CropIcon,
|
|
60
62
|
DSARIcon: () => DSARIcon,
|
|
61
63
|
DataAssetIcon: () => DataAssetIcon,
|
|
62
64
|
DocumentsIcon: () => DocumentsIcon,
|
|
@@ -120,6 +122,7 @@ __export(index_exports, {
|
|
|
120
122
|
UnderlineIcon: () => UnderlineIcon,
|
|
121
123
|
UndoIcon: () => UndoIcon,
|
|
122
124
|
UploadIcon: () => UploadIcon,
|
|
125
|
+
UserCircleIcon: () => UserCircleIcon,
|
|
123
126
|
VendorIcon: () => VendorIcon
|
|
124
127
|
});
|
|
125
128
|
module.exports = __toCommonJS(index_exports);
|
|
@@ -424,10 +427,34 @@ var ApplicationAssetIcon = ({ size = 24, ...props }) => {
|
|
|
424
427
|
);
|
|
425
428
|
};
|
|
426
429
|
|
|
427
|
-
// src/arrow-
|
|
430
|
+
// src/arrow-counter-clockwise-icon.tsx
|
|
428
431
|
var import_jsx_runtime9 = require("react/jsx-runtime");
|
|
429
|
-
var
|
|
432
|
+
var ArrowCounterClockwiseIcon = ({
|
|
433
|
+
size = 24,
|
|
434
|
+
...props
|
|
435
|
+
}) => {
|
|
430
436
|
return /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(
|
|
437
|
+
"svg",
|
|
438
|
+
{
|
|
439
|
+
width: size,
|
|
440
|
+
height: size,
|
|
441
|
+
viewBox: "0 0 256 256",
|
|
442
|
+
fill: "currentColor",
|
|
443
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
444
|
+
...props,
|
|
445
|
+
children: [
|
|
446
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("title", { children: "Arrow Counter Clockwise" }),
|
|
447
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M224,128a96,96,0,0,1-94.71,96H128A95.38,95.38,0,0,1,62.1,197.8a8,8,0,0,1,11-11.63A80,80,0,1,0,71.43,71.39a3.07,3.07,0,0,1-.26.25L44.59,96H72a8,8,0,0,1,0,16H24a8,8,0,0,1-8-8V56a8,8,0,0,1,16,0V85.8L60.25,60A96,96,0,0,1,224,128Z" }),
|
|
448
|
+
" "
|
|
449
|
+
]
|
|
450
|
+
}
|
|
451
|
+
);
|
|
452
|
+
};
|
|
453
|
+
|
|
454
|
+
// src/arrow-down.tsx
|
|
455
|
+
var import_jsx_runtime10 = require("react/jsx-runtime");
|
|
456
|
+
var ArrowDown = ({ size = 24, ...props }) => {
|
|
457
|
+
return /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)(
|
|
431
458
|
"svg",
|
|
432
459
|
{
|
|
433
460
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -441,18 +468,18 @@ var ArrowDown = ({ size = 24, ...props }) => {
|
|
|
441
468
|
strokeLinejoin: "round",
|
|
442
469
|
...props,
|
|
443
470
|
children: [
|
|
444
|
-
/* @__PURE__ */ (0,
|
|
445
|
-
/* @__PURE__ */ (0,
|
|
446
|
-
/* @__PURE__ */ (0,
|
|
471
|
+
/* @__PURE__ */ (0, import_jsx_runtime10.jsx)("title", { children: "Arrow Up Down" }),
|
|
472
|
+
/* @__PURE__ */ (0, import_jsx_runtime10.jsx)("path", { d: "M12 5v14" }),
|
|
473
|
+
/* @__PURE__ */ (0, import_jsx_runtime10.jsx)("path", { d: "m19 12-7 7-7-7" })
|
|
447
474
|
]
|
|
448
475
|
}
|
|
449
476
|
);
|
|
450
477
|
};
|
|
451
478
|
|
|
452
479
|
// src/arrow-down-up.tsx
|
|
453
|
-
var
|
|
480
|
+
var import_jsx_runtime11 = require("react/jsx-runtime");
|
|
454
481
|
var ArrowDownUp = ({ size = 24, ...props }) => {
|
|
455
|
-
return /* @__PURE__ */ (0,
|
|
482
|
+
return /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)(
|
|
456
483
|
"svg",
|
|
457
484
|
{
|
|
458
485
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -466,20 +493,20 @@ var ArrowDownUp = ({ size = 24, ...props }) => {
|
|
|
466
493
|
strokeLinejoin: "round",
|
|
467
494
|
...props,
|
|
468
495
|
children: [
|
|
469
|
-
/* @__PURE__ */ (0,
|
|
470
|
-
/* @__PURE__ */ (0,
|
|
471
|
-
/* @__PURE__ */ (0,
|
|
472
|
-
/* @__PURE__ */ (0,
|
|
473
|
-
/* @__PURE__ */ (0,
|
|
496
|
+
/* @__PURE__ */ (0, import_jsx_runtime11.jsx)("title", { children: "Arrow down Up icon" }),
|
|
497
|
+
/* @__PURE__ */ (0, import_jsx_runtime11.jsx)("path", { d: "m3 16 4 4 4-4" }),
|
|
498
|
+
/* @__PURE__ */ (0, import_jsx_runtime11.jsx)("path", { d: "M7 20V4" }),
|
|
499
|
+
/* @__PURE__ */ (0, import_jsx_runtime11.jsx)("path", { d: "m21 8-4-4-4 4" }),
|
|
500
|
+
/* @__PURE__ */ (0, import_jsx_runtime11.jsx)("path", { d: "M17 4v16" })
|
|
474
501
|
]
|
|
475
502
|
}
|
|
476
503
|
);
|
|
477
504
|
};
|
|
478
505
|
|
|
479
506
|
// src/arrow-right-icon.tsx
|
|
480
|
-
var
|
|
507
|
+
var import_jsx_runtime12 = require("react/jsx-runtime");
|
|
481
508
|
var ArrowRightIcon = ({ size = 24, ...props }) => {
|
|
482
|
-
return /* @__PURE__ */ (0,
|
|
509
|
+
return /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)(
|
|
483
510
|
"svg",
|
|
484
511
|
{
|
|
485
512
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -493,18 +520,18 @@ var ArrowRightIcon = ({ size = 24, ...props }) => {
|
|
|
493
520
|
strokeLinejoin: "round",
|
|
494
521
|
...props,
|
|
495
522
|
children: [
|
|
496
|
-
/* @__PURE__ */ (0,
|
|
497
|
-
/* @__PURE__ */ (0,
|
|
498
|
-
/* @__PURE__ */ (0,
|
|
523
|
+
/* @__PURE__ */ (0, import_jsx_runtime12.jsx)("title", { children: "Arrow Right icon" }),
|
|
524
|
+
/* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", { d: "M5 12h14" }),
|
|
525
|
+
/* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", { d: "m12 5 7 7-7 7" })
|
|
499
526
|
]
|
|
500
527
|
}
|
|
501
528
|
);
|
|
502
529
|
};
|
|
503
530
|
|
|
504
531
|
// src/arrow-up.tsx
|
|
505
|
-
var
|
|
532
|
+
var import_jsx_runtime13 = require("react/jsx-runtime");
|
|
506
533
|
var ArrowUp = ({ size = 24, ...props }) => {
|
|
507
|
-
return /* @__PURE__ */ (0,
|
|
534
|
+
return /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)(
|
|
508
535
|
"svg",
|
|
509
536
|
{
|
|
510
537
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -518,18 +545,18 @@ var ArrowUp = ({ size = 24, ...props }) => {
|
|
|
518
545
|
strokeLinejoin: "round",
|
|
519
546
|
...props,
|
|
520
547
|
children: [
|
|
521
|
-
/* @__PURE__ */ (0,
|
|
522
|
-
/* @__PURE__ */ (0,
|
|
523
|
-
/* @__PURE__ */ (0,
|
|
548
|
+
/* @__PURE__ */ (0, import_jsx_runtime13.jsx)("title", { children: "Arrow Up Icon" }),
|
|
549
|
+
/* @__PURE__ */ (0, import_jsx_runtime13.jsx)("path", { d: "m5 12 7-7 7 7" }),
|
|
550
|
+
/* @__PURE__ */ (0, import_jsx_runtime13.jsx)("path", { d: "M12 19V5" })
|
|
524
551
|
]
|
|
525
552
|
}
|
|
526
553
|
);
|
|
527
554
|
};
|
|
528
555
|
|
|
529
556
|
// src/assets.tsx
|
|
530
|
-
var
|
|
557
|
+
var import_jsx_runtime14 = require("react/jsx-runtime");
|
|
531
558
|
var AssetsIcon = ({ size = 24, ...props }) => {
|
|
532
|
-
return /* @__PURE__ */ (0,
|
|
559
|
+
return /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)(
|
|
533
560
|
"svg",
|
|
534
561
|
{
|
|
535
562
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -543,22 +570,22 @@ var AssetsIcon = ({ size = 24, ...props }) => {
|
|
|
543
570
|
strokeLinejoin: "round",
|
|
544
571
|
...props,
|
|
545
572
|
children: [
|
|
546
|
-
/* @__PURE__ */ (0,
|
|
547
|
-
/* @__PURE__ */ (0,
|
|
548
|
-
/* @__PURE__ */ (0,
|
|
549
|
-
/* @__PURE__ */ (0,
|
|
550
|
-
/* @__PURE__ */ (0,
|
|
551
|
-
/* @__PURE__ */ (0,
|
|
552
|
-
/* @__PURE__ */ (0,
|
|
573
|
+
/* @__PURE__ */ (0, import_jsx_runtime14.jsx)("title", { children: "Assets icon" }),
|
|
574
|
+
/* @__PURE__ */ (0, import_jsx_runtime14.jsx)("path", { d: "M21 10V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l2-1.14" }),
|
|
575
|
+
/* @__PURE__ */ (0, import_jsx_runtime14.jsx)("path", { d: "m7.5 4.27 9 5.15" }),
|
|
576
|
+
/* @__PURE__ */ (0, import_jsx_runtime14.jsx)("polyline", { points: "3.29 7 12 12 20.71 7" }),
|
|
577
|
+
/* @__PURE__ */ (0, import_jsx_runtime14.jsx)("line", { x1: "12", x2: "12", y1: "22", y2: "12" }),
|
|
578
|
+
/* @__PURE__ */ (0, import_jsx_runtime14.jsx)("circle", { cx: "18.5", cy: "15.5", r: "2.5" }),
|
|
579
|
+
/* @__PURE__ */ (0, import_jsx_runtime14.jsx)("path", { d: "M20.27 17.27 22 19" })
|
|
553
580
|
]
|
|
554
581
|
}
|
|
555
582
|
);
|
|
556
583
|
};
|
|
557
584
|
|
|
558
585
|
// src/ban-icon.tsx
|
|
559
|
-
var
|
|
586
|
+
var import_jsx_runtime15 = require("react/jsx-runtime");
|
|
560
587
|
var BanIcon = ({ size = 24, ...props }) => {
|
|
561
|
-
return /* @__PURE__ */ (0,
|
|
588
|
+
return /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)(
|
|
562
589
|
"svg",
|
|
563
590
|
{
|
|
564
591
|
width: size,
|
|
@@ -568,8 +595,8 @@ var BanIcon = ({ size = 24, ...props }) => {
|
|
|
568
595
|
xmlns: "http://www.w3.org/2000/svg",
|
|
569
596
|
...props,
|
|
570
597
|
children: [
|
|
571
|
-
/* @__PURE__ */ (0,
|
|
572
|
-
/* @__PURE__ */ (0,
|
|
598
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)("title", { children: "Ban" }),
|
|
599
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
|
|
573
600
|
"path",
|
|
574
601
|
{
|
|
575
602
|
fillRule: "evenodd",
|
|
@@ -584,9 +611,9 @@ var BanIcon = ({ size = 24, ...props }) => {
|
|
|
584
611
|
};
|
|
585
612
|
|
|
586
613
|
// src/blockquote-icon.tsx
|
|
587
|
-
var
|
|
614
|
+
var import_jsx_runtime16 = require("react/jsx-runtime");
|
|
588
615
|
var BlockquoteIcon = ({ size = 24, ...props }) => {
|
|
589
|
-
return /* @__PURE__ */ (0,
|
|
616
|
+
return /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)(
|
|
590
617
|
"svg",
|
|
591
618
|
{
|
|
592
619
|
width: size,
|
|
@@ -596,8 +623,8 @@ var BlockquoteIcon = ({ size = 24, ...props }) => {
|
|
|
596
623
|
xmlns: "http://www.w3.org/2000/svg",
|
|
597
624
|
...props,
|
|
598
625
|
children: [
|
|
599
|
-
/* @__PURE__ */ (0,
|
|
600
|
-
/* @__PURE__ */ (0,
|
|
626
|
+
/* @__PURE__ */ (0, import_jsx_runtime16.jsx)("title", { children: "Block Quote" }),
|
|
627
|
+
/* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
|
|
601
628
|
"path",
|
|
602
629
|
{
|
|
603
630
|
fillRule: "evenodd",
|
|
@@ -606,7 +633,7 @@ var BlockquoteIcon = ({ size = 24, ...props }) => {
|
|
|
606
633
|
fill: "currentColor"
|
|
607
634
|
}
|
|
608
635
|
),
|
|
609
|
-
/* @__PURE__ */ (0,
|
|
636
|
+
/* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
|
|
610
637
|
"path",
|
|
611
638
|
{
|
|
612
639
|
fillRule: "evenodd",
|
|
@@ -615,7 +642,7 @@ var BlockquoteIcon = ({ size = 24, ...props }) => {
|
|
|
615
642
|
fill: "currentColor"
|
|
616
643
|
}
|
|
617
644
|
),
|
|
618
|
-
/* @__PURE__ */ (0,
|
|
645
|
+
/* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
|
|
619
646
|
"path",
|
|
620
647
|
{
|
|
621
648
|
fillRule: "evenodd",
|
|
@@ -624,7 +651,7 @@ var BlockquoteIcon = ({ size = 24, ...props }) => {
|
|
|
624
651
|
fill: "currentColor"
|
|
625
652
|
}
|
|
626
653
|
),
|
|
627
|
-
/* @__PURE__ */ (0,
|
|
654
|
+
/* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
|
|
628
655
|
"path",
|
|
629
656
|
{
|
|
630
657
|
fillRule: "evenodd",
|
|
@@ -639,9 +666,9 @@ var BlockquoteIcon = ({ size = 24, ...props }) => {
|
|
|
639
666
|
};
|
|
640
667
|
|
|
641
668
|
// src/bold-icon.tsx
|
|
642
|
-
var
|
|
669
|
+
var import_jsx_runtime17 = require("react/jsx-runtime");
|
|
643
670
|
var BoldIcon = ({ size = 24, ...props }) => {
|
|
644
|
-
return /* @__PURE__ */ (0,
|
|
671
|
+
return /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(
|
|
645
672
|
"svg",
|
|
646
673
|
{
|
|
647
674
|
width: size,
|
|
@@ -651,8 +678,8 @@ var BoldIcon = ({ size = 24, ...props }) => {
|
|
|
651
678
|
xmlns: "http://www.w3.org/2000/svg",
|
|
652
679
|
...props,
|
|
653
680
|
children: [
|
|
654
|
-
/* @__PURE__ */ (0,
|
|
655
|
-
/* @__PURE__ */ (0,
|
|
681
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)("title", { children: "Bold" }),
|
|
682
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
656
683
|
"path",
|
|
657
684
|
{
|
|
658
685
|
fillRule: "evenodd",
|
|
@@ -667,9 +694,9 @@ var BoldIcon = ({ size = 24, ...props }) => {
|
|
|
667
694
|
};
|
|
668
695
|
|
|
669
696
|
// src/catalog.tsx
|
|
670
|
-
var
|
|
697
|
+
var import_jsx_runtime18 = require("react/jsx-runtime");
|
|
671
698
|
var CatalogIcon = ({ size = 24, ...props }) => {
|
|
672
|
-
return /* @__PURE__ */ (0,
|
|
699
|
+
return /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(
|
|
673
700
|
"svg",
|
|
674
701
|
{
|
|
675
702
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -683,20 +710,20 @@ var CatalogIcon = ({ size = 24, ...props }) => {
|
|
|
683
710
|
strokeLinejoin: "round",
|
|
684
711
|
...props,
|
|
685
712
|
children: [
|
|
686
|
-
/* @__PURE__ */ (0,
|
|
687
|
-
/* @__PURE__ */ (0,
|
|
688
|
-
/* @__PURE__ */ (0,
|
|
689
|
-
/* @__PURE__ */ (0,
|
|
690
|
-
/* @__PURE__ */ (0,
|
|
713
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)("title", { children: "Catalog icon" }),
|
|
714
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)("path", { d: "m16 6 4 14" }),
|
|
715
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)("path", { d: "M12 6v14" }),
|
|
716
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)("path", { d: "M8 8v12" }),
|
|
717
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)("path", { d: "M4 4v16" })
|
|
691
718
|
]
|
|
692
719
|
}
|
|
693
720
|
);
|
|
694
721
|
};
|
|
695
722
|
|
|
696
723
|
// src/chart-pie.tsx
|
|
697
|
-
var
|
|
724
|
+
var import_jsx_runtime19 = require("react/jsx-runtime");
|
|
698
725
|
var ChartPie = ({ size = 24, ...props }) => {
|
|
699
|
-
return /* @__PURE__ */ (0,
|
|
726
|
+
return /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)(
|
|
700
727
|
"svg",
|
|
701
728
|
{
|
|
702
729
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -710,18 +737,18 @@ var ChartPie = ({ size = 24, ...props }) => {
|
|
|
710
737
|
strokeLinejoin: "round",
|
|
711
738
|
...props,
|
|
712
739
|
children: [
|
|
713
|
-
/* @__PURE__ */ (0,
|
|
714
|
-
/* @__PURE__ */ (0,
|
|
715
|
-
/* @__PURE__ */ (0,
|
|
740
|
+
/* @__PURE__ */ (0, import_jsx_runtime19.jsx)("title", { children: "Chart Pie icon" }),
|
|
741
|
+
/* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", { d: "M21 12c.552 0 1.005-.449.95-.998a10 10 0 0 0-8.953-8.951c-.55-.055-.998.398-.998.95v8a1 1 0 0 0 1 1z" }),
|
|
742
|
+
/* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", { d: "M21.21 15.89A10 10 0 1 1 8 2.83" })
|
|
716
743
|
]
|
|
717
744
|
}
|
|
718
745
|
);
|
|
719
746
|
};
|
|
720
747
|
|
|
721
748
|
// src/check.tsx
|
|
722
|
-
var
|
|
749
|
+
var import_jsx_runtime20 = require("react/jsx-runtime");
|
|
723
750
|
var CheckIcon = (props) => {
|
|
724
|
-
return /* @__PURE__ */ (0,
|
|
751
|
+
return /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(
|
|
725
752
|
"svg",
|
|
726
753
|
{
|
|
727
754
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -735,17 +762,17 @@ var CheckIcon = (props) => {
|
|
|
735
762
|
strokeLinejoin: "round",
|
|
736
763
|
...props,
|
|
737
764
|
children: [
|
|
738
|
-
/* @__PURE__ */ (0,
|
|
739
|
-
/* @__PURE__ */ (0,
|
|
765
|
+
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)("title", { children: "Check Icon" }),
|
|
766
|
+
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { d: "M20 6 9 17l-5-5" })
|
|
740
767
|
]
|
|
741
768
|
}
|
|
742
769
|
);
|
|
743
770
|
};
|
|
744
771
|
|
|
745
772
|
// src/check-circle.tsx
|
|
746
|
-
var
|
|
773
|
+
var import_jsx_runtime21 = require("react/jsx-runtime");
|
|
747
774
|
var CheckCirleIcon = ({ size = 24, ...props }) => {
|
|
748
|
-
return /* @__PURE__ */ (0,
|
|
775
|
+
return /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)(
|
|
749
776
|
"svg",
|
|
750
777
|
{
|
|
751
778
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -759,18 +786,18 @@ var CheckCirleIcon = ({ size = 24, ...props }) => {
|
|
|
759
786
|
strokeLinejoin: "round",
|
|
760
787
|
...props,
|
|
761
788
|
children: [
|
|
762
|
-
/* @__PURE__ */ (0,
|
|
763
|
-
/* @__PURE__ */ (0,
|
|
764
|
-
/* @__PURE__ */ (0,
|
|
789
|
+
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("title", { children: "Check Circle Icon" }),
|
|
790
|
+
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
|
|
791
|
+
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("path", { d: "m9 12 2 2 4-4" })
|
|
765
792
|
]
|
|
766
793
|
}
|
|
767
794
|
);
|
|
768
795
|
};
|
|
769
796
|
|
|
770
797
|
// src/chevron-down.tsx
|
|
771
|
-
var
|
|
798
|
+
var import_jsx_runtime22 = require("react/jsx-runtime");
|
|
772
799
|
var ChevronDownIcon = (props) => {
|
|
773
|
-
return /* @__PURE__ */ (0,
|
|
800
|
+
return /* @__PURE__ */ (0, import_jsx_runtime22.jsxs)(
|
|
774
801
|
"svg",
|
|
775
802
|
{
|
|
776
803
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -784,17 +811,17 @@ var ChevronDownIcon = (props) => {
|
|
|
784
811
|
strokeLinejoin: "round",
|
|
785
812
|
...props,
|
|
786
813
|
children: [
|
|
787
|
-
/* @__PURE__ */ (0,
|
|
788
|
-
/* @__PURE__ */ (0,
|
|
814
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)("title", { children: "Chevron Down Icon" }),
|
|
815
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)("path", { d: "m6 9 6 6 6-6" })
|
|
789
816
|
]
|
|
790
817
|
}
|
|
791
818
|
);
|
|
792
819
|
};
|
|
793
820
|
|
|
794
821
|
// src/chevron-left.tsx
|
|
795
|
-
var
|
|
822
|
+
var import_jsx_runtime23 = require("react/jsx-runtime");
|
|
796
823
|
var ChevronLeftIcon = (props) => {
|
|
797
|
-
return /* @__PURE__ */ (0,
|
|
824
|
+
return /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)(
|
|
798
825
|
"svg",
|
|
799
826
|
{
|
|
800
827
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -808,17 +835,17 @@ var ChevronLeftIcon = (props) => {
|
|
|
808
835
|
strokeLinejoin: "round",
|
|
809
836
|
...props,
|
|
810
837
|
children: [
|
|
811
|
-
/* @__PURE__ */ (0,
|
|
812
|
-
/* @__PURE__ */ (0,
|
|
838
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.jsx)("title", { children: "Chevron Left Icon" }),
|
|
839
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.jsx)("path", { d: "m15 18-6-6 6-6" })
|
|
813
840
|
]
|
|
814
841
|
}
|
|
815
842
|
);
|
|
816
843
|
};
|
|
817
844
|
|
|
818
845
|
// src/chevron-right.tsx
|
|
819
|
-
var
|
|
846
|
+
var import_jsx_runtime24 = require("react/jsx-runtime");
|
|
820
847
|
var ChevronRightIcon = (props) => {
|
|
821
|
-
return /* @__PURE__ */ (0,
|
|
848
|
+
return /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)(
|
|
822
849
|
"svg",
|
|
823
850
|
{
|
|
824
851
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -832,17 +859,17 @@ var ChevronRightIcon = (props) => {
|
|
|
832
859
|
strokeLinejoin: "round",
|
|
833
860
|
...props,
|
|
834
861
|
children: [
|
|
835
|
-
/* @__PURE__ */ (0,
|
|
836
|
-
/* @__PURE__ */ (0,
|
|
862
|
+
/* @__PURE__ */ (0, import_jsx_runtime24.jsx)("title", { children: "Chevron Right Icon" }),
|
|
863
|
+
/* @__PURE__ */ (0, import_jsx_runtime24.jsx)("path", { d: "m9 18 6-6-6-6" })
|
|
837
864
|
]
|
|
838
865
|
}
|
|
839
866
|
);
|
|
840
867
|
};
|
|
841
868
|
|
|
842
869
|
// src/chevron-up-down.tsx
|
|
843
|
-
var
|
|
870
|
+
var import_jsx_runtime25 = require("react/jsx-runtime");
|
|
844
871
|
var ChevronUpDown = ({ size = 24, ...props }) => {
|
|
845
|
-
return /* @__PURE__ */ (0,
|
|
872
|
+
return /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)(
|
|
846
873
|
"svg",
|
|
847
874
|
{
|
|
848
875
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -856,18 +883,18 @@ var ChevronUpDown = ({ size = 24, ...props }) => {
|
|
|
856
883
|
strokeLinejoin: "round",
|
|
857
884
|
...props,
|
|
858
885
|
children: [
|
|
859
|
-
/* @__PURE__ */ (0,
|
|
860
|
-
/* @__PURE__ */ (0,
|
|
861
|
-
/* @__PURE__ */ (0,
|
|
886
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)("title", { children: "Chevron Up Down icon" }),
|
|
887
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)("path", { d: "m7 15 5 5 5-5" }),
|
|
888
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)("path", { d: "m7 9 5-5 5 5" })
|
|
862
889
|
]
|
|
863
890
|
}
|
|
864
891
|
);
|
|
865
892
|
};
|
|
866
893
|
|
|
867
894
|
// src/chevron-up-icon.tsx
|
|
868
|
-
var
|
|
895
|
+
var import_jsx_runtime26 = require("react/jsx-runtime");
|
|
869
896
|
var ChevronUpIcon = ({ size = 24, ...props }) => {
|
|
870
|
-
return /* @__PURE__ */ (0,
|
|
897
|
+
return /* @__PURE__ */ (0, import_jsx_runtime26.jsxs)(
|
|
871
898
|
"svg",
|
|
872
899
|
{
|
|
873
900
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -881,20 +908,20 @@ var ChevronUpIcon = ({ size = 24, ...props }) => {
|
|
|
881
908
|
strokeLinejoin: "round",
|
|
882
909
|
...props,
|
|
883
910
|
children: [
|
|
884
|
-
/* @__PURE__ */ (0,
|
|
885
|
-
/* @__PURE__ */ (0,
|
|
911
|
+
/* @__PURE__ */ (0, import_jsx_runtime26.jsx)("title", { children: "Chevron Up" }),
|
|
912
|
+
/* @__PURE__ */ (0, import_jsx_runtime26.jsx)("path", { d: "m18 15-6-6-6 6" })
|
|
886
913
|
]
|
|
887
914
|
}
|
|
888
915
|
);
|
|
889
916
|
};
|
|
890
917
|
|
|
891
918
|
// src/chevrons-left-right-ellipsis-icon.tsx
|
|
892
|
-
var
|
|
919
|
+
var import_jsx_runtime27 = require("react/jsx-runtime");
|
|
893
920
|
var ChevronsLeftRightEllipsisIcon = ({
|
|
894
921
|
size = 24,
|
|
895
922
|
...props
|
|
896
923
|
}) => {
|
|
897
|
-
return /* @__PURE__ */ (0,
|
|
924
|
+
return /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)(
|
|
898
925
|
"svg",
|
|
899
926
|
{
|
|
900
927
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -908,21 +935,21 @@ var ChevronsLeftRightEllipsisIcon = ({
|
|
|
908
935
|
strokeLinejoin: "round",
|
|
909
936
|
...props,
|
|
910
937
|
children: [
|
|
911
|
-
/* @__PURE__ */ (0,
|
|
912
|
-
/* @__PURE__ */ (0,
|
|
913
|
-
/* @__PURE__ */ (0,
|
|
914
|
-
/* @__PURE__ */ (0,
|
|
915
|
-
/* @__PURE__ */ (0,
|
|
916
|
-
/* @__PURE__ */ (0,
|
|
938
|
+
/* @__PURE__ */ (0, import_jsx_runtime27.jsx)("title", { children: "ChevronsLeftRightEllipsis icon" }),
|
|
939
|
+
/* @__PURE__ */ (0, import_jsx_runtime27.jsx)("path", { d: "M12 12h.01" }),
|
|
940
|
+
/* @__PURE__ */ (0, import_jsx_runtime27.jsx)("path", { d: "M16 12h.01" }),
|
|
941
|
+
/* @__PURE__ */ (0, import_jsx_runtime27.jsx)("path", { d: "m17 7 5 5-5 5" }),
|
|
942
|
+
/* @__PURE__ */ (0, import_jsx_runtime27.jsx)("path", { d: "m7 7-5 5 5 5" }),
|
|
943
|
+
/* @__PURE__ */ (0, import_jsx_runtime27.jsx)("path", { d: "M8 12h.01" })
|
|
917
944
|
]
|
|
918
945
|
}
|
|
919
946
|
);
|
|
920
947
|
};
|
|
921
948
|
|
|
922
949
|
// src/circle.tsx
|
|
923
|
-
var
|
|
950
|
+
var import_jsx_runtime28 = require("react/jsx-runtime");
|
|
924
951
|
var CircleIcon = (props) => {
|
|
925
|
-
return /* @__PURE__ */ (0,
|
|
952
|
+
return /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)(
|
|
926
953
|
"svg",
|
|
927
954
|
{
|
|
928
955
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -936,19 +963,19 @@ var CircleIcon = (props) => {
|
|
|
936
963
|
strokeLinejoin: "round",
|
|
937
964
|
...props,
|
|
938
965
|
children: [
|
|
939
|
-
/* @__PURE__ */ (0,
|
|
940
|
-
/* @__PURE__ */ (0,
|
|
966
|
+
/* @__PURE__ */ (0, import_jsx_runtime28.jsx)("title", { children: "Circle Icon" }),
|
|
967
|
+
/* @__PURE__ */ (0, import_jsx_runtime28.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
|
|
941
968
|
" ",
|
|
942
|
-
/* @__PURE__ */ (0,
|
|
969
|
+
/* @__PURE__ */ (0, import_jsx_runtime28.jsx)("path", { d: "M20 6 9 17l-5-5" })
|
|
943
970
|
]
|
|
944
971
|
}
|
|
945
972
|
);
|
|
946
973
|
};
|
|
947
974
|
|
|
948
975
|
// src/circle-dot-icon.tsx
|
|
949
|
-
var
|
|
976
|
+
var import_jsx_runtime29 = require("react/jsx-runtime");
|
|
950
977
|
var CircleDotIcon = ({ size = 24, ...props }) => {
|
|
951
|
-
return /* @__PURE__ */ (0,
|
|
978
|
+
return /* @__PURE__ */ (0, import_jsx_runtime29.jsxs)(
|
|
952
979
|
"svg",
|
|
953
980
|
{
|
|
954
981
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -962,21 +989,21 @@ var CircleDotIcon = ({ size = 24, ...props }) => {
|
|
|
962
989
|
strokeLinejoin: "round",
|
|
963
990
|
...props,
|
|
964
991
|
children: [
|
|
965
|
-
/* @__PURE__ */ (0,
|
|
966
|
-
/* @__PURE__ */ (0,
|
|
967
|
-
/* @__PURE__ */ (0,
|
|
992
|
+
/* @__PURE__ */ (0, import_jsx_runtime29.jsx)("title", { children: "CircleDot icon" }),
|
|
993
|
+
/* @__PURE__ */ (0, import_jsx_runtime29.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
|
|
994
|
+
/* @__PURE__ */ (0, import_jsx_runtime29.jsx)("circle", { cx: "12", cy: "12", r: "1" })
|
|
968
995
|
]
|
|
969
996
|
}
|
|
970
997
|
);
|
|
971
998
|
};
|
|
972
999
|
|
|
973
1000
|
// src/circle-fading-arrow-up-icon.tsx
|
|
974
|
-
var
|
|
1001
|
+
var import_jsx_runtime30 = require("react/jsx-runtime");
|
|
975
1002
|
var CircleFadingArrowUpIcon = ({
|
|
976
1003
|
size = 24,
|
|
977
1004
|
...props
|
|
978
1005
|
}) => {
|
|
979
|
-
return /* @__PURE__ */ (0,
|
|
1006
|
+
return /* @__PURE__ */ (0, import_jsx_runtime30.jsxs)(
|
|
980
1007
|
"svg",
|
|
981
1008
|
{
|
|
982
1009
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -990,23 +1017,23 @@ var CircleFadingArrowUpIcon = ({
|
|
|
990
1017
|
strokeLinejoin: "round",
|
|
991
1018
|
...props,
|
|
992
1019
|
children: [
|
|
993
|
-
/* @__PURE__ */ (0,
|
|
994
|
-
/* @__PURE__ */ (0,
|
|
995
|
-
/* @__PURE__ */ (0,
|
|
996
|
-
/* @__PURE__ */ (0,
|
|
997
|
-
/* @__PURE__ */ (0,
|
|
998
|
-
/* @__PURE__ */ (0,
|
|
999
|
-
/* @__PURE__ */ (0,
|
|
1000
|
-
/* @__PURE__ */ (0,
|
|
1020
|
+
/* @__PURE__ */ (0, import_jsx_runtime30.jsx)("title", { children: "Circle Fading Arrow Up icon" }),
|
|
1021
|
+
/* @__PURE__ */ (0, import_jsx_runtime30.jsx)("path", { d: "M12 2a10 10 0 0 1 7.38 16.75" }),
|
|
1022
|
+
/* @__PURE__ */ (0, import_jsx_runtime30.jsx)("path", { d: "m16 12-4-4-4 4" }),
|
|
1023
|
+
/* @__PURE__ */ (0, import_jsx_runtime30.jsx)("path", { d: "M12 16V8" }),
|
|
1024
|
+
/* @__PURE__ */ (0, import_jsx_runtime30.jsx)("path", { d: "M2.5 8.875a10 10 0 0 0-.5 3" }),
|
|
1025
|
+
/* @__PURE__ */ (0, import_jsx_runtime30.jsx)("path", { d: "M2.83 16a10 10 0 0 0 2.43 3.4" }),
|
|
1026
|
+
/* @__PURE__ */ (0, import_jsx_runtime30.jsx)("path", { d: "M4.636 5.235a10 10 0 0 1 .891-.857" }),
|
|
1027
|
+
/* @__PURE__ */ (0, import_jsx_runtime30.jsx)("path", { d: "M8.644 21.42a10 10 0 0 0 7.631-.38" })
|
|
1001
1028
|
]
|
|
1002
1029
|
}
|
|
1003
1030
|
);
|
|
1004
1031
|
};
|
|
1005
1032
|
|
|
1006
1033
|
// src/close.tsx
|
|
1007
|
-
var
|
|
1034
|
+
var import_jsx_runtime31 = require("react/jsx-runtime");
|
|
1008
1035
|
var CloseIcon = (props) => {
|
|
1009
|
-
return /* @__PURE__ */ (0,
|
|
1036
|
+
return /* @__PURE__ */ (0, import_jsx_runtime31.jsxs)(
|
|
1010
1037
|
"svg",
|
|
1011
1038
|
{
|
|
1012
1039
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1020,18 +1047,18 @@ var CloseIcon = (props) => {
|
|
|
1020
1047
|
strokeLinejoin: "round",
|
|
1021
1048
|
...props,
|
|
1022
1049
|
children: [
|
|
1023
|
-
/* @__PURE__ */ (0,
|
|
1024
|
-
/* @__PURE__ */ (0,
|
|
1025
|
-
/* @__PURE__ */ (0,
|
|
1050
|
+
/* @__PURE__ */ (0, import_jsx_runtime31.jsx)("title", { children: "Close Icon" }),
|
|
1051
|
+
/* @__PURE__ */ (0, import_jsx_runtime31.jsx)("path", { d: "M18 6 6 18" }),
|
|
1052
|
+
/* @__PURE__ */ (0, import_jsx_runtime31.jsx)("path", { d: "m6 6 12 12" })
|
|
1026
1053
|
]
|
|
1027
1054
|
}
|
|
1028
1055
|
);
|
|
1029
1056
|
};
|
|
1030
1057
|
|
|
1031
1058
|
// src/code-block-icon.tsx
|
|
1032
|
-
var
|
|
1059
|
+
var import_jsx_runtime32 = require("react/jsx-runtime");
|
|
1033
1060
|
var CodeBlockIcon = ({ size = 24, ...props }) => {
|
|
1034
|
-
return /* @__PURE__ */ (0,
|
|
1061
|
+
return /* @__PURE__ */ (0, import_jsx_runtime32.jsxs)(
|
|
1035
1062
|
"svg",
|
|
1036
1063
|
{
|
|
1037
1064
|
width: size,
|
|
@@ -1041,8 +1068,8 @@ var CodeBlockIcon = ({ size = 24, ...props }) => {
|
|
|
1041
1068
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1042
1069
|
...props,
|
|
1043
1070
|
children: [
|
|
1044
|
-
/* @__PURE__ */ (0,
|
|
1045
|
-
/* @__PURE__ */ (0,
|
|
1071
|
+
/* @__PURE__ */ (0, import_jsx_runtime32.jsx)("title", { children: "Code Block" }),
|
|
1072
|
+
/* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
|
|
1046
1073
|
"path",
|
|
1047
1074
|
{
|
|
1048
1075
|
fillRule: "evenodd",
|
|
@@ -1051,7 +1078,7 @@ var CodeBlockIcon = ({ size = 24, ...props }) => {
|
|
|
1051
1078
|
fill: "currentColor"
|
|
1052
1079
|
}
|
|
1053
1080
|
),
|
|
1054
|
-
/* @__PURE__ */ (0,
|
|
1081
|
+
/* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
|
|
1055
1082
|
"path",
|
|
1056
1083
|
{
|
|
1057
1084
|
fillRule: "evenodd",
|
|
@@ -1060,7 +1087,7 @@ var CodeBlockIcon = ({ size = 24, ...props }) => {
|
|
|
1060
1087
|
fill: "currentColor"
|
|
1061
1088
|
}
|
|
1062
1089
|
),
|
|
1063
|
-
/* @__PURE__ */ (0,
|
|
1090
|
+
/* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
|
|
1064
1091
|
"path",
|
|
1065
1092
|
{
|
|
1066
1093
|
fillRule: "evenodd",
|
|
@@ -1075,9 +1102,9 @@ var CodeBlockIcon = ({ size = 24, ...props }) => {
|
|
|
1075
1102
|
};
|
|
1076
1103
|
|
|
1077
1104
|
// src/code-icon.tsx
|
|
1078
|
-
var
|
|
1105
|
+
var import_jsx_runtime33 = require("react/jsx-runtime");
|
|
1079
1106
|
var CodeIcon = ({ size = 24, ...props }) => {
|
|
1080
|
-
return /* @__PURE__ */ (0,
|
|
1107
|
+
return /* @__PURE__ */ (0, import_jsx_runtime33.jsxs)(
|
|
1081
1108
|
"svg",
|
|
1082
1109
|
{
|
|
1083
1110
|
width: size,
|
|
@@ -1087,22 +1114,22 @@ var CodeIcon = ({ size = 24, ...props }) => {
|
|
|
1087
1114
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1088
1115
|
...props,
|
|
1089
1116
|
children: [
|
|
1090
|
-
/* @__PURE__ */ (0,
|
|
1091
|
-
/* @__PURE__ */ (0,
|
|
1117
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)("title", { children: "Code" }),
|
|
1118
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
|
|
1092
1119
|
"path",
|
|
1093
1120
|
{
|
|
1094
1121
|
d: "M15.4545 4.2983C15.6192 3.77115 15.3254 3.21028 14.7983 3.04554C14.2712 2.88081 13.7103 3.1746 13.5455 3.70175L8.54554 19.7017C8.38081 20.2289 8.6746 20.7898 9.20175 20.9545C9.72889 21.1192 10.2898 20.8254 10.4545 20.2983L15.4545 4.2983Z",
|
|
1095
1122
|
fill: "currentColor"
|
|
1096
1123
|
}
|
|
1097
1124
|
),
|
|
1098
|
-
/* @__PURE__ */ (0,
|
|
1125
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
|
|
1099
1126
|
"path",
|
|
1100
1127
|
{
|
|
1101
1128
|
d: "M6.70711 7.29289C7.09763 7.68342 7.09763 8.31658 6.70711 8.70711L3.41421 12L6.70711 15.2929C7.09763 15.6834 7.09763 16.3166 6.70711 16.7071C6.31658 17.0976 5.68342 17.0976 5.29289 16.7071L1.29289 12.7071C0.902369 12.3166 0.902369 11.6834 1.29289 11.2929L5.29289 7.29289C5.68342 6.90237 6.31658 6.90237 6.70711 7.29289Z",
|
|
1102
1129
|
fill: "currentColor"
|
|
1103
1130
|
}
|
|
1104
1131
|
),
|
|
1105
|
-
/* @__PURE__ */ (0,
|
|
1132
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
|
|
1106
1133
|
"path",
|
|
1107
1134
|
{
|
|
1108
1135
|
d: "M17.2929 7.29289C17.6834 6.90237 18.3166 6.90237 18.7071 7.29289L22.7071 11.2929C23.0976 11.6834 23.0976 12.3166 22.7071 12.7071L18.7071 16.7071C18.3166 17.0976 17.6834 17.0976 17.2929 16.7071C16.9024 16.3166 16.9024 15.6834 17.2929 15.2929L20.5858 12L17.2929 8.70711C16.9024 8.31658 16.9024 7.68342 17.2929 7.29289Z",
|
|
@@ -1115,9 +1142,9 @@ var CodeIcon = ({ size = 24, ...props }) => {
|
|
|
1115
1142
|
};
|
|
1116
1143
|
|
|
1117
1144
|
// src/codeblock-icon.tsx
|
|
1118
|
-
var
|
|
1145
|
+
var import_jsx_runtime34 = require("react/jsx-runtime");
|
|
1119
1146
|
var CodeblockIcon = ({ size = 24, ...props }) => {
|
|
1120
|
-
return /* @__PURE__ */ (0,
|
|
1147
|
+
return /* @__PURE__ */ (0, import_jsx_runtime34.jsxs)(
|
|
1121
1148
|
"svg",
|
|
1122
1149
|
{
|
|
1123
1150
|
width: size,
|
|
@@ -1127,8 +1154,8 @@ var CodeblockIcon = ({ size = 24, ...props }) => {
|
|
|
1127
1154
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1128
1155
|
...props,
|
|
1129
1156
|
children: [
|
|
1130
|
-
/* @__PURE__ */ (0,
|
|
1131
|
-
/* @__PURE__ */ (0,
|
|
1157
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)("title", { children: "Code Block" }),
|
|
1158
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
|
|
1132
1159
|
"path",
|
|
1133
1160
|
{
|
|
1134
1161
|
fillRule: "evenodd",
|
|
@@ -1137,7 +1164,7 @@ var CodeblockIcon = ({ size = 24, ...props }) => {
|
|
|
1137
1164
|
fill: "currentColor"
|
|
1138
1165
|
}
|
|
1139
1166
|
),
|
|
1140
|
-
/* @__PURE__ */ (0,
|
|
1167
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
|
|
1141
1168
|
"path",
|
|
1142
1169
|
{
|
|
1143
1170
|
fillRule: "evenodd",
|
|
@@ -1146,7 +1173,7 @@ var CodeblockIcon = ({ size = 24, ...props }) => {
|
|
|
1146
1173
|
fill: "currentColor"
|
|
1147
1174
|
}
|
|
1148
1175
|
),
|
|
1149
|
-
/* @__PURE__ */ (0,
|
|
1176
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
|
|
1150
1177
|
"path",
|
|
1151
1178
|
{
|
|
1152
1179
|
fillRule: "evenodd",
|
|
@@ -1161,9 +1188,9 @@ var CodeblockIcon = ({ size = 24, ...props }) => {
|
|
|
1161
1188
|
};
|
|
1162
1189
|
|
|
1163
1190
|
// src/controls.tsx
|
|
1164
|
-
var
|
|
1191
|
+
var import_jsx_runtime35 = require("react/jsx-runtime");
|
|
1165
1192
|
var ControlsIcon = ({ size = 24, ...props }) => {
|
|
1166
|
-
return /* @__PURE__ */ (0,
|
|
1193
|
+
return /* @__PURE__ */ (0, import_jsx_runtime35.jsxs)(
|
|
1167
1194
|
"svg",
|
|
1168
1195
|
{
|
|
1169
1196
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1177,21 +1204,21 @@ var ControlsIcon = ({ size = 24, ...props }) => {
|
|
|
1177
1204
|
strokeLinejoin: "round",
|
|
1178
1205
|
...props,
|
|
1179
1206
|
children: [
|
|
1180
|
-
/* @__PURE__ */ (0,
|
|
1181
|
-
/* @__PURE__ */ (0,
|
|
1182
|
-
/* @__PURE__ */ (0,
|
|
1183
|
-
/* @__PURE__ */ (0,
|
|
1184
|
-
/* @__PURE__ */ (0,
|
|
1185
|
-
/* @__PURE__ */ (0,
|
|
1207
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsx)("title", { children: "Controls icon" }),
|
|
1208
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsx)("path", { d: "m3 17 2 2 4-4" }),
|
|
1209
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsx)("path", { d: "m3 7 2 2 4-4" }),
|
|
1210
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsx)("path", { d: "M13 6h8" }),
|
|
1211
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsx)("path", { d: "M13 12h8" }),
|
|
1212
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsx)("path", { d: "M13 18h8" })
|
|
1186
1213
|
]
|
|
1187
1214
|
}
|
|
1188
1215
|
);
|
|
1189
1216
|
};
|
|
1190
1217
|
|
|
1191
1218
|
// src/copy-icon.tsx
|
|
1192
|
-
var
|
|
1219
|
+
var import_jsx_runtime36 = require("react/jsx-runtime");
|
|
1193
1220
|
var CopyIcon = ({ size = 24, ...props }) => {
|
|
1194
|
-
return /* @__PURE__ */ (0,
|
|
1221
|
+
return /* @__PURE__ */ (0, import_jsx_runtime36.jsxs)(
|
|
1195
1222
|
"svg",
|
|
1196
1223
|
{
|
|
1197
1224
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1205,18 +1232,18 @@ var CopyIcon = ({ size = 24, ...props }) => {
|
|
|
1205
1232
|
strokeLinejoin: "round",
|
|
1206
1233
|
...props,
|
|
1207
1234
|
children: [
|
|
1208
|
-
/* @__PURE__ */ (0,
|
|
1209
|
-
/* @__PURE__ */ (0,
|
|
1210
|
-
/* @__PURE__ */ (0,
|
|
1235
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsx)("title", { children: "Copy Icon" }),
|
|
1236
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsx)("rect", { width: "14", height: "14", x: "8", y: "8", rx: "2", ry: "2" }),
|
|
1237
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsx)("path", { d: "M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2" })
|
|
1211
1238
|
]
|
|
1212
1239
|
}
|
|
1213
1240
|
);
|
|
1214
1241
|
};
|
|
1215
1242
|
|
|
1216
1243
|
// src/corner-down-left-icon.tsx
|
|
1217
|
-
var
|
|
1244
|
+
var import_jsx_runtime37 = require("react/jsx-runtime");
|
|
1218
1245
|
var CornerDownLeftIcon = ({ size = 24, ...props }) => {
|
|
1219
|
-
return /* @__PURE__ */ (0,
|
|
1246
|
+
return /* @__PURE__ */ (0, import_jsx_runtime37.jsxs)(
|
|
1220
1247
|
"svg",
|
|
1221
1248
|
{
|
|
1222
1249
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1230,18 +1257,38 @@ var CornerDownLeftIcon = ({ size = 24, ...props }) => {
|
|
|
1230
1257
|
strokeLinejoin: "round",
|
|
1231
1258
|
...props,
|
|
1232
1259
|
children: [
|
|
1233
|
-
/* @__PURE__ */ (0,
|
|
1234
|
-
/* @__PURE__ */ (0,
|
|
1235
|
-
/* @__PURE__ */ (0,
|
|
1260
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)("title", { children: "Corner Down Left" }),
|
|
1261
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)("path", { d: "M20 4v7a4 4 0 0 1-4 4H4" }),
|
|
1262
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)("path", { d: "m9 10-5 5 5 5" })
|
|
1263
|
+
]
|
|
1264
|
+
}
|
|
1265
|
+
);
|
|
1266
|
+
};
|
|
1267
|
+
|
|
1268
|
+
// src/crop-icon.tsx
|
|
1269
|
+
var import_jsx_runtime38 = require("react/jsx-runtime");
|
|
1270
|
+
var CropIcon = ({ size = 24, ...props }) => {
|
|
1271
|
+
return /* @__PURE__ */ (0, import_jsx_runtime38.jsxs)(
|
|
1272
|
+
"svg",
|
|
1273
|
+
{
|
|
1274
|
+
width: size,
|
|
1275
|
+
height: size,
|
|
1276
|
+
viewBox: "0 0 256 256",
|
|
1277
|
+
fill: "currentColor",
|
|
1278
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1279
|
+
...props,
|
|
1280
|
+
children: [
|
|
1281
|
+
/* @__PURE__ */ (0, import_jsx_runtime38.jsx)("title", { children: "Crop Icon" }),
|
|
1282
|
+
/* @__PURE__ */ (0, import_jsx_runtime38.jsx)("path", { d: "M240,192a8,8,0,0,1-8,8H200v32a8,8,0,0,1-16,0V200H64a8,8,0,0,1-8-8V72H24a8,8,0,0,1,0-16H56V24a8,8,0,0,1,16,0V184H232A8,8,0,0,1,240,192ZM96,72h88v88a8,8,0,0,0,16,0V64a8,8,0,0,0-8-8H96a8,8,0,0,0,0,16Z" })
|
|
1236
1283
|
]
|
|
1237
1284
|
}
|
|
1238
1285
|
);
|
|
1239
1286
|
};
|
|
1240
1287
|
|
|
1241
1288
|
// src/data-asset.tsx
|
|
1242
|
-
var
|
|
1289
|
+
var import_jsx_runtime39 = require("react/jsx-runtime");
|
|
1243
1290
|
var DataAssetIcon = ({ size = 24, ...props }) => {
|
|
1244
|
-
return /* @__PURE__ */ (0,
|
|
1291
|
+
return /* @__PURE__ */ (0, import_jsx_runtime39.jsxs)(
|
|
1245
1292
|
"svg",
|
|
1246
1293
|
{
|
|
1247
1294
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1255,19 +1302,19 @@ var DataAssetIcon = ({ size = 24, ...props }) => {
|
|
|
1255
1302
|
strokeLinejoin: "round",
|
|
1256
1303
|
...props,
|
|
1257
1304
|
children: [
|
|
1258
|
-
/* @__PURE__ */ (0,
|
|
1259
|
-
/* @__PURE__ */ (0,
|
|
1260
|
-
/* @__PURE__ */ (0,
|
|
1261
|
-
/* @__PURE__ */ (0,
|
|
1305
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)("title", { children: "Plattform Asset icon" }),
|
|
1306
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)("ellipse", { cx: "12", cy: "5", rx: "9", ry: "3" }),
|
|
1307
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)("path", { d: "M3 5V19A9 3 0 0 0 21 19V5" }),
|
|
1308
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)("path", { d: "M3 12A9 3 0 0 0 21 12" })
|
|
1262
1309
|
]
|
|
1263
1310
|
}
|
|
1264
1311
|
);
|
|
1265
1312
|
};
|
|
1266
1313
|
|
|
1267
1314
|
// src/documents.tsx
|
|
1268
|
-
var
|
|
1315
|
+
var import_jsx_runtime40 = require("react/jsx-runtime");
|
|
1269
1316
|
var DocumentsIcon = ({ size = 24, ...props }) => {
|
|
1270
|
-
return /* @__PURE__ */ (0,
|
|
1317
|
+
return /* @__PURE__ */ (0, import_jsx_runtime40.jsxs)(
|
|
1271
1318
|
"svg",
|
|
1272
1319
|
{
|
|
1273
1320
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1281,21 +1328,21 @@ var DocumentsIcon = ({ size = 24, ...props }) => {
|
|
|
1281
1328
|
strokeLinejoin: "round",
|
|
1282
1329
|
...props,
|
|
1283
1330
|
children: [
|
|
1284
|
-
/* @__PURE__ */ (0,
|
|
1285
|
-
/* @__PURE__ */ (0,
|
|
1286
|
-
/* @__PURE__ */ (0,
|
|
1287
|
-
/* @__PURE__ */ (0,
|
|
1288
|
-
/* @__PURE__ */ (0,
|
|
1289
|
-
/* @__PURE__ */ (0,
|
|
1331
|
+
/* @__PURE__ */ (0, import_jsx_runtime40.jsx)("title", { children: "Documents icon" }),
|
|
1332
|
+
/* @__PURE__ */ (0, import_jsx_runtime40.jsx)("path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" }),
|
|
1333
|
+
/* @__PURE__ */ (0, import_jsx_runtime40.jsx)("path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }),
|
|
1334
|
+
/* @__PURE__ */ (0, import_jsx_runtime40.jsx)("path", { d: "M10 9H8" }),
|
|
1335
|
+
/* @__PURE__ */ (0, import_jsx_runtime40.jsx)("path", { d: "M16 13H8" }),
|
|
1336
|
+
/* @__PURE__ */ (0, import_jsx_runtime40.jsx)("path", { d: "M16 17H8" })
|
|
1290
1337
|
]
|
|
1291
1338
|
}
|
|
1292
1339
|
);
|
|
1293
1340
|
};
|
|
1294
1341
|
|
|
1295
1342
|
// src/domain-icon.tsx
|
|
1296
|
-
var
|
|
1343
|
+
var import_jsx_runtime41 = require("react/jsx-runtime");
|
|
1297
1344
|
var DomainIcon = ({ size = 24, ...props }) => {
|
|
1298
|
-
return /* @__PURE__ */ (0,
|
|
1345
|
+
return /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)(
|
|
1299
1346
|
"svg",
|
|
1300
1347
|
{
|
|
1301
1348
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1309,19 +1356,19 @@ var DomainIcon = ({ size = 24, ...props }) => {
|
|
|
1309
1356
|
strokeLinejoin: "round",
|
|
1310
1357
|
...props,
|
|
1311
1358
|
children: [
|
|
1312
|
-
/* @__PURE__ */ (0,
|
|
1313
|
-
/* @__PURE__ */ (0,
|
|
1314
|
-
/* @__PURE__ */ (0,
|
|
1315
|
-
/* @__PURE__ */ (0,
|
|
1359
|
+
/* @__PURE__ */ (0, import_jsx_runtime41.jsx)("title", { children: "Domain icon" }),
|
|
1360
|
+
/* @__PURE__ */ (0, import_jsx_runtime41.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
|
|
1361
|
+
/* @__PURE__ */ (0, import_jsx_runtime41.jsx)("path", { d: "M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20" }),
|
|
1362
|
+
/* @__PURE__ */ (0, import_jsx_runtime41.jsx)("path", { d: "M2 12h20" })
|
|
1316
1363
|
]
|
|
1317
1364
|
}
|
|
1318
1365
|
);
|
|
1319
1366
|
};
|
|
1320
1367
|
|
|
1321
1368
|
// src/dsar.tsx
|
|
1322
|
-
var
|
|
1369
|
+
var import_jsx_runtime42 = require("react/jsx-runtime");
|
|
1323
1370
|
var DSARIcon = ({ size = 24, ...props }) => {
|
|
1324
|
-
return /* @__PURE__ */ (0,
|
|
1371
|
+
return /* @__PURE__ */ (0, import_jsx_runtime42.jsxs)(
|
|
1325
1372
|
"svg",
|
|
1326
1373
|
{
|
|
1327
1374
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1335,18 +1382,18 @@ var DSARIcon = ({ size = 24, ...props }) => {
|
|
|
1335
1382
|
strokeLinejoin: "round",
|
|
1336
1383
|
...props,
|
|
1337
1384
|
children: [
|
|
1338
|
-
/* @__PURE__ */ (0,
|
|
1339
|
-
/* @__PURE__ */ (0,
|
|
1340
|
-
/* @__PURE__ */ (0,
|
|
1385
|
+
/* @__PURE__ */ (0, import_jsx_runtime42.jsx)("title", { children: "DSAR icon" }),
|
|
1386
|
+
/* @__PURE__ */ (0, import_jsx_runtime42.jsx)("polyline", { points: "22 12 16 12 14 15 10 15 8 12 2 12" }),
|
|
1387
|
+
/* @__PURE__ */ (0, import_jsx_runtime42.jsx)("path", { d: "M5.45 5.11 2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z" })
|
|
1341
1388
|
]
|
|
1342
1389
|
}
|
|
1343
1390
|
);
|
|
1344
1391
|
};
|
|
1345
1392
|
|
|
1346
1393
|
// src/edit-icon.tsx
|
|
1347
|
-
var
|
|
1394
|
+
var import_jsx_runtime43 = require("react/jsx-runtime");
|
|
1348
1395
|
var EditIcon = ({ size = 24, ...props }) => {
|
|
1349
|
-
return /* @__PURE__ */ (0,
|
|
1396
|
+
return /* @__PURE__ */ (0, import_jsx_runtime43.jsxs)(
|
|
1350
1397
|
"svg",
|
|
1351
1398
|
{
|
|
1352
1399
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1360,18 +1407,18 @@ var EditIcon = ({ size = 24, ...props }) => {
|
|
|
1360
1407
|
strokeLinejoin: "round",
|
|
1361
1408
|
...props,
|
|
1362
1409
|
children: [
|
|
1363
|
-
/* @__PURE__ */ (0,
|
|
1364
|
-
/* @__PURE__ */ (0,
|
|
1365
|
-
/* @__PURE__ */ (0,
|
|
1410
|
+
/* @__PURE__ */ (0, import_jsx_runtime43.jsx)("title", { children: "Edit icon" }),
|
|
1411
|
+
/* @__PURE__ */ (0, import_jsx_runtime43.jsx)("path", { d: "M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z" }),
|
|
1412
|
+
/* @__PURE__ */ (0, import_jsx_runtime43.jsx)("path", { d: "m15 5 4 4" })
|
|
1366
1413
|
]
|
|
1367
1414
|
}
|
|
1368
1415
|
);
|
|
1369
1416
|
};
|
|
1370
1417
|
|
|
1371
1418
|
// src/ellipsis-icon.tsx
|
|
1372
|
-
var
|
|
1419
|
+
var import_jsx_runtime44 = require("react/jsx-runtime");
|
|
1373
1420
|
var EllipsisIcon = ({ size = 24, ...props }) => {
|
|
1374
|
-
return /* @__PURE__ */ (0,
|
|
1421
|
+
return /* @__PURE__ */ (0, import_jsx_runtime44.jsxs)(
|
|
1375
1422
|
"svg",
|
|
1376
1423
|
{
|
|
1377
1424
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1385,19 +1432,19 @@ var EllipsisIcon = ({ size = 24, ...props }) => {
|
|
|
1385
1432
|
strokeLinejoin: "round",
|
|
1386
1433
|
...props,
|
|
1387
1434
|
children: [
|
|
1388
|
-
/* @__PURE__ */ (0,
|
|
1389
|
-
/* @__PURE__ */ (0,
|
|
1390
|
-
/* @__PURE__ */ (0,
|
|
1391
|
-
/* @__PURE__ */ (0,
|
|
1435
|
+
/* @__PURE__ */ (0, import_jsx_runtime44.jsx)("title", { children: "Ellipsis Icon" }),
|
|
1436
|
+
/* @__PURE__ */ (0, import_jsx_runtime44.jsx)("circle", { cx: "12", cy: "12", r: "1" }),
|
|
1437
|
+
/* @__PURE__ */ (0, import_jsx_runtime44.jsx)("circle", { cx: "19", cy: "12", r: "1" }),
|
|
1438
|
+
/* @__PURE__ */ (0, import_jsx_runtime44.jsx)("circle", { cx: "5", cy: "12", r: "1" })
|
|
1392
1439
|
]
|
|
1393
1440
|
}
|
|
1394
1441
|
);
|
|
1395
1442
|
};
|
|
1396
1443
|
|
|
1397
1444
|
// src/equals-icon.tsx
|
|
1398
|
-
var
|
|
1445
|
+
var import_jsx_runtime45 = require("react/jsx-runtime");
|
|
1399
1446
|
var EqualsIcon = ({ size = 24, ...props }) => {
|
|
1400
|
-
return /* @__PURE__ */ (0,
|
|
1447
|
+
return /* @__PURE__ */ (0, import_jsx_runtime45.jsxs)(
|
|
1401
1448
|
"svg",
|
|
1402
1449
|
{
|
|
1403
1450
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1411,18 +1458,18 @@ var EqualsIcon = ({ size = 24, ...props }) => {
|
|
|
1411
1458
|
strokeLinejoin: "round",
|
|
1412
1459
|
...props,
|
|
1413
1460
|
children: [
|
|
1414
|
-
/* @__PURE__ */ (0,
|
|
1415
|
-
/* @__PURE__ */ (0,
|
|
1416
|
-
/* @__PURE__ */ (0,
|
|
1461
|
+
/* @__PURE__ */ (0, import_jsx_runtime45.jsx)("title", { children: "Equals icon" }),
|
|
1462
|
+
/* @__PURE__ */ (0, import_jsx_runtime45.jsx)("line", { x1: "5", x2: "19", y1: "9", y2: "9" }),
|
|
1463
|
+
/* @__PURE__ */ (0, import_jsx_runtime45.jsx)("line", { x1: "5", x2: "19", y1: "15", y2: "15" })
|
|
1417
1464
|
]
|
|
1418
1465
|
}
|
|
1419
1466
|
);
|
|
1420
1467
|
};
|
|
1421
1468
|
|
|
1422
1469
|
// src/external-link-icon.tsx
|
|
1423
|
-
var
|
|
1470
|
+
var import_jsx_runtime46 = require("react/jsx-runtime");
|
|
1424
1471
|
var ExternalLinkIcon = ({ size = 24, ...props }) => {
|
|
1425
|
-
return /* @__PURE__ */ (0,
|
|
1472
|
+
return /* @__PURE__ */ (0, import_jsx_runtime46.jsxs)(
|
|
1426
1473
|
"svg",
|
|
1427
1474
|
{
|
|
1428
1475
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1437,19 +1484,19 @@ var ExternalLinkIcon = ({ size = 24, ...props }) => {
|
|
|
1437
1484
|
"aria-hidden": "true",
|
|
1438
1485
|
...props,
|
|
1439
1486
|
children: [
|
|
1440
|
-
/* @__PURE__ */ (0,
|
|
1441
|
-
/* @__PURE__ */ (0,
|
|
1442
|
-
/* @__PURE__ */ (0,
|
|
1443
|
-
/* @__PURE__ */ (0,
|
|
1487
|
+
/* @__PURE__ */ (0, import_jsx_runtime46.jsx)("title", { children: "External Link Icon" }),
|
|
1488
|
+
/* @__PURE__ */ (0, import_jsx_runtime46.jsx)("path", { d: "M15 3h6v6" }),
|
|
1489
|
+
/* @__PURE__ */ (0, import_jsx_runtime46.jsx)("path", { d: "M10 14 21 3" }),
|
|
1490
|
+
/* @__PURE__ */ (0, import_jsx_runtime46.jsx)("path", { d: "M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6" })
|
|
1444
1491
|
]
|
|
1445
1492
|
}
|
|
1446
1493
|
);
|
|
1447
1494
|
};
|
|
1448
1495
|
|
|
1449
1496
|
// src/eye.tsx
|
|
1450
|
-
var
|
|
1497
|
+
var import_jsx_runtime47 = require("react/jsx-runtime");
|
|
1451
1498
|
var EyeIcon = (props) => {
|
|
1452
|
-
return /* @__PURE__ */ (0,
|
|
1499
|
+
return /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)(
|
|
1453
1500
|
"svg",
|
|
1454
1501
|
{
|
|
1455
1502
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1463,18 +1510,18 @@ var EyeIcon = (props) => {
|
|
|
1463
1510
|
strokeLinejoin: "round",
|
|
1464
1511
|
...props,
|
|
1465
1512
|
children: [
|
|
1466
|
-
/* @__PURE__ */ (0,
|
|
1467
|
-
/* @__PURE__ */ (0,
|
|
1468
|
-
/* @__PURE__ */ (0,
|
|
1513
|
+
/* @__PURE__ */ (0, import_jsx_runtime47.jsx)("title", { children: "Eye Icon" }),
|
|
1514
|
+
/* @__PURE__ */ (0, import_jsx_runtime47.jsx)("path", { d: "M2.062 12.348a1 1 0 0 1 0-.696 10.75 10.75 0 0 1 19.876 0 1 1 0 0 1 0 .696 10.75 10.75 0 0 1-19.876 0" }),
|
|
1515
|
+
/* @__PURE__ */ (0, import_jsx_runtime47.jsx)("circle", { cx: "12", cy: "12", r: "3" })
|
|
1469
1516
|
]
|
|
1470
1517
|
}
|
|
1471
1518
|
);
|
|
1472
1519
|
};
|
|
1473
1520
|
|
|
1474
1521
|
// src/eye-off.tsx
|
|
1475
|
-
var
|
|
1522
|
+
var import_jsx_runtime48 = require("react/jsx-runtime");
|
|
1476
1523
|
var EyeOffIcon = (props) => {
|
|
1477
|
-
return /* @__PURE__ */ (0,
|
|
1524
|
+
return /* @__PURE__ */ (0, import_jsx_runtime48.jsxs)(
|
|
1478
1525
|
"svg",
|
|
1479
1526
|
{
|
|
1480
1527
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1488,20 +1535,20 @@ var EyeOffIcon = (props) => {
|
|
|
1488
1535
|
strokeLinejoin: "round",
|
|
1489
1536
|
...props,
|
|
1490
1537
|
children: [
|
|
1491
|
-
/* @__PURE__ */ (0,
|
|
1492
|
-
/* @__PURE__ */ (0,
|
|
1493
|
-
/* @__PURE__ */ (0,
|
|
1494
|
-
/* @__PURE__ */ (0,
|
|
1495
|
-
/* @__PURE__ */ (0,
|
|
1538
|
+
/* @__PURE__ */ (0, import_jsx_runtime48.jsx)("title", { children: "Eye Off Icon" }),
|
|
1539
|
+
/* @__PURE__ */ (0, import_jsx_runtime48.jsx)("path", { d: "M10.733 5.076a10.744 10.744 0 0 1 11.205 6.575 1 1 0 0 1 0 .696 10.747 10.747 0 0 1-1.444 2.49" }),
|
|
1540
|
+
/* @__PURE__ */ (0, import_jsx_runtime48.jsx)("path", { d: "M14.084 14.158a3 3 0 0 1-4.242-4.242" }),
|
|
1541
|
+
/* @__PURE__ */ (0, import_jsx_runtime48.jsx)("path", { d: "M17.479 17.499a10.75 10.75 0 0 1-15.417-5.151 1 1 0 0 1 0-.696 10.75 10.75 0 0 1 4.446-5.143" }),
|
|
1542
|
+
/* @__PURE__ */ (0, import_jsx_runtime48.jsx)("path", { d: "m2 2 20 20" })
|
|
1496
1543
|
]
|
|
1497
1544
|
}
|
|
1498
1545
|
);
|
|
1499
1546
|
};
|
|
1500
1547
|
|
|
1501
1548
|
// src/globe-icon.tsx
|
|
1502
|
-
var
|
|
1549
|
+
var import_jsx_runtime49 = require("react/jsx-runtime");
|
|
1503
1550
|
var GlobeIcon = ({ size = 24, ...props }) => {
|
|
1504
|
-
return /* @__PURE__ */ (0,
|
|
1551
|
+
return /* @__PURE__ */ (0, import_jsx_runtime49.jsxs)(
|
|
1505
1552
|
"svg",
|
|
1506
1553
|
{
|
|
1507
1554
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1516,19 +1563,19 @@ var GlobeIcon = ({ size = 24, ...props }) => {
|
|
|
1516
1563
|
"aria-hidden": "true",
|
|
1517
1564
|
...props,
|
|
1518
1565
|
children: [
|
|
1519
|
-
/* @__PURE__ */ (0,
|
|
1520
|
-
/* @__PURE__ */ (0,
|
|
1521
|
-
/* @__PURE__ */ (0,
|
|
1522
|
-
/* @__PURE__ */ (0,
|
|
1566
|
+
/* @__PURE__ */ (0, import_jsx_runtime49.jsx)("title", { children: "External Link Icon" }),
|
|
1567
|
+
/* @__PURE__ */ (0, import_jsx_runtime49.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
|
|
1568
|
+
/* @__PURE__ */ (0, import_jsx_runtime49.jsx)("path", { d: "M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20" }),
|
|
1569
|
+
/* @__PURE__ */ (0, import_jsx_runtime49.jsx)("path", { d: "M2 12h20" })
|
|
1523
1570
|
]
|
|
1524
1571
|
}
|
|
1525
1572
|
);
|
|
1526
1573
|
};
|
|
1527
1574
|
|
|
1528
1575
|
// src/grip-vertical.tsx
|
|
1529
|
-
var
|
|
1576
|
+
var import_jsx_runtime50 = require("react/jsx-runtime");
|
|
1530
1577
|
var GripVerticalIcon = ({ size = 24, ...props }) => {
|
|
1531
|
-
return /* @__PURE__ */ (0,
|
|
1578
|
+
return /* @__PURE__ */ (0, import_jsx_runtime50.jsxs)(
|
|
1532
1579
|
"svg",
|
|
1533
1580
|
{
|
|
1534
1581
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1543,22 +1590,22 @@ var GripVerticalIcon = ({ size = 24, ...props }) => {
|
|
|
1543
1590
|
"aria-hidden": "true",
|
|
1544
1591
|
...props,
|
|
1545
1592
|
children: [
|
|
1546
|
-
/* @__PURE__ */ (0,
|
|
1547
|
-
/* @__PURE__ */ (0,
|
|
1548
|
-
/* @__PURE__ */ (0,
|
|
1549
|
-
/* @__PURE__ */ (0,
|
|
1550
|
-
/* @__PURE__ */ (0,
|
|
1551
|
-
/* @__PURE__ */ (0,
|
|
1552
|
-
/* @__PURE__ */ (0,
|
|
1593
|
+
/* @__PURE__ */ (0, import_jsx_runtime50.jsx)("title", { children: "Grip Vertical Icon" }),
|
|
1594
|
+
/* @__PURE__ */ (0, import_jsx_runtime50.jsx)("circle", { cx: "9", cy: "12", r: "1" }),
|
|
1595
|
+
/* @__PURE__ */ (0, import_jsx_runtime50.jsx)("circle", { cx: "9", cy: "5", r: "1" }),
|
|
1596
|
+
/* @__PURE__ */ (0, import_jsx_runtime50.jsx)("circle", { cx: "9", cy: "19", r: "1" }),
|
|
1597
|
+
/* @__PURE__ */ (0, import_jsx_runtime50.jsx)("circle", { cx: "15", cy: "12", r: "1" }),
|
|
1598
|
+
/* @__PURE__ */ (0, import_jsx_runtime50.jsx)("circle", { cx: "15", cy: "5", r: "1" }),
|
|
1599
|
+
/* @__PURE__ */ (0, import_jsx_runtime50.jsx)("circle", { cx: "15", cy: "19", r: "1" })
|
|
1553
1600
|
]
|
|
1554
1601
|
}
|
|
1555
1602
|
);
|
|
1556
1603
|
};
|
|
1557
1604
|
|
|
1558
1605
|
// src/heading-five-icon.tsx
|
|
1559
|
-
var
|
|
1606
|
+
var import_jsx_runtime51 = require("react/jsx-runtime");
|
|
1560
1607
|
var HeadingFiveIcon = ({ size = 24, ...props }) => {
|
|
1561
|
-
return /* @__PURE__ */ (0,
|
|
1608
|
+
return /* @__PURE__ */ (0, import_jsx_runtime51.jsxs)(
|
|
1562
1609
|
"svg",
|
|
1563
1610
|
{
|
|
1564
1611
|
width: size,
|
|
@@ -1568,15 +1615,15 @@ var HeadingFiveIcon = ({ size = 24, ...props }) => {
|
|
|
1568
1615
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1569
1616
|
...props,
|
|
1570
1617
|
children: [
|
|
1571
|
-
/* @__PURE__ */ (0,
|
|
1572
|
-
/* @__PURE__ */ (0,
|
|
1618
|
+
/* @__PURE__ */ (0, import_jsx_runtime51.jsx)("title", { children: "Heading Five" }),
|
|
1619
|
+
/* @__PURE__ */ (0, import_jsx_runtime51.jsx)(
|
|
1573
1620
|
"path",
|
|
1574
1621
|
{
|
|
1575
1622
|
d: "M5 6C5 5.44772 4.55228 5 4 5C3.44772 5 3 5.44772 3 6V18C3 18.5523 3.44772 19 4 19C4.55228 19 5 18.5523 5 18V13H11V18C11 18.5523 11.4477 19 12 19C12.5523 19 13 18.5523 13 18V6C13 5.44772 12.5523 5 12 5C11.4477 5 11 5.44772 11 6V11H5V6Z",
|
|
1576
1623
|
fill: "currentColor"
|
|
1577
1624
|
}
|
|
1578
1625
|
),
|
|
1579
|
-
/* @__PURE__ */ (0,
|
|
1626
|
+
/* @__PURE__ */ (0, import_jsx_runtime51.jsx)(
|
|
1580
1627
|
"path",
|
|
1581
1628
|
{
|
|
1582
1629
|
d: "M16 10C16 9.44772 16.4477 9 17 9H21C21.5523 9 22 9.44772 22 10C22 10.5523 21.5523 11 21 11H18V12H18.3C20.2754 12 22 13.4739 22 15.5C22 17.5261 20.2754 19 18.3 19C17.6457 19 17.0925 18.8643 16.5528 18.5944C16.0588 18.3474 15.8586 17.7468 16.1055 17.2528C16.3525 16.7588 16.9532 16.5586 17.4472 16.8056C17.7074 16.9357 17.9542 17 18.3 17C19.3246 17 20 16.2739 20 15.5C20 14.7261 19.3246 14 18.3 14H17C16.4477 14 16 13.5523 16 13L16 12.9928V10Z",
|
|
@@ -1589,9 +1636,9 @@ var HeadingFiveIcon = ({ size = 24, ...props }) => {
|
|
|
1589
1636
|
};
|
|
1590
1637
|
|
|
1591
1638
|
// src/heading-four-icon.tsx
|
|
1592
|
-
var
|
|
1639
|
+
var import_jsx_runtime52 = require("react/jsx-runtime");
|
|
1593
1640
|
var HeadingFourIcon = ({ size = 24, ...props }) => {
|
|
1594
|
-
return /* @__PURE__ */ (0,
|
|
1641
|
+
return /* @__PURE__ */ (0, import_jsx_runtime52.jsxs)(
|
|
1595
1642
|
"svg",
|
|
1596
1643
|
{
|
|
1597
1644
|
width: size,
|
|
@@ -1601,15 +1648,15 @@ var HeadingFourIcon = ({ size = 24, ...props }) => {
|
|
|
1601
1648
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1602
1649
|
...props,
|
|
1603
1650
|
children: [
|
|
1604
|
-
/* @__PURE__ */ (0,
|
|
1605
|
-
/* @__PURE__ */ (0,
|
|
1651
|
+
/* @__PURE__ */ (0, import_jsx_runtime52.jsx)("title", { children: "Heading Four" }),
|
|
1652
|
+
/* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
|
|
1606
1653
|
"path",
|
|
1607
1654
|
{
|
|
1608
1655
|
d: "M4 5C4.55228 5 5 5.44772 5 6V11H11V6C11 5.44772 11.4477 5 12 5C12.5523 5 13 5.44772 13 6V18C13 18.5523 12.5523 19 12 19C11.4477 19 11 18.5523 11 18V13H5V18C5 18.5523 4.55228 19 4 19C3.44772 19 3 18.5523 3 18V6C3 5.44772 3.44772 5 4 5Z",
|
|
1609
1656
|
fill: "currentColor"
|
|
1610
1657
|
}
|
|
1611
1658
|
),
|
|
1612
|
-
/* @__PURE__ */ (0,
|
|
1659
|
+
/* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
|
|
1613
1660
|
"path",
|
|
1614
1661
|
{
|
|
1615
1662
|
d: "M17 9C17.5523 9 18 9.44772 18 10V13H20V10C20 9.44772 20.4477 9 21 9C21.5523 9 22 9.44772 22 10V18C22 18.5523 21.5523 19 21 19C20.4477 19 20 18.5523 20 18V15H17C16.4477 15 16 14.5523 16 14V10C16 9.44772 16.4477 9 17 9Z",
|
|
@@ -1622,9 +1669,9 @@ var HeadingFourIcon = ({ size = 24, ...props }) => {
|
|
|
1622
1669
|
};
|
|
1623
1670
|
|
|
1624
1671
|
// src/heading-icon.tsx
|
|
1625
|
-
var
|
|
1672
|
+
var import_jsx_runtime53 = require("react/jsx-runtime");
|
|
1626
1673
|
var HeadingIcon = ({ size = 24, ...props }) => {
|
|
1627
|
-
return /* @__PURE__ */ (0,
|
|
1674
|
+
return /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)(
|
|
1628
1675
|
"svg",
|
|
1629
1676
|
{
|
|
1630
1677
|
width: size,
|
|
@@ -1634,8 +1681,8 @@ var HeadingIcon = ({ size = 24, ...props }) => {
|
|
|
1634
1681
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1635
1682
|
...props,
|
|
1636
1683
|
children: [
|
|
1637
|
-
/* @__PURE__ */ (0,
|
|
1638
|
-
/* @__PURE__ */ (0,
|
|
1684
|
+
/* @__PURE__ */ (0, import_jsx_runtime53.jsx)("title", { children: "Heading" }),
|
|
1685
|
+
/* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
|
|
1639
1686
|
"path",
|
|
1640
1687
|
{
|
|
1641
1688
|
d: "M6 3C6.55228 3 7 3.44772 7 4V11H17V4C17 3.44772 17.4477 3 18 3C18.5523 3 19 3.44772 19 4V20C19 20.5523 18.5523 21 18 21C17.4477 21 17 20.5523 17 20V13H7V20C7 20.5523 6.55228 21 6 21C5.44772 21 5 20.5523 5 20V4C5 3.44772 5.44772 3 6 3Z",
|
|
@@ -1648,9 +1695,9 @@ var HeadingIcon = ({ size = 24, ...props }) => {
|
|
|
1648
1695
|
};
|
|
1649
1696
|
|
|
1650
1697
|
// src/heading-one-icon.tsx
|
|
1651
|
-
var
|
|
1698
|
+
var import_jsx_runtime54 = require("react/jsx-runtime");
|
|
1652
1699
|
var HeadingOneIcon = ({ size = 24, ...props }) => {
|
|
1653
|
-
return /* @__PURE__ */ (0,
|
|
1700
|
+
return /* @__PURE__ */ (0, import_jsx_runtime54.jsxs)(
|
|
1654
1701
|
"svg",
|
|
1655
1702
|
{
|
|
1656
1703
|
width: size,
|
|
@@ -1660,15 +1707,15 @@ var HeadingOneIcon = ({ size = 24, ...props }) => {
|
|
|
1660
1707
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1661
1708
|
...props,
|
|
1662
1709
|
children: [
|
|
1663
|
-
/* @__PURE__ */ (0,
|
|
1664
|
-
/* @__PURE__ */ (0,
|
|
1710
|
+
/* @__PURE__ */ (0, import_jsx_runtime54.jsx)("title", { children: "Heading One" }),
|
|
1711
|
+
/* @__PURE__ */ (0, import_jsx_runtime54.jsx)(
|
|
1665
1712
|
"path",
|
|
1666
1713
|
{
|
|
1667
1714
|
d: "M5 6C5 5.44772 4.55228 5 4 5C3.44772 5 3 5.44772 3 6V18C3 18.5523 3.44772 19 4 19C4.55228 19 5 18.5523 5 18V13H11V18C11 18.5523 11.4477 19 12 19C12.5523 19 13 18.5523 13 18V6C13 5.44772 12.5523 5 12 5C11.4477 5 11 5.44772 11 6V11H5V6Z",
|
|
1668
1715
|
fill: "currentColor"
|
|
1669
1716
|
}
|
|
1670
1717
|
),
|
|
1671
|
-
/* @__PURE__ */ (0,
|
|
1718
|
+
/* @__PURE__ */ (0, import_jsx_runtime54.jsx)(
|
|
1672
1719
|
"path",
|
|
1673
1720
|
{
|
|
1674
1721
|
d: "M21.0001 10C21.0001 9.63121 20.7971 9.29235 20.472 9.11833C20.1468 8.94431 19.7523 8.96338 19.4454 9.16795L16.4454 11.168C15.9859 11.4743 15.8617 12.0952 16.1681 12.5547C16.4744 13.0142 17.0953 13.1384 17.5548 12.8321L19.0001 11.8685V18C19.0001 18.5523 19.4478 19 20.0001 19C20.5524 19 21.0001 18.5523 21.0001 18V10Z",
|
|
@@ -1681,9 +1728,9 @@ var HeadingOneIcon = ({ size = 24, ...props }) => {
|
|
|
1681
1728
|
};
|
|
1682
1729
|
|
|
1683
1730
|
// src/heading-six-icon.tsx
|
|
1684
|
-
var
|
|
1731
|
+
var import_jsx_runtime55 = require("react/jsx-runtime");
|
|
1685
1732
|
var HeadingSixIcon = ({ size = 24, ...props }) => {
|
|
1686
|
-
return /* @__PURE__ */ (0,
|
|
1733
|
+
return /* @__PURE__ */ (0, import_jsx_runtime55.jsxs)(
|
|
1687
1734
|
"svg",
|
|
1688
1735
|
{
|
|
1689
1736
|
width: size,
|
|
@@ -1693,15 +1740,15 @@ var HeadingSixIcon = ({ size = 24, ...props }) => {
|
|
|
1693
1740
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1694
1741
|
...props,
|
|
1695
1742
|
children: [
|
|
1696
|
-
/* @__PURE__ */ (0,
|
|
1697
|
-
/* @__PURE__ */ (0,
|
|
1743
|
+
/* @__PURE__ */ (0, import_jsx_runtime55.jsx)("title", { children: "Heading Six" }),
|
|
1744
|
+
/* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
|
|
1698
1745
|
"path",
|
|
1699
1746
|
{
|
|
1700
1747
|
d: "M5 6C5 5.44772 4.55228 5 4 5C3.44772 5 3 5.44772 3 6V18C3 18.5523 3.44772 19 4 19C4.55228 19 5 18.5523 5 18V13H11V18C11 18.5523 11.4477 19 12 19C12.5523 19 13 18.5523 13 18V6C13 5.44772 12.5523 5 12 5C11.4477 5 11 5.44772 11 6V11H5V6Z",
|
|
1701
1748
|
fill: "currentColor"
|
|
1702
1749
|
}
|
|
1703
1750
|
),
|
|
1704
|
-
/* @__PURE__ */ (0,
|
|
1751
|
+
/* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
|
|
1705
1752
|
"path",
|
|
1706
1753
|
{
|
|
1707
1754
|
fillRule: "evenodd",
|
|
@@ -1716,9 +1763,9 @@ var HeadingSixIcon = ({ size = 24, ...props }) => {
|
|
|
1716
1763
|
};
|
|
1717
1764
|
|
|
1718
1765
|
// src/heading-three-icon.tsx
|
|
1719
|
-
var
|
|
1766
|
+
var import_jsx_runtime56 = require("react/jsx-runtime");
|
|
1720
1767
|
var HeadingThreeIcon = ({ size = 24, ...props }) => {
|
|
1721
|
-
return /* @__PURE__ */ (0,
|
|
1768
|
+
return /* @__PURE__ */ (0, import_jsx_runtime56.jsxs)(
|
|
1722
1769
|
"svg",
|
|
1723
1770
|
{
|
|
1724
1771
|
width: size,
|
|
@@ -1728,15 +1775,15 @@ var HeadingThreeIcon = ({ size = 24, ...props }) => {
|
|
|
1728
1775
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1729
1776
|
...props,
|
|
1730
1777
|
children: [
|
|
1731
|
-
/* @__PURE__ */ (0,
|
|
1732
|
-
/* @__PURE__ */ (0,
|
|
1778
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("title", { children: "Heading Three" }),
|
|
1779
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
|
|
1733
1780
|
"path",
|
|
1734
1781
|
{
|
|
1735
1782
|
d: "M4 5C4.55228 5 5 5.44772 5 6V11H11V6C11 5.44772 11.4477 5 12 5C12.5523 5 13 5.44772 13 6V18C13 18.5523 12.5523 19 12 19C11.4477 19 11 18.5523 11 18V13H5V18C5 18.5523 4.55228 19 4 19C3.44772 19 3 18.5523 3 18V6C3 5.44772 3.44772 5 4 5Z",
|
|
1736
1783
|
fill: "currentColor"
|
|
1737
1784
|
}
|
|
1738
1785
|
),
|
|
1739
|
-
/* @__PURE__ */ (0,
|
|
1786
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
|
|
1740
1787
|
"path",
|
|
1741
1788
|
{
|
|
1742
1789
|
fillRule: "evenodd",
|
|
@@ -1745,7 +1792,7 @@ var HeadingThreeIcon = ({ size = 24, ...props }) => {
|
|
|
1745
1792
|
fill: "currentColor"
|
|
1746
1793
|
}
|
|
1747
1794
|
),
|
|
1748
|
-
/* @__PURE__ */ (0,
|
|
1795
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
|
|
1749
1796
|
"path",
|
|
1750
1797
|
{
|
|
1751
1798
|
fillRule: "evenodd",
|
|
@@ -1760,9 +1807,9 @@ var HeadingThreeIcon = ({ size = 24, ...props }) => {
|
|
|
1760
1807
|
};
|
|
1761
1808
|
|
|
1762
1809
|
// src/heading-two-icon.tsx
|
|
1763
|
-
var
|
|
1810
|
+
var import_jsx_runtime57 = require("react/jsx-runtime");
|
|
1764
1811
|
var HeadingTwoIcon = ({ size = 24, ...props }) => {
|
|
1765
|
-
return /* @__PURE__ */ (0,
|
|
1812
|
+
return /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)(
|
|
1766
1813
|
"svg",
|
|
1767
1814
|
{
|
|
1768
1815
|
width: size,
|
|
@@ -1772,15 +1819,15 @@ var HeadingTwoIcon = ({ size = 24, ...props }) => {
|
|
|
1772
1819
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1773
1820
|
...props,
|
|
1774
1821
|
children: [
|
|
1775
|
-
/* @__PURE__ */ (0,
|
|
1776
|
-
/* @__PURE__ */ (0,
|
|
1822
|
+
/* @__PURE__ */ (0, import_jsx_runtime57.jsx)("title", { children: "Heading Two" }),
|
|
1823
|
+
/* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
|
|
1777
1824
|
"path",
|
|
1778
1825
|
{
|
|
1779
1826
|
d: "M5 6C5 5.44772 4.55228 5 4 5C3.44772 5 3 5.44772 3 6V18C3 18.5523 3.44772 19 4 19C4.55228 19 5 18.5523 5 18V13H11V18C11 18.5523 11.4477 19 12 19C12.5523 19 13 18.5523 13 18V6C13 5.44772 12.5523 5 12 5C11.4477 5 11 5.44772 11 6V11H5V6Z",
|
|
1780
1827
|
fill: "currentColor"
|
|
1781
1828
|
}
|
|
1782
1829
|
),
|
|
1783
|
-
/* @__PURE__ */ (0,
|
|
1830
|
+
/* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
|
|
1784
1831
|
"path",
|
|
1785
1832
|
{
|
|
1786
1833
|
d: "M22.0001 12C22.0001 10.7611 21.1663 9.79297 20.0663 9.42632C18.9547 9.05578 17.6171 9.28724 16.4001 10.2C15.9582 10.5314 15.8687 11.1582 16.2001 11.6C16.5314 12.0418 17.1582 12.1314 17.6001 11.8C18.383 11.2128 19.0455 11.1942 19.4338 11.3237C19.8339 11.457 20.0001 11.7389 20.0001 12C20.0001 12.4839 19.8554 12.7379 19.6537 12.9481C19.4275 13.1837 19.1378 13.363 18.7055 13.6307C18.6313 13.6767 18.553 13.7252 18.4701 13.777C17.9572 14.0975 17.3128 14.5261 16.8163 15.2087C16.3007 15.9177 16.0001 16.8183 16.0001 18C16.0001 18.5523 16.4478 19 17.0001 19H21.0001C21.5523 19 22.0001 18.5523 22.0001 18C22.0001 17.4477 21.5523 17 21.0001 17H18.131C18.21 16.742 18.3176 16.5448 18.4338 16.385C18.6873 16.0364 19.0429 15.7775 19.5301 15.473C19.5898 15.4357 19.6536 15.3966 19.7205 15.3556C20.139 15.0992 20.6783 14.7687 21.0964 14.3332C21.6447 13.7621 22.0001 13.0161 22.0001 12Z",
|
|
@@ -1793,9 +1840,9 @@ var HeadingTwoIcon = ({ size = 24, ...props }) => {
|
|
|
1793
1840
|
};
|
|
1794
1841
|
|
|
1795
1842
|
// src/highlighter-icon.tsx
|
|
1796
|
-
var
|
|
1843
|
+
var import_jsx_runtime58 = require("react/jsx-runtime");
|
|
1797
1844
|
var HighlighterIcon = ({ size = 24, ...props }) => {
|
|
1798
|
-
return /* @__PURE__ */ (0,
|
|
1845
|
+
return /* @__PURE__ */ (0, import_jsx_runtime58.jsxs)(
|
|
1799
1846
|
"svg",
|
|
1800
1847
|
{
|
|
1801
1848
|
width: size,
|
|
@@ -1805,8 +1852,8 @@ var HighlighterIcon = ({ size = 24, ...props }) => {
|
|
|
1805
1852
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1806
1853
|
...props,
|
|
1807
1854
|
children: [
|
|
1808
|
-
/* @__PURE__ */ (0,
|
|
1809
|
-
/* @__PURE__ */ (0,
|
|
1855
|
+
/* @__PURE__ */ (0, import_jsx_runtime58.jsx)("title", { children: "Highlighter" }),
|
|
1856
|
+
/* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
|
|
1810
1857
|
"path",
|
|
1811
1858
|
{
|
|
1812
1859
|
fillRule: "evenodd",
|
|
@@ -1821,9 +1868,9 @@ var HighlighterIcon = ({ size = 24, ...props }) => {
|
|
|
1821
1868
|
};
|
|
1822
1869
|
|
|
1823
1870
|
// src/image-icon.tsx
|
|
1824
|
-
var
|
|
1871
|
+
var import_jsx_runtime59 = require("react/jsx-runtime");
|
|
1825
1872
|
var ImageIcon = ({ size = 24, ...props }) => {
|
|
1826
|
-
return /* @__PURE__ */ (0,
|
|
1873
|
+
return /* @__PURE__ */ (0, import_jsx_runtime59.jsxs)(
|
|
1827
1874
|
"svg",
|
|
1828
1875
|
{
|
|
1829
1876
|
width: size,
|
|
@@ -1833,8 +1880,8 @@ var ImageIcon = ({ size = 24, ...props }) => {
|
|
|
1833
1880
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1834
1881
|
...props,
|
|
1835
1882
|
children: [
|
|
1836
|
-
/* @__PURE__ */ (0,
|
|
1837
|
-
/* @__PURE__ */ (0,
|
|
1883
|
+
/* @__PURE__ */ (0, import_jsx_runtime59.jsx)("title", { children: "Image" }),
|
|
1884
|
+
/* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
|
|
1838
1885
|
"path",
|
|
1839
1886
|
{
|
|
1840
1887
|
fillRule: "evenodd",
|
|
@@ -1849,9 +1896,9 @@ var ImageIcon = ({ size = 24, ...props }) => {
|
|
|
1849
1896
|
};
|
|
1850
1897
|
|
|
1851
1898
|
// src/incident.tsx
|
|
1852
|
-
var
|
|
1899
|
+
var import_jsx_runtime60 = require("react/jsx-runtime");
|
|
1853
1900
|
var IncidentIcon = ({ size = 24, ...props }) => {
|
|
1854
|
-
return /* @__PURE__ */ (0,
|
|
1901
|
+
return /* @__PURE__ */ (0, import_jsx_runtime60.jsxs)(
|
|
1855
1902
|
"svg",
|
|
1856
1903
|
{
|
|
1857
1904
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1865,19 +1912,19 @@ var IncidentIcon = ({ size = 24, ...props }) => {
|
|
|
1865
1912
|
strokeLinejoin: "round",
|
|
1866
1913
|
...props,
|
|
1867
1914
|
children: [
|
|
1868
|
-
/* @__PURE__ */ (0,
|
|
1869
|
-
/* @__PURE__ */ (0,
|
|
1870
|
-
/* @__PURE__ */ (0,
|
|
1871
|
-
/* @__PURE__ */ (0,
|
|
1915
|
+
/* @__PURE__ */ (0, import_jsx_runtime60.jsx)("title", { children: "Incident icon" }),
|
|
1916
|
+
/* @__PURE__ */ (0, import_jsx_runtime60.jsx)("path", { d: "M12 16h.01" }),
|
|
1917
|
+
/* @__PURE__ */ (0, import_jsx_runtime60.jsx)("path", { d: "M12 8v4" }),
|
|
1918
|
+
/* @__PURE__ */ (0, import_jsx_runtime60.jsx)("path", { d: "M15.312 2a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586l-4.688-4.688A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2z" })
|
|
1872
1919
|
]
|
|
1873
1920
|
}
|
|
1874
1921
|
);
|
|
1875
1922
|
};
|
|
1876
1923
|
|
|
1877
1924
|
// src/info.tsx
|
|
1878
|
-
var
|
|
1925
|
+
var import_jsx_runtime61 = require("react/jsx-runtime");
|
|
1879
1926
|
var InfoIcon = ({ size = 24, ...props }) => {
|
|
1880
|
-
return /* @__PURE__ */ (0,
|
|
1927
|
+
return /* @__PURE__ */ (0, import_jsx_runtime61.jsxs)(
|
|
1881
1928
|
"svg",
|
|
1882
1929
|
{
|
|
1883
1930
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1892,19 +1939,19 @@ var InfoIcon = ({ size = 24, ...props }) => {
|
|
|
1892
1939
|
"aria-hidden": "true",
|
|
1893
1940
|
...props,
|
|
1894
1941
|
children: [
|
|
1895
|
-
/* @__PURE__ */ (0,
|
|
1896
|
-
/* @__PURE__ */ (0,
|
|
1897
|
-
/* @__PURE__ */ (0,
|
|
1898
|
-
/* @__PURE__ */ (0,
|
|
1942
|
+
/* @__PURE__ */ (0, import_jsx_runtime61.jsx)("title", { children: "Info Icon" }),
|
|
1943
|
+
/* @__PURE__ */ (0, import_jsx_runtime61.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
|
|
1944
|
+
/* @__PURE__ */ (0, import_jsx_runtime61.jsx)("path", { d: "M12 16v-4" }),
|
|
1945
|
+
/* @__PURE__ */ (0, import_jsx_runtime61.jsx)("path", { d: "M12 8h.01" })
|
|
1899
1946
|
]
|
|
1900
1947
|
}
|
|
1901
1948
|
);
|
|
1902
1949
|
};
|
|
1903
1950
|
|
|
1904
1951
|
// src/issues.tsx
|
|
1905
|
-
var
|
|
1952
|
+
var import_jsx_runtime62 = require("react/jsx-runtime");
|
|
1906
1953
|
var IssuesIcon = ({ size = 24, ...props }) => {
|
|
1907
|
-
return /* @__PURE__ */ (0,
|
|
1954
|
+
return /* @__PURE__ */ (0, import_jsx_runtime62.jsxs)(
|
|
1908
1955
|
"svg",
|
|
1909
1956
|
{
|
|
1910
1957
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1918,21 +1965,21 @@ var IssuesIcon = ({ size = 24, ...props }) => {
|
|
|
1918
1965
|
strokeLinejoin: "round",
|
|
1919
1966
|
...props,
|
|
1920
1967
|
children: [
|
|
1921
|
-
/* @__PURE__ */ (0,
|
|
1922
|
-
/* @__PURE__ */ (0,
|
|
1923
|
-
/* @__PURE__ */ (0,
|
|
1924
|
-
/* @__PURE__ */ (0,
|
|
1925
|
-
/* @__PURE__ */ (0,
|
|
1926
|
-
/* @__PURE__ */ (0,
|
|
1968
|
+
/* @__PURE__ */ (0, import_jsx_runtime62.jsx)("title", { children: "Issues icon" }),
|
|
1969
|
+
/* @__PURE__ */ (0, import_jsx_runtime62.jsx)("path", { d: "M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2" }),
|
|
1970
|
+
/* @__PURE__ */ (0, import_jsx_runtime62.jsx)("path", { d: "M12 11h4" }),
|
|
1971
|
+
/* @__PURE__ */ (0, import_jsx_runtime62.jsx)("path", { d: "M12 16h4" }),
|
|
1972
|
+
/* @__PURE__ */ (0, import_jsx_runtime62.jsx)("path", { d: "M8 11h.01" }),
|
|
1973
|
+
/* @__PURE__ */ (0, import_jsx_runtime62.jsx)("path", { d: "M8 16h.01" })
|
|
1927
1974
|
]
|
|
1928
1975
|
}
|
|
1929
1976
|
);
|
|
1930
1977
|
};
|
|
1931
1978
|
|
|
1932
1979
|
// src/italic-icon.tsx
|
|
1933
|
-
var
|
|
1980
|
+
var import_jsx_runtime63 = require("react/jsx-runtime");
|
|
1934
1981
|
var ItalicIcon = ({ size = 24, ...props }) => {
|
|
1935
|
-
return /* @__PURE__ */ (0,
|
|
1982
|
+
return /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)(
|
|
1936
1983
|
"svg",
|
|
1937
1984
|
{
|
|
1938
1985
|
width: size,
|
|
@@ -1942,8 +1989,8 @@ var ItalicIcon = ({ size = 24, ...props }) => {
|
|
|
1942
1989
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1943
1990
|
...props,
|
|
1944
1991
|
children: [
|
|
1945
|
-
/* @__PURE__ */ (0,
|
|
1946
|
-
/* @__PURE__ */ (0,
|
|
1992
|
+
/* @__PURE__ */ (0, import_jsx_runtime63.jsx)("title", { children: "Italic" }),
|
|
1993
|
+
/* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
|
|
1947
1994
|
"path",
|
|
1948
1995
|
{
|
|
1949
1996
|
d: "M15.0222 3H19C19.5523 3 20 3.44772 20 4C20 4.55228 19.5523 5 19 5H15.693L10.443 19H14C14.5523 19 15 19.4477 15 20C15 20.5523 14.5523 21 14 21H9.02418C9.00802 21.0004 8.99181 21.0004 8.97557 21H5C4.44772 21 4 20.5523 4 20C4 19.4477 4.44772 19 5 19H8.30704L13.557 5H10C9.44772 5 9 4.55228 9 4C9 3.44772 9.44772 3 10 3H14.9782C14.9928 2.99968 15.0075 2.99967 15.0222 3Z",
|
|
@@ -1956,9 +2003,9 @@ var ItalicIcon = ({ size = 24, ...props }) => {
|
|
|
1956
2003
|
};
|
|
1957
2004
|
|
|
1958
2005
|
// src/link-icon.tsx
|
|
1959
|
-
var
|
|
2006
|
+
var import_jsx_runtime64 = require("react/jsx-runtime");
|
|
1960
2007
|
var LinkIcon = ({ size = 24, ...props }) => {
|
|
1961
|
-
return /* @__PURE__ */ (0,
|
|
2008
|
+
return /* @__PURE__ */ (0, import_jsx_runtime64.jsxs)(
|
|
1962
2009
|
"svg",
|
|
1963
2010
|
{
|
|
1964
2011
|
width: size,
|
|
@@ -1968,15 +2015,15 @@ var LinkIcon = ({ size = 24, ...props }) => {
|
|
|
1968
2015
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1969
2016
|
...props,
|
|
1970
2017
|
children: [
|
|
1971
|
-
/* @__PURE__ */ (0,
|
|
1972
|
-
/* @__PURE__ */ (0,
|
|
2018
|
+
/* @__PURE__ */ (0, import_jsx_runtime64.jsx)("title", { children: "Link" }),
|
|
2019
|
+
/* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
|
|
1973
2020
|
"path",
|
|
1974
2021
|
{
|
|
1975
2022
|
d: "M16.9958 1.06669C15.4226 1.05302 13.907 1.65779 12.7753 2.75074L12.765 2.76086L11.045 4.47086C10.6534 4.86024 10.6515 5.49341 11.0409 5.88507C11.4303 6.27673 12.0634 6.27858 12.4551 5.88919L14.1697 4.18456C14.9236 3.45893 15.9319 3.05752 16.9784 3.06662C18.0272 3.07573 19.0304 3.49641 19.772 4.23804C20.5137 4.97967 20.9344 5.98292 20.9435 7.03171C20.9526 8.07776 20.5515 9.08563 19.8265 9.83941L16.833 12.8329C16.4274 13.2386 15.9393 13.5524 15.4019 13.7529C14.8645 13.9533 14.2903 14.0359 13.7181 13.9949C13.146 13.9539 12.5894 13.7904 12.0861 13.5154C11.5827 13.2404 11.1444 12.8604 10.8008 12.401C10.47 11.9588 9.84333 11.8685 9.40108 12.1993C8.95883 12.5301 8.86849 13.1568 9.1993 13.599C9.71464 14.288 10.3721 14.858 11.1272 15.2705C11.8822 15.683 12.7171 15.9283 13.5753 15.9898C14.4334 16.0513 15.2948 15.9274 16.1009 15.6267C16.907 15.326 17.639 14.8555 18.2473 14.247L21.2472 11.2471L21.2593 11.2347C22.3523 10.1031 22.9571 8.58751 22.9434 7.01433C22.9297 5.44115 22.2987 3.93628 21.1863 2.82383C20.0738 1.71138 18.5689 1.08036 16.9958 1.06669Z",
|
|
1976
2023
|
fill: "currentColor"
|
|
1977
2024
|
}
|
|
1978
2025
|
),
|
|
1979
|
-
/* @__PURE__ */ (0,
|
|
2026
|
+
/* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
|
|
1980
2027
|
"path",
|
|
1981
2028
|
{
|
|
1982
2029
|
d: "M10.4247 8.0102C9.56657 7.94874 8.70522 8.07256 7.89911 8.37326C7.09305 8.67395 6.36096 9.14458 5.75272 9.753L2.75285 12.7529L2.74067 12.7653C1.64772 13.8969 1.04295 15.4125 1.05662 16.9857C1.07029 18.5589 1.70131 20.0637 2.81376 21.1762C3.9262 22.2886 5.43108 22.9196 7.00426 22.9333C8.57744 22.947 10.0931 22.3422 11.2247 21.2493L11.2371 21.2371L12.9471 19.5271C13.3376 19.1366 13.3376 18.5034 12.9471 18.1129C12.5565 17.7223 11.9234 17.7223 11.5328 18.1129L9.82932 19.8164C9.07555 20.5414 8.06768 20.9425 7.02164 20.9334C5.97285 20.9243 4.9696 20.5036 4.22797 19.762C3.48634 19.0203 3.06566 18.0171 3.05655 16.9683C3.04746 15.9222 3.44851 14.9144 4.17355 14.1606L7.16719 11.167C7.5727 10.7613 8.06071 10.4476 8.59811 10.2471C9.13552 10.0467 9.70976 9.96412 10.2819 10.0051C10.854 10.0461 11.4106 10.2096 11.9139 10.4846C12.4173 10.7596 12.8556 11.1397 13.1992 11.599C13.53 12.0412 14.1567 12.1316 14.5989 11.8007C15.0412 11.4699 15.1315 10.8433 14.8007 10.401C14.2854 9.71205 13.6279 9.14198 12.8729 8.72948C12.1178 8.31697 11.2829 8.07166 10.4247 8.0102Z",
|
|
@@ -1989,9 +2036,9 @@ var LinkIcon = ({ size = 24, ...props }) => {
|
|
|
1989
2036
|
};
|
|
1990
2037
|
|
|
1991
2038
|
// src/linkedin.tsx
|
|
1992
|
-
var
|
|
2039
|
+
var import_jsx_runtime65 = require("react/jsx-runtime");
|
|
1993
2040
|
var LinkedInIcon = ({ size = 24, ...props }) => {
|
|
1994
|
-
return /* @__PURE__ */ (0,
|
|
2041
|
+
return /* @__PURE__ */ (0, import_jsx_runtime65.jsxs)(
|
|
1995
2042
|
"svg",
|
|
1996
2043
|
{
|
|
1997
2044
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2007,19 +2054,19 @@ var LinkedInIcon = ({ size = 24, ...props }) => {
|
|
|
2007
2054
|
focusable: "false",
|
|
2008
2055
|
...props,
|
|
2009
2056
|
children: [
|
|
2010
|
-
/* @__PURE__ */ (0,
|
|
2011
|
-
/* @__PURE__ */ (0,
|
|
2012
|
-
/* @__PURE__ */ (0,
|
|
2013
|
-
/* @__PURE__ */ (0,
|
|
2057
|
+
/* @__PURE__ */ (0, import_jsx_runtime65.jsx)("title", { children: "LinkedIn Icon" }),
|
|
2058
|
+
/* @__PURE__ */ (0, import_jsx_runtime65.jsx)("path", { d: "M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z" }),
|
|
2059
|
+
/* @__PURE__ */ (0, import_jsx_runtime65.jsx)("rect", { width: "4", height: "12", x: "2", y: "9" }),
|
|
2060
|
+
/* @__PURE__ */ (0, import_jsx_runtime65.jsx)("circle", { cx: "4", cy: "4", r: "2" })
|
|
2014
2061
|
]
|
|
2015
2062
|
}
|
|
2016
2063
|
);
|
|
2017
2064
|
};
|
|
2018
2065
|
|
|
2019
2066
|
// src/list-icon.tsx
|
|
2020
|
-
var
|
|
2067
|
+
var import_jsx_runtime66 = require("react/jsx-runtime");
|
|
2021
2068
|
var ListIcon = ({ size = 24, ...props }) => {
|
|
2022
|
-
return /* @__PURE__ */ (0,
|
|
2069
|
+
return /* @__PURE__ */ (0, import_jsx_runtime66.jsxs)(
|
|
2023
2070
|
"svg",
|
|
2024
2071
|
{
|
|
2025
2072
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2029,8 +2076,8 @@ var ListIcon = ({ size = 24, ...props }) => {
|
|
|
2029
2076
|
fill: "currentColor",
|
|
2030
2077
|
...props,
|
|
2031
2078
|
children: [
|
|
2032
|
-
/* @__PURE__ */ (0,
|
|
2033
|
-
/* @__PURE__ */ (0,
|
|
2079
|
+
/* @__PURE__ */ (0, import_jsx_runtime66.jsx)("title", { children: "List Icon" }),
|
|
2080
|
+
/* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
|
|
2034
2081
|
"path",
|
|
2035
2082
|
{
|
|
2036
2083
|
fillRule: "evenodd",
|
|
@@ -2039,7 +2086,7 @@ var ListIcon = ({ size = 24, ...props }) => {
|
|
|
2039
2086
|
fill: "currentColor"
|
|
2040
2087
|
}
|
|
2041
2088
|
),
|
|
2042
|
-
/* @__PURE__ */ (0,
|
|
2089
|
+
/* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
|
|
2043
2090
|
"path",
|
|
2044
2091
|
{
|
|
2045
2092
|
fillRule: "evenodd",
|
|
@@ -2048,7 +2095,7 @@ var ListIcon = ({ size = 24, ...props }) => {
|
|
|
2048
2095
|
fill: "currentColor"
|
|
2049
2096
|
}
|
|
2050
2097
|
),
|
|
2051
|
-
/* @__PURE__ */ (0,
|
|
2098
|
+
/* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
|
|
2052
2099
|
"path",
|
|
2053
2100
|
{
|
|
2054
2101
|
fillRule: "evenodd",
|
|
@@ -2057,7 +2104,7 @@ var ListIcon = ({ size = 24, ...props }) => {
|
|
|
2057
2104
|
fill: "currentColor"
|
|
2058
2105
|
}
|
|
2059
2106
|
),
|
|
2060
|
-
/* @__PURE__ */ (0,
|
|
2107
|
+
/* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
|
|
2061
2108
|
"path",
|
|
2062
2109
|
{
|
|
2063
2110
|
fillRule: "evenodd",
|
|
@@ -2066,7 +2113,7 @@ var ListIcon = ({ size = 24, ...props }) => {
|
|
|
2066
2113
|
fill: "currentColor"
|
|
2067
2114
|
}
|
|
2068
2115
|
),
|
|
2069
|
-
/* @__PURE__ */ (0,
|
|
2116
|
+
/* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
|
|
2070
2117
|
"path",
|
|
2071
2118
|
{
|
|
2072
2119
|
fillRule: "evenodd",
|
|
@@ -2075,7 +2122,7 @@ var ListIcon = ({ size = 24, ...props }) => {
|
|
|
2075
2122
|
fill: "currentColor"
|
|
2076
2123
|
}
|
|
2077
2124
|
),
|
|
2078
|
-
/* @__PURE__ */ (0,
|
|
2125
|
+
/* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
|
|
2079
2126
|
"path",
|
|
2080
2127
|
{
|
|
2081
2128
|
fillRule: "evenodd",
|
|
@@ -2090,9 +2137,9 @@ var ListIcon = ({ size = 24, ...props }) => {
|
|
|
2090
2137
|
};
|
|
2091
2138
|
|
|
2092
2139
|
// src/list-ordered-icon.tsx
|
|
2093
|
-
var
|
|
2140
|
+
var import_jsx_runtime67 = require("react/jsx-runtime");
|
|
2094
2141
|
var ListOrderedIcon = ({ size = 24, ...props }) => {
|
|
2095
|
-
return /* @__PURE__ */ (0,
|
|
2142
|
+
return /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)(
|
|
2096
2143
|
"svg",
|
|
2097
2144
|
{
|
|
2098
2145
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2102,8 +2149,8 @@ var ListOrderedIcon = ({ size = 24, ...props }) => {
|
|
|
2102
2149
|
fill: "currentColor",
|
|
2103
2150
|
...props,
|
|
2104
2151
|
children: [
|
|
2105
|
-
/* @__PURE__ */ (0,
|
|
2106
|
-
/* @__PURE__ */ (0,
|
|
2152
|
+
/* @__PURE__ */ (0, import_jsx_runtime67.jsx)("title", { children: "List Ordered Icon" }),
|
|
2153
|
+
/* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
|
|
2107
2154
|
"path",
|
|
2108
2155
|
{
|
|
2109
2156
|
fillRule: "evenodd",
|
|
@@ -2112,7 +2159,7 @@ var ListOrderedIcon = ({ size = 24, ...props }) => {
|
|
|
2112
2159
|
fill: "currentColor"
|
|
2113
2160
|
}
|
|
2114
2161
|
),
|
|
2115
|
-
/* @__PURE__ */ (0,
|
|
2162
|
+
/* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
|
|
2116
2163
|
"path",
|
|
2117
2164
|
{
|
|
2118
2165
|
fillRule: "evenodd",
|
|
@@ -2121,7 +2168,7 @@ var ListOrderedIcon = ({ size = 24, ...props }) => {
|
|
|
2121
2168
|
fill: "currentColor"
|
|
2122
2169
|
}
|
|
2123
2170
|
),
|
|
2124
|
-
/* @__PURE__ */ (0,
|
|
2171
|
+
/* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
|
|
2125
2172
|
"path",
|
|
2126
2173
|
{
|
|
2127
2174
|
fillRule: "evenodd",
|
|
@@ -2130,7 +2177,7 @@ var ListOrderedIcon = ({ size = 24, ...props }) => {
|
|
|
2130
2177
|
fill: "currentColor"
|
|
2131
2178
|
}
|
|
2132
2179
|
),
|
|
2133
|
-
/* @__PURE__ */ (0,
|
|
2180
|
+
/* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
|
|
2134
2181
|
"path",
|
|
2135
2182
|
{
|
|
2136
2183
|
fillRule: "evenodd",
|
|
@@ -2139,7 +2186,7 @@ var ListOrderedIcon = ({ size = 24, ...props }) => {
|
|
|
2139
2186
|
fill: "currentColor"
|
|
2140
2187
|
}
|
|
2141
2188
|
),
|
|
2142
|
-
/* @__PURE__ */ (0,
|
|
2189
|
+
/* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
|
|
2143
2190
|
"path",
|
|
2144
2191
|
{
|
|
2145
2192
|
fillRule: "evenodd",
|
|
@@ -2148,7 +2195,7 @@ var ListOrderedIcon = ({ size = 24, ...props }) => {
|
|
|
2148
2195
|
fill: "currentColor"
|
|
2149
2196
|
}
|
|
2150
2197
|
),
|
|
2151
|
-
/* @__PURE__ */ (0,
|
|
2198
|
+
/* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
|
|
2152
2199
|
"path",
|
|
2153
2200
|
{
|
|
2154
2201
|
fillRule: "evenodd",
|
|
@@ -2163,9 +2210,9 @@ var ListOrderedIcon = ({ size = 24, ...props }) => {
|
|
|
2163
2210
|
};
|
|
2164
2211
|
|
|
2165
2212
|
// src/list-todo-icon.tsx
|
|
2166
|
-
var
|
|
2213
|
+
var import_jsx_runtime68 = require("react/jsx-runtime");
|
|
2167
2214
|
var ListTodoIcon = ({ size = 24, ...props }) => {
|
|
2168
|
-
return /* @__PURE__ */ (0,
|
|
2215
|
+
return /* @__PURE__ */ (0, import_jsx_runtime68.jsxs)(
|
|
2169
2216
|
"svg",
|
|
2170
2217
|
{
|
|
2171
2218
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2175,8 +2222,8 @@ var ListTodoIcon = ({ size = 24, ...props }) => {
|
|
|
2175
2222
|
fill: "currentColor",
|
|
2176
2223
|
...props,
|
|
2177
2224
|
children: [
|
|
2178
|
-
/* @__PURE__ */ (0,
|
|
2179
|
-
/* @__PURE__ */ (0,
|
|
2225
|
+
/* @__PURE__ */ (0, import_jsx_runtime68.jsx)("title", { children: "List Todo Icon" }),
|
|
2226
|
+
/* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
|
|
2180
2227
|
"path",
|
|
2181
2228
|
{
|
|
2182
2229
|
fillRule: "evenodd",
|
|
@@ -2185,7 +2232,7 @@ var ListTodoIcon = ({ size = 24, ...props }) => {
|
|
|
2185
2232
|
fill: "currentColor"
|
|
2186
2233
|
}
|
|
2187
2234
|
),
|
|
2188
|
-
/* @__PURE__ */ (0,
|
|
2235
|
+
/* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
|
|
2189
2236
|
"path",
|
|
2190
2237
|
{
|
|
2191
2238
|
fillRule: "evenodd",
|
|
@@ -2194,7 +2241,7 @@ var ListTodoIcon = ({ size = 24, ...props }) => {
|
|
|
2194
2241
|
fill: "currentColor"
|
|
2195
2242
|
}
|
|
2196
2243
|
),
|
|
2197
|
-
/* @__PURE__ */ (0,
|
|
2244
|
+
/* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
|
|
2198
2245
|
"path",
|
|
2199
2246
|
{
|
|
2200
2247
|
fillRule: "evenodd",
|
|
@@ -2203,7 +2250,7 @@ var ListTodoIcon = ({ size = 24, ...props }) => {
|
|
|
2203
2250
|
fill: "currentColor"
|
|
2204
2251
|
}
|
|
2205
2252
|
),
|
|
2206
|
-
/* @__PURE__ */ (0,
|
|
2253
|
+
/* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
|
|
2207
2254
|
"path",
|
|
2208
2255
|
{
|
|
2209
2256
|
fillRule: "evenodd",
|
|
@@ -2212,7 +2259,7 @@ var ListTodoIcon = ({ size = 24, ...props }) => {
|
|
|
2212
2259
|
fill: "currentColor"
|
|
2213
2260
|
}
|
|
2214
2261
|
),
|
|
2215
|
-
/* @__PURE__ */ (0,
|
|
2262
|
+
/* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
|
|
2216
2263
|
"path",
|
|
2217
2264
|
{
|
|
2218
2265
|
fillRule: "evenodd",
|
|
@@ -2227,9 +2274,9 @@ var ListTodoIcon = ({ size = 24, ...props }) => {
|
|
|
2227
2274
|
};
|
|
2228
2275
|
|
|
2229
2276
|
// src/minus.tsx
|
|
2230
|
-
var
|
|
2277
|
+
var import_jsx_runtime69 = require("react/jsx-runtime");
|
|
2231
2278
|
var MinusIcon = ({ size = 24, ...props }) => {
|
|
2232
|
-
return /* @__PURE__ */ (0,
|
|
2279
|
+
return /* @__PURE__ */ (0, import_jsx_runtime69.jsxs)(
|
|
2233
2280
|
"svg",
|
|
2234
2281
|
{
|
|
2235
2282
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2243,17 +2290,17 @@ var MinusIcon = ({ size = 24, ...props }) => {
|
|
|
2243
2290
|
strokeLinejoin: "round",
|
|
2244
2291
|
...props,
|
|
2245
2292
|
children: [
|
|
2246
|
-
/* @__PURE__ */ (0,
|
|
2247
|
-
/* @__PURE__ */ (0,
|
|
2293
|
+
/* @__PURE__ */ (0, import_jsx_runtime69.jsx)("title", { children: "Minus Icon" }),
|
|
2294
|
+
/* @__PURE__ */ (0, import_jsx_runtime69.jsx)("path", { d: "M5 12h14" })
|
|
2248
2295
|
]
|
|
2249
2296
|
}
|
|
2250
2297
|
);
|
|
2251
2298
|
};
|
|
2252
2299
|
|
|
2253
2300
|
// src/more-vertical-icon.tsx
|
|
2254
|
-
var
|
|
2301
|
+
var import_jsx_runtime70 = require("react/jsx-runtime");
|
|
2255
2302
|
var MoreVerticalIcon = ({ size = 24, ...props }) => {
|
|
2256
|
-
return /* @__PURE__ */ (0,
|
|
2303
|
+
return /* @__PURE__ */ (0, import_jsx_runtime70.jsxs)(
|
|
2257
2304
|
"svg",
|
|
2258
2305
|
{
|
|
2259
2306
|
width: size,
|
|
@@ -2263,8 +2310,8 @@ var MoreVerticalIcon = ({ size = 24, ...props }) => {
|
|
|
2263
2310
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2264
2311
|
...props,
|
|
2265
2312
|
children: [
|
|
2266
|
-
/* @__PURE__ */ (0,
|
|
2267
|
-
/* @__PURE__ */ (0,
|
|
2313
|
+
/* @__PURE__ */ (0, import_jsx_runtime70.jsx)("title", { children: "More Vertical Icon" }),
|
|
2314
|
+
/* @__PURE__ */ (0, import_jsx_runtime70.jsx)(
|
|
2268
2315
|
"path",
|
|
2269
2316
|
{
|
|
2270
2317
|
fillRule: "evenodd",
|
|
@@ -2273,7 +2320,7 @@ var MoreVerticalIcon = ({ size = 24, ...props }) => {
|
|
|
2273
2320
|
fill: "currentColor"
|
|
2274
2321
|
}
|
|
2275
2322
|
),
|
|
2276
|
-
/* @__PURE__ */ (0,
|
|
2323
|
+
/* @__PURE__ */ (0, import_jsx_runtime70.jsx)(
|
|
2277
2324
|
"path",
|
|
2278
2325
|
{
|
|
2279
2326
|
fillRule: "evenodd",
|
|
@@ -2282,7 +2329,7 @@ var MoreVerticalIcon = ({ size = 24, ...props }) => {
|
|
|
2282
2329
|
fill: "currentColor"
|
|
2283
2330
|
}
|
|
2284
2331
|
),
|
|
2285
|
-
/* @__PURE__ */ (0,
|
|
2332
|
+
/* @__PURE__ */ (0, import_jsx_runtime70.jsx)(
|
|
2286
2333
|
"path",
|
|
2287
2334
|
{
|
|
2288
2335
|
fillRule: "evenodd",
|
|
@@ -2297,9 +2344,9 @@ var MoreVerticalIcon = ({ size = 24, ...props }) => {
|
|
|
2297
2344
|
};
|
|
2298
2345
|
|
|
2299
2346
|
// src/notification-icon.tsx
|
|
2300
|
-
var
|
|
2347
|
+
var import_jsx_runtime71 = require("react/jsx-runtime");
|
|
2301
2348
|
var NotificationIcon = (props) => {
|
|
2302
|
-
return /* @__PURE__ */ (0,
|
|
2349
|
+
return /* @__PURE__ */ (0, import_jsx_runtime71.jsxs)(
|
|
2303
2350
|
"svg",
|
|
2304
2351
|
{
|
|
2305
2352
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2313,18 +2360,18 @@ var NotificationIcon = (props) => {
|
|
|
2313
2360
|
strokeLinejoin: "round",
|
|
2314
2361
|
...props,
|
|
2315
2362
|
children: [
|
|
2316
|
-
/* @__PURE__ */ (0,
|
|
2317
|
-
/* @__PURE__ */ (0,
|
|
2318
|
-
/* @__PURE__ */ (0,
|
|
2363
|
+
/* @__PURE__ */ (0, import_jsx_runtime71.jsx)("title", { children: "Notification Icon" }),
|
|
2364
|
+
/* @__PURE__ */ (0, import_jsx_runtime71.jsx)("path", { d: "M10.268 21a2 2 0 0 0 3.464 0" }),
|
|
2365
|
+
/* @__PURE__ */ (0, import_jsx_runtime71.jsx)("path", { d: "M3.262 15.326A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673C19.41 13.956 18 12.499 18 8A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.738 7.326" })
|
|
2319
2366
|
]
|
|
2320
2367
|
}
|
|
2321
2368
|
);
|
|
2322
2369
|
};
|
|
2323
2370
|
|
|
2324
2371
|
// src/panel-left-icon.tsx
|
|
2325
|
-
var
|
|
2372
|
+
var import_jsx_runtime72 = require("react/jsx-runtime");
|
|
2326
2373
|
var PanelLeftIcon = ({ size = 24, ...props }) => {
|
|
2327
|
-
return /* @__PURE__ */ (0,
|
|
2374
|
+
return /* @__PURE__ */ (0, import_jsx_runtime72.jsxs)(
|
|
2328
2375
|
"svg",
|
|
2329
2376
|
{
|
|
2330
2377
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2338,18 +2385,18 @@ var PanelLeftIcon = ({ size = 24, ...props }) => {
|
|
|
2338
2385
|
strokeLinejoin: "round",
|
|
2339
2386
|
...props,
|
|
2340
2387
|
children: [
|
|
2341
|
-
/* @__PURE__ */ (0,
|
|
2342
|
-
/* @__PURE__ */ (0,
|
|
2343
|
-
/* @__PURE__ */ (0,
|
|
2388
|
+
/* @__PURE__ */ (0, import_jsx_runtime72.jsx)("title", { children: "Panel Left icon" }),
|
|
2389
|
+
/* @__PURE__ */ (0, import_jsx_runtime72.jsx)("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }),
|
|
2390
|
+
/* @__PURE__ */ (0, import_jsx_runtime72.jsx)("path", { d: "M9 3v18" })
|
|
2344
2391
|
]
|
|
2345
2392
|
}
|
|
2346
2393
|
);
|
|
2347
2394
|
};
|
|
2348
2395
|
|
|
2349
2396
|
// src/people.tsx
|
|
2350
|
-
var
|
|
2397
|
+
var import_jsx_runtime73 = require("react/jsx-runtime");
|
|
2351
2398
|
var PeopleIcon = ({ size = 24, ...props }) => {
|
|
2352
|
-
return /* @__PURE__ */ (0,
|
|
2399
|
+
return /* @__PURE__ */ (0, import_jsx_runtime73.jsxs)(
|
|
2353
2400
|
"svg",
|
|
2354
2401
|
{
|
|
2355
2402
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2363,20 +2410,20 @@ var PeopleIcon = ({ size = 24, ...props }) => {
|
|
|
2363
2410
|
strokeLinejoin: "round",
|
|
2364
2411
|
...props,
|
|
2365
2412
|
children: [
|
|
2366
|
-
/* @__PURE__ */ (0,
|
|
2367
|
-
/* @__PURE__ */ (0,
|
|
2368
|
-
/* @__PURE__ */ (0,
|
|
2369
|
-
/* @__PURE__ */ (0,
|
|
2370
|
-
/* @__PURE__ */ (0,
|
|
2413
|
+
/* @__PURE__ */ (0, import_jsx_runtime73.jsx)("title", { children: "People icon" }),
|
|
2414
|
+
/* @__PURE__ */ (0, import_jsx_runtime73.jsx)("path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }),
|
|
2415
|
+
/* @__PURE__ */ (0, import_jsx_runtime73.jsx)("path", { d: "M16 3.128a4 4 0 0 1 0 7.744" }),
|
|
2416
|
+
/* @__PURE__ */ (0, import_jsx_runtime73.jsx)("path", { d: "M22 21v-2a4 4 0 0 0-3-3.87" }),
|
|
2417
|
+
/* @__PURE__ */ (0, import_jsx_runtime73.jsx)("circle", { cx: "9", cy: "7", r: "4" })
|
|
2371
2418
|
]
|
|
2372
2419
|
}
|
|
2373
2420
|
);
|
|
2374
2421
|
};
|
|
2375
2422
|
|
|
2376
2423
|
// src/physical-asset.tsx
|
|
2377
|
-
var
|
|
2424
|
+
var import_jsx_runtime74 = require("react/jsx-runtime");
|
|
2378
2425
|
var PhysicalAssetIcon = ({ size = 24, ...props }) => {
|
|
2379
|
-
return /* @__PURE__ */ (0,
|
|
2426
|
+
return /* @__PURE__ */ (0, import_jsx_runtime74.jsxs)(
|
|
2380
2427
|
"svg",
|
|
2381
2428
|
{
|
|
2382
2429
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2390,20 +2437,20 @@ var PhysicalAssetIcon = ({ size = 24, ...props }) => {
|
|
|
2390
2437
|
strokeLinejoin: "round",
|
|
2391
2438
|
...props,
|
|
2392
2439
|
children: [
|
|
2393
|
-
/* @__PURE__ */ (0,
|
|
2394
|
-
/* @__PURE__ */ (0,
|
|
2395
|
-
/* @__PURE__ */ (0,
|
|
2396
|
-
/* @__PURE__ */ (0,
|
|
2397
|
-
/* @__PURE__ */ (0,
|
|
2440
|
+
/* @__PURE__ */ (0, import_jsx_runtime74.jsx)("title", { children: "Physical Asset icon" }),
|
|
2441
|
+
/* @__PURE__ */ (0, import_jsx_runtime74.jsx)("path", { d: "M18 8V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v7a2 2 0 0 0 2 2h8" }),
|
|
2442
|
+
/* @__PURE__ */ (0, import_jsx_runtime74.jsx)("path", { d: "M10 19v-3.96 3.15" }),
|
|
2443
|
+
/* @__PURE__ */ (0, import_jsx_runtime74.jsx)("path", { d: "M7 19h5" }),
|
|
2444
|
+
/* @__PURE__ */ (0, import_jsx_runtime74.jsx)("rect", { width: "6", height: "10", x: "16", y: "12", rx: "2" })
|
|
2398
2445
|
]
|
|
2399
2446
|
}
|
|
2400
2447
|
);
|
|
2401
2448
|
};
|
|
2402
2449
|
|
|
2403
2450
|
// src/plattform-asset.tsx
|
|
2404
|
-
var
|
|
2451
|
+
var import_jsx_runtime75 = require("react/jsx-runtime");
|
|
2405
2452
|
var PlattformAssetIcon = ({ size = 24, ...props }) => {
|
|
2406
|
-
return /* @__PURE__ */ (0,
|
|
2453
|
+
return /* @__PURE__ */ (0, import_jsx_runtime75.jsxs)(
|
|
2407
2454
|
"svg",
|
|
2408
2455
|
{
|
|
2409
2456
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2417,20 +2464,20 @@ var PlattformAssetIcon = ({ size = 24, ...props }) => {
|
|
|
2417
2464
|
strokeLinejoin: "round",
|
|
2418
2465
|
...props,
|
|
2419
2466
|
children: [
|
|
2420
|
-
/* @__PURE__ */ (0,
|
|
2421
|
-
/* @__PURE__ */ (0,
|
|
2422
|
-
/* @__PURE__ */ (0,
|
|
2423
|
-
/* @__PURE__ */ (0,
|
|
2424
|
-
/* @__PURE__ */ (0,
|
|
2467
|
+
/* @__PURE__ */ (0, import_jsx_runtime75.jsx)("title", { children: "Plattform Asset icon" }),
|
|
2468
|
+
/* @__PURE__ */ (0, import_jsx_runtime75.jsx)("rect", { width: "20", height: "8", x: "2", y: "2", rx: "2", ry: "2" }),
|
|
2469
|
+
/* @__PURE__ */ (0, import_jsx_runtime75.jsx)("rect", { width: "20", height: "8", x: "2", y: "14", rx: "2", ry: "2" }),
|
|
2470
|
+
/* @__PURE__ */ (0, import_jsx_runtime75.jsx)("line", { x1: "6", x2: "6.01", y1: "6", y2: "6" }),
|
|
2471
|
+
/* @__PURE__ */ (0, import_jsx_runtime75.jsx)("line", { x1: "6", x2: "6.01", y1: "18", y2: "18" })
|
|
2425
2472
|
]
|
|
2426
2473
|
}
|
|
2427
2474
|
);
|
|
2428
2475
|
};
|
|
2429
2476
|
|
|
2430
2477
|
// src/plus.tsx
|
|
2431
|
-
var
|
|
2478
|
+
var import_jsx_runtime76 = require("react/jsx-runtime");
|
|
2432
2479
|
var PlusIcon = (props) => {
|
|
2433
|
-
return /* @__PURE__ */ (0,
|
|
2480
|
+
return /* @__PURE__ */ (0, import_jsx_runtime76.jsxs)(
|
|
2434
2481
|
"svg",
|
|
2435
2482
|
{
|
|
2436
2483
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2444,21 +2491,21 @@ var PlusIcon = (props) => {
|
|
|
2444
2491
|
strokeLinejoin: "round",
|
|
2445
2492
|
...props,
|
|
2446
2493
|
children: [
|
|
2447
|
-
/* @__PURE__ */ (0,
|
|
2448
|
-
/* @__PURE__ */ (0,
|
|
2449
|
-
/* @__PURE__ */ (0,
|
|
2494
|
+
/* @__PURE__ */ (0, import_jsx_runtime76.jsx)("title", { children: "Plus Icon" }),
|
|
2495
|
+
/* @__PURE__ */ (0, import_jsx_runtime76.jsx)("path", { d: "M5 12h14" }),
|
|
2496
|
+
/* @__PURE__ */ (0, import_jsx_runtime76.jsx)("path", { d: "M12 5v14" })
|
|
2450
2497
|
]
|
|
2451
2498
|
}
|
|
2452
2499
|
);
|
|
2453
2500
|
};
|
|
2454
2501
|
|
|
2455
2502
|
// src/processing-activity.tsx
|
|
2456
|
-
var
|
|
2503
|
+
var import_jsx_runtime77 = require("react/jsx-runtime");
|
|
2457
2504
|
var ProcessingActivityIcon = ({
|
|
2458
2505
|
size = 24,
|
|
2459
2506
|
...props
|
|
2460
2507
|
}) => {
|
|
2461
|
-
return /* @__PURE__ */ (0,
|
|
2508
|
+
return /* @__PURE__ */ (0, import_jsx_runtime77.jsxs)(
|
|
2462
2509
|
"svg",
|
|
2463
2510
|
{
|
|
2464
2511
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2472,19 +2519,19 @@ var ProcessingActivityIcon = ({
|
|
|
2472
2519
|
strokeLinejoin: "round",
|
|
2473
2520
|
...props,
|
|
2474
2521
|
children: [
|
|
2475
|
-
/* @__PURE__ */ (0,
|
|
2476
|
-
/* @__PURE__ */ (0,
|
|
2477
|
-
/* @__PURE__ */ (0,
|
|
2478
|
-
/* @__PURE__ */ (0,
|
|
2522
|
+
/* @__PURE__ */ (0, import_jsx_runtime77.jsx)("title", { children: "Processing Activity icon" }),
|
|
2523
|
+
/* @__PURE__ */ (0, import_jsx_runtime77.jsx)("rect", { width: "8", height: "8", x: "3", y: "3", rx: "2" }),
|
|
2524
|
+
/* @__PURE__ */ (0, import_jsx_runtime77.jsx)("path", { d: "M7 11v4a2 2 0 0 0 2 2h4" }),
|
|
2525
|
+
/* @__PURE__ */ (0, import_jsx_runtime77.jsx)("rect", { width: "8", height: "8", x: "13", y: "13", rx: "2" })
|
|
2479
2526
|
]
|
|
2480
2527
|
}
|
|
2481
2528
|
);
|
|
2482
2529
|
};
|
|
2483
2530
|
|
|
2484
2531
|
// src/program-icon.tsx
|
|
2485
|
-
var
|
|
2532
|
+
var import_jsx_runtime78 = require("react/jsx-runtime");
|
|
2486
2533
|
var ProgramIcon = ({ size = 24, ...props }) => {
|
|
2487
|
-
return /* @__PURE__ */ (0,
|
|
2534
|
+
return /* @__PURE__ */ (0, import_jsx_runtime78.jsxs)(
|
|
2488
2535
|
"svg",
|
|
2489
2536
|
{
|
|
2490
2537
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2498,20 +2545,20 @@ var ProgramIcon = ({ size = 24, ...props }) => {
|
|
|
2498
2545
|
strokeLinejoin: "round",
|
|
2499
2546
|
...props,
|
|
2500
2547
|
children: [
|
|
2501
|
-
/* @__PURE__ */ (0,
|
|
2502
|
-
/* @__PURE__ */ (0,
|
|
2503
|
-
/* @__PURE__ */ (0,
|
|
2504
|
-
/* @__PURE__ */ (0,
|
|
2505
|
-
/* @__PURE__ */ (0,
|
|
2548
|
+
/* @__PURE__ */ (0, import_jsx_runtime78.jsx)("title", { children: "Program icon" }),
|
|
2549
|
+
/* @__PURE__ */ (0, import_jsx_runtime78.jsx)("path", { d: "M4 20h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.93a2 2 0 0 1-1.66-.9l-.82-1.2A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13c0 1.1.9 2 2 2Z" }),
|
|
2550
|
+
/* @__PURE__ */ (0, import_jsx_runtime78.jsx)("path", { d: "M8 10v4" }),
|
|
2551
|
+
/* @__PURE__ */ (0, import_jsx_runtime78.jsx)("path", { d: "M12 10v2" }),
|
|
2552
|
+
/* @__PURE__ */ (0, import_jsx_runtime78.jsx)("path", { d: "M16 10v6" })
|
|
2506
2553
|
]
|
|
2507
2554
|
}
|
|
2508
2555
|
);
|
|
2509
2556
|
};
|
|
2510
2557
|
|
|
2511
2558
|
// src/puzzle-icon.tsx
|
|
2512
|
-
var
|
|
2559
|
+
var import_jsx_runtime79 = require("react/jsx-runtime");
|
|
2513
2560
|
var PuzzleIcon = ({ size = 24, ...props }) => {
|
|
2514
|
-
return /* @__PURE__ */ (0,
|
|
2561
|
+
return /* @__PURE__ */ (0, import_jsx_runtime79.jsxs)(
|
|
2515
2562
|
"svg",
|
|
2516
2563
|
{
|
|
2517
2564
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2525,17 +2572,17 @@ var PuzzleIcon = ({ size = 24, ...props }) => {
|
|
|
2525
2572
|
strokeLinejoin: "round",
|
|
2526
2573
|
...props,
|
|
2527
2574
|
children: [
|
|
2528
|
-
/* @__PURE__ */ (0,
|
|
2529
|
-
/* @__PURE__ */ (0,
|
|
2575
|
+
/* @__PURE__ */ (0, import_jsx_runtime79.jsx)("title", { children: "Puzzle Icon" }),
|
|
2576
|
+
/* @__PURE__ */ (0, import_jsx_runtime79.jsx)("path", { d: "M15.39 4.39a1 1 0 0 0 1.68-.474 2.5 2.5 0 1 1 3.014 3.015 1 1 0 0 0-.474 1.68l1.683 1.682a2.414 2.414 0 0 1 0 3.414L19.61 15.39a1 1 0 0 1-1.68-.474 2.5 2.5 0 1 0-3.014 3.015 1 1 0 0 1 .474 1.68l-1.683 1.682a2.414 2.414 0 0 1-3.414 0L8.61 19.61a1 1 0 0 0-1.68.474 2.5 2.5 0 1 1-3.014-3.015 1 1 0 0 0 .474-1.68l-1.683-1.682a2.414 2.414 0 0 1 0-3.414L4.39 8.61a1 1 0 0 1 1.68.474 2.5 2.5 0 1 0 3.014-3.015 1 1 0 0 1-.474-1.68l1.683-1.682a2.414 2.414 0 0 1 3.414 0z" })
|
|
2530
2577
|
]
|
|
2531
2578
|
}
|
|
2532
2579
|
);
|
|
2533
2580
|
};
|
|
2534
2581
|
|
|
2535
2582
|
// src/redo-icon.tsx
|
|
2536
|
-
var
|
|
2583
|
+
var import_jsx_runtime80 = require("react/jsx-runtime");
|
|
2537
2584
|
var RedoIcon = ({ size = 24, ...props }) => {
|
|
2538
|
-
return /* @__PURE__ */ (0,
|
|
2585
|
+
return /* @__PURE__ */ (0, import_jsx_runtime80.jsxs)(
|
|
2539
2586
|
"svg",
|
|
2540
2587
|
{
|
|
2541
2588
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2545,8 +2592,8 @@ var RedoIcon = ({ size = 24, ...props }) => {
|
|
|
2545
2592
|
fill: "currentColor",
|
|
2546
2593
|
...props,
|
|
2547
2594
|
children: [
|
|
2548
|
-
/* @__PURE__ */ (0,
|
|
2549
|
-
/* @__PURE__ */ (0,
|
|
2595
|
+
/* @__PURE__ */ (0, import_jsx_runtime80.jsx)("title", { children: "Redo Icon" }),
|
|
2596
|
+
/* @__PURE__ */ (0, import_jsx_runtime80.jsx)(
|
|
2550
2597
|
"path",
|
|
2551
2598
|
{
|
|
2552
2599
|
fillRule: "evenodd",
|
|
@@ -2561,9 +2608,9 @@ var RedoIcon = ({ size = 24, ...props }) => {
|
|
|
2561
2608
|
};
|
|
2562
2609
|
|
|
2563
2610
|
// src/risk.tsx
|
|
2564
|
-
var
|
|
2611
|
+
var import_jsx_runtime81 = require("react/jsx-runtime");
|
|
2565
2612
|
var RiskIcon = ({ size = 24, ...props }) => {
|
|
2566
|
-
return /* @__PURE__ */ (0,
|
|
2613
|
+
return /* @__PURE__ */ (0, import_jsx_runtime81.jsxs)(
|
|
2567
2614
|
"svg",
|
|
2568
2615
|
{
|
|
2569
2616
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2577,19 +2624,19 @@ var RiskIcon = ({ size = 24, ...props }) => {
|
|
|
2577
2624
|
strokeLinejoin: "round",
|
|
2578
2625
|
...props,
|
|
2579
2626
|
children: [
|
|
2580
|
-
/* @__PURE__ */ (0,
|
|
2581
|
-
/* @__PURE__ */ (0,
|
|
2582
|
-
/* @__PURE__ */ (0,
|
|
2583
|
-
/* @__PURE__ */ (0,
|
|
2627
|
+
/* @__PURE__ */ (0, import_jsx_runtime81.jsx)("title", { children: "Risk icon" }),
|
|
2628
|
+
/* @__PURE__ */ (0, import_jsx_runtime81.jsx)("path", { d: "M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z" }),
|
|
2629
|
+
/* @__PURE__ */ (0, import_jsx_runtime81.jsx)("path", { d: "M12 8v4" }),
|
|
2630
|
+
/* @__PURE__ */ (0, import_jsx_runtime81.jsx)("path", { d: "M12 16h.01" })
|
|
2584
2631
|
]
|
|
2585
2632
|
}
|
|
2586
2633
|
);
|
|
2587
2634
|
};
|
|
2588
2635
|
|
|
2589
2636
|
// src/rotate-ccw-icon.tsx
|
|
2590
|
-
var
|
|
2637
|
+
var import_jsx_runtime82 = require("react/jsx-runtime");
|
|
2591
2638
|
var RotateCcwIcon = ({ size = 24, ...props }) => {
|
|
2592
|
-
return /* @__PURE__ */ (0,
|
|
2639
|
+
return /* @__PURE__ */ (0, import_jsx_runtime82.jsxs)(
|
|
2593
2640
|
"svg",
|
|
2594
2641
|
{
|
|
2595
2642
|
width: size,
|
|
@@ -2599,8 +2646,8 @@ var RotateCcwIcon = ({ size = 24, ...props }) => {
|
|
|
2599
2646
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2600
2647
|
...props,
|
|
2601
2648
|
children: [
|
|
2602
|
-
/* @__PURE__ */ (0,
|
|
2603
|
-
/* @__PURE__ */ (0,
|
|
2649
|
+
/* @__PURE__ */ (0, import_jsx_runtime82.jsx)("title", { children: "Rotate Ccw Icon" }),
|
|
2650
|
+
/* @__PURE__ */ (0, import_jsx_runtime82.jsx)(
|
|
2604
2651
|
"path",
|
|
2605
2652
|
{
|
|
2606
2653
|
d: "M12 2L11.9962 2.00001C9.22213 2.01045 6.55946 3.0929 4.56496 5.02104L4.55289 5.0329L4 5.58579V3C4 2.44772 3.55228 2 3 2C2.44772 2 2 2.44772 2 3V8C2 8.55228 2.44772 9 3 9H8C8.55228 9 9 8.55228 9 8C9 7.44772 8.55228 7 8 7H5.41422L5.96097 6.45325C7.58329 4.88786 9.7473 4.00897 12.0019 4.00001C13.5835 4.00038 15.1295 4.46955 16.4446 5.34825C17.7602 6.2273 18.7855 7.47673 19.391 8.93854C19.9965 10.4003 20.155 12.0089 19.8463 13.5607C19.5376 15.1126 18.7757 16.538 17.6569 17.6569C16.538 18.7757 15.1126 19.5376 13.5607 19.8463C12.0089 20.155 10.4003 19.9965 8.93853 19.391C7.47672 18.7855 6.22729 17.7602 5.34824 16.4446C4.46919 15.129 4 13.5823 4 12C4 11.4477 3.55228 11 3 11C2.44772 11 2 11.4477 2 12C2 13.9778 2.58649 15.9112 3.6853 17.5557C4.78412 19.2002 6.3459 20.4819 8.17317 21.2388C10.0004 21.9957 12.0111 22.1937 13.9509 21.8079C15.8907 21.422 17.6725 20.4696 19.0711 19.0711C20.4696 17.6726 21.422 15.8907 21.8079 13.9509C22.1937 12.0111 21.9957 10.0004 21.2388 8.17317C20.4819 6.34591 19.2002 4.78412 17.5557 3.68531C15.9112 2.5865 13.9778 2.00001 12 2Z",
|
|
@@ -2613,9 +2660,9 @@ var RotateCcwIcon = ({ size = 24, ...props }) => {
|
|
|
2613
2660
|
};
|
|
2614
2661
|
|
|
2615
2662
|
// src/save.tsx
|
|
2616
|
-
var
|
|
2663
|
+
var import_jsx_runtime83 = require("react/jsx-runtime");
|
|
2617
2664
|
var SaveIcon = (props) => {
|
|
2618
|
-
return /* @__PURE__ */ (0,
|
|
2665
|
+
return /* @__PURE__ */ (0, import_jsx_runtime83.jsxs)(
|
|
2619
2666
|
"svg",
|
|
2620
2667
|
{
|
|
2621
2668
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2629,19 +2676,19 @@ var SaveIcon = (props) => {
|
|
|
2629
2676
|
strokeLinejoin: "round",
|
|
2630
2677
|
...props,
|
|
2631
2678
|
children: [
|
|
2632
|
-
/* @__PURE__ */ (0,
|
|
2633
|
-
/* @__PURE__ */ (0,
|
|
2634
|
-
/* @__PURE__ */ (0,
|
|
2635
|
-
/* @__PURE__ */ (0,
|
|
2679
|
+
/* @__PURE__ */ (0, import_jsx_runtime83.jsx)("title", { children: "Save Icon" }),
|
|
2680
|
+
/* @__PURE__ */ (0, import_jsx_runtime83.jsx)("path", { d: "M15.2 3a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z" }),
|
|
2681
|
+
/* @__PURE__ */ (0, import_jsx_runtime83.jsx)("path", { d: "M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7" }),
|
|
2682
|
+
/* @__PURE__ */ (0, import_jsx_runtime83.jsx)("path", { d: "M7 3v4a1 1 0 0 0 1 1h7" })
|
|
2636
2683
|
]
|
|
2637
2684
|
}
|
|
2638
2685
|
);
|
|
2639
2686
|
};
|
|
2640
2687
|
|
|
2641
2688
|
// src/search.tsx
|
|
2642
|
-
var
|
|
2689
|
+
var import_jsx_runtime84 = require("react/jsx-runtime");
|
|
2643
2690
|
var SearchIcon = (props) => {
|
|
2644
|
-
return /* @__PURE__ */ (0,
|
|
2691
|
+
return /* @__PURE__ */ (0, import_jsx_runtime84.jsxs)(
|
|
2645
2692
|
"svg",
|
|
2646
2693
|
{
|
|
2647
2694
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2655,18 +2702,18 @@ var SearchIcon = (props) => {
|
|
|
2655
2702
|
strokeLinejoin: "round",
|
|
2656
2703
|
...props,
|
|
2657
2704
|
children: [
|
|
2658
|
-
/* @__PURE__ */ (0,
|
|
2659
|
-
/* @__PURE__ */ (0,
|
|
2660
|
-
/* @__PURE__ */ (0,
|
|
2705
|
+
/* @__PURE__ */ (0, import_jsx_runtime84.jsx)("title", { children: "Search Icon" }),
|
|
2706
|
+
/* @__PURE__ */ (0, import_jsx_runtime84.jsx)("path", { d: "m21 21-4.34-4.34" }),
|
|
2707
|
+
/* @__PURE__ */ (0, import_jsx_runtime84.jsx)("circle", { cx: "11", cy: "11", r: "8" })
|
|
2661
2708
|
]
|
|
2662
2709
|
}
|
|
2663
2710
|
);
|
|
2664
2711
|
};
|
|
2665
2712
|
|
|
2666
2713
|
// src/settings.tsx
|
|
2667
|
-
var
|
|
2714
|
+
var import_jsx_runtime85 = require("react/jsx-runtime");
|
|
2668
2715
|
var SettingsIcon = ({ size = 24, ...props }) => {
|
|
2669
|
-
return /* @__PURE__ */ (0,
|
|
2716
|
+
return /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)(
|
|
2670
2717
|
"svg",
|
|
2671
2718
|
{
|
|
2672
2719
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2680,20 +2727,20 @@ var SettingsIcon = ({ size = 24, ...props }) => {
|
|
|
2680
2727
|
strokeLinejoin: "round",
|
|
2681
2728
|
...props,
|
|
2682
2729
|
children: [
|
|
2683
|
-
/* @__PURE__ */ (0,
|
|
2684
|
-
/* @__PURE__ */ (0,
|
|
2685
|
-
/* @__PURE__ */ (0,
|
|
2686
|
-
/* @__PURE__ */ (0,
|
|
2687
|
-
/* @__PURE__ */ (0,
|
|
2730
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)("title", { children: "Settings" }),
|
|
2731
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)("path", { d: "M14 17H5" }),
|
|
2732
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)("path", { d: "M19 7h-9" }),
|
|
2733
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)("circle", { cx: "17", cy: "17", r: "3" }),
|
|
2734
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)("circle", { cx: "7", cy: "7", r: "3" })
|
|
2688
2735
|
]
|
|
2689
2736
|
}
|
|
2690
2737
|
);
|
|
2691
2738
|
};
|
|
2692
2739
|
|
|
2693
2740
|
// src/shell.tsx
|
|
2694
|
-
var
|
|
2741
|
+
var import_jsx_runtime86 = require("react/jsx-runtime");
|
|
2695
2742
|
var ShellIcon = ({ size = 24, ...props }) => {
|
|
2696
|
-
return /* @__PURE__ */ (0,
|
|
2743
|
+
return /* @__PURE__ */ (0, import_jsx_runtime86.jsxs)(
|
|
2697
2744
|
"svg",
|
|
2698
2745
|
{
|
|
2699
2746
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2707,17 +2754,17 @@ var ShellIcon = ({ size = 24, ...props }) => {
|
|
|
2707
2754
|
strokeLinejoin: "round",
|
|
2708
2755
|
...props,
|
|
2709
2756
|
children: [
|
|
2710
|
-
/* @__PURE__ */ (0,
|
|
2711
|
-
/* @__PURE__ */ (0,
|
|
2757
|
+
/* @__PURE__ */ (0, import_jsx_runtime86.jsx)("title", { children: "Shell Icon" }),
|
|
2758
|
+
/* @__PURE__ */ (0, import_jsx_runtime86.jsx)("path", { d: "M14 11a2 2 0 1 1-4 0 4 4 0 0 1 8 0 6 6 0 0 1-12 0 8 8 0 0 1 16 0 10 10 0 1 1-20 0 11.93 11.93 0 0 1 2.42-7.22 2 2 0 1 1 3.16 2.44" })
|
|
2712
2759
|
]
|
|
2713
2760
|
}
|
|
2714
2761
|
);
|
|
2715
2762
|
};
|
|
2716
2763
|
|
|
2717
2764
|
// src/squares-intersect.tsx
|
|
2718
|
-
var
|
|
2765
|
+
var import_jsx_runtime87 = require("react/jsx-runtime");
|
|
2719
2766
|
var SquaresIntersect = ({ size = 24, ...props }) => {
|
|
2720
|
-
return /* @__PURE__ */ (0,
|
|
2767
|
+
return /* @__PURE__ */ (0, import_jsx_runtime87.jsxs)(
|
|
2721
2768
|
"svg",
|
|
2722
2769
|
{
|
|
2723
2770
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2731,27 +2778,27 @@ var SquaresIntersect = ({ size = 24, ...props }) => {
|
|
|
2731
2778
|
strokeLinejoin: "round",
|
|
2732
2779
|
...props,
|
|
2733
2780
|
children: [
|
|
2734
|
-
/* @__PURE__ */ (0,
|
|
2735
|
-
/* @__PURE__ */ (0,
|
|
2736
|
-
/* @__PURE__ */ (0,
|
|
2737
|
-
/* @__PURE__ */ (0,
|
|
2738
|
-
/* @__PURE__ */ (0,
|
|
2739
|
-
/* @__PURE__ */ (0,
|
|
2740
|
-
/* @__PURE__ */ (0,
|
|
2741
|
-
/* @__PURE__ */ (0,
|
|
2742
|
-
/* @__PURE__ */ (0,
|
|
2743
|
-
/* @__PURE__ */ (0,
|
|
2744
|
-
/* @__PURE__ */ (0,
|
|
2745
|
-
/* @__PURE__ */ (0,
|
|
2781
|
+
/* @__PURE__ */ (0, import_jsx_runtime87.jsx)("title", { children: "Squares Intersect icon" }),
|
|
2782
|
+
/* @__PURE__ */ (0, import_jsx_runtime87.jsx)("path", { d: "M10 22a2 2 0 0 1-2-2" }),
|
|
2783
|
+
/* @__PURE__ */ (0, import_jsx_runtime87.jsx)("path", { d: "M14 2a2 2 0 0 1 2 2" }),
|
|
2784
|
+
/* @__PURE__ */ (0, import_jsx_runtime87.jsx)("path", { d: "M16 22h-2" }),
|
|
2785
|
+
/* @__PURE__ */ (0, import_jsx_runtime87.jsx)("path", { d: "M2 10V8" }),
|
|
2786
|
+
/* @__PURE__ */ (0, import_jsx_runtime87.jsx)("path", { d: "M2 4a2 2 0 0 1 2-2" }),
|
|
2787
|
+
/* @__PURE__ */ (0, import_jsx_runtime87.jsx)("path", { d: "M20 8a2 2 0 0 1 2 2" }),
|
|
2788
|
+
/* @__PURE__ */ (0, import_jsx_runtime87.jsx)("path", { d: "M22 14v2" }),
|
|
2789
|
+
/* @__PURE__ */ (0, import_jsx_runtime87.jsx)("path", { d: "M22 20a2 2 0 0 1-2 2" }),
|
|
2790
|
+
/* @__PURE__ */ (0, import_jsx_runtime87.jsx)("path", { d: "M4 16a2 2 0 0 1-2-2" }),
|
|
2791
|
+
/* @__PURE__ */ (0, import_jsx_runtime87.jsx)("path", { d: "M8 10a2 2 0 0 1 2-2h5a1 1 0 0 1 1 1v5a2 2 0 0 1-2 2H9a1 1 0 0 1-1-1z" }),
|
|
2792
|
+
/* @__PURE__ */ (0, import_jsx_runtime87.jsx)("path", { d: "M8 2h2" })
|
|
2746
2793
|
]
|
|
2747
2794
|
}
|
|
2748
2795
|
);
|
|
2749
2796
|
};
|
|
2750
2797
|
|
|
2751
2798
|
// src/strike-icon.tsx
|
|
2752
|
-
var
|
|
2799
|
+
var import_jsx_runtime88 = require("react/jsx-runtime");
|
|
2753
2800
|
var StrikeIcon = ({ size = 24, ...props }) => {
|
|
2754
|
-
return /* @__PURE__ */ (0,
|
|
2801
|
+
return /* @__PURE__ */ (0, import_jsx_runtime88.jsxs)(
|
|
2755
2802
|
"svg",
|
|
2756
2803
|
{
|
|
2757
2804
|
width: size,
|
|
@@ -2761,15 +2808,15 @@ var StrikeIcon = ({ size = 24, ...props }) => {
|
|
|
2761
2808
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2762
2809
|
...props,
|
|
2763
2810
|
children: [
|
|
2764
|
-
/* @__PURE__ */ (0,
|
|
2765
|
-
/* @__PURE__ */ (0,
|
|
2811
|
+
/* @__PURE__ */ (0, import_jsx_runtime88.jsx)("title", { children: "Strike" }),
|
|
2812
|
+
/* @__PURE__ */ (0, import_jsx_runtime88.jsx)(
|
|
2766
2813
|
"path",
|
|
2767
2814
|
{
|
|
2768
2815
|
d: "M9.00039 3H16.0001C16.5524 3 17.0001 3.44772 17.0001 4C17.0001 4.55229 16.5524 5 16.0001 5H9.00011C8.68006 4.99983 8.36412 5.07648 8.07983 5.22349C7.79555 5.37051 7.55069 5.5836 7.36585 5.84487C7.181 6.10614 7.06155 6.40796 7.01754 6.72497C6.97352 7.04198 7.00623 7.36492 7.11292 7.66667C7.29701 8.18737 7.02414 8.75872 6.50344 8.94281C5.98274 9.1269 5.4114 8.85403 5.2273 8.33333C5.01393 7.72984 4.94851 7.08396 5.03654 6.44994C5.12456 5.81592 5.36346 5.21229 5.73316 4.68974C6.10285 4.1672 6.59256 3.74101 7.16113 3.44698C7.72955 3.15303 8.36047 2.99975 9.00039 3Z",
|
|
2769
2816
|
fill: "currentColor"
|
|
2770
2817
|
}
|
|
2771
2818
|
),
|
|
2772
|
-
/* @__PURE__ */ (0,
|
|
2819
|
+
/* @__PURE__ */ (0, import_jsx_runtime88.jsx)(
|
|
2773
2820
|
"path",
|
|
2774
2821
|
{
|
|
2775
2822
|
d: "M18 13H20C20.5523 13 21 12.5523 21 12C21 11.4477 20.5523 11 20 11H4C3.44772 11 3 11.4477 3 12C3 12.5523 3.44772 13 4 13H14C14.7956 13 15.5587 13.3161 16.1213 13.8787C16.6839 14.4413 17 15.2044 17 16C17 16.7956 16.6839 17.5587 16.1213 18.1213C15.5587 18.6839 14.7956 19 14 19H6C5.44772 19 5 19.4477 5 20C5 20.5523 5.44772 21 6 21H14C15.3261 21 16.5979 20.4732 17.5355 19.5355C18.4732 18.5979 19 17.3261 19 16C19 14.9119 18.6453 13.8604 18 13Z",
|
|
@@ -2782,9 +2829,9 @@ var StrikeIcon = ({ size = 24, ...props }) => {
|
|
|
2782
2829
|
};
|
|
2783
2830
|
|
|
2784
2831
|
// src/subscript-icon.tsx
|
|
2785
|
-
var
|
|
2832
|
+
var import_jsx_runtime89 = require("react/jsx-runtime");
|
|
2786
2833
|
var SubscriptIcon = ({ size = 24, ...props }) => {
|
|
2787
|
-
return /* @__PURE__ */ (0,
|
|
2834
|
+
return /* @__PURE__ */ (0, import_jsx_runtime89.jsxs)(
|
|
2788
2835
|
"svg",
|
|
2789
2836
|
{
|
|
2790
2837
|
width: size,
|
|
@@ -2794,8 +2841,8 @@ var SubscriptIcon = ({ size = 24, ...props }) => {
|
|
|
2794
2841
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2795
2842
|
...props,
|
|
2796
2843
|
children: [
|
|
2797
|
-
/* @__PURE__ */ (0,
|
|
2798
|
-
/* @__PURE__ */ (0,
|
|
2844
|
+
/* @__PURE__ */ (0, import_jsx_runtime89.jsx)("title", { children: "Subscript" }),
|
|
2845
|
+
/* @__PURE__ */ (0, import_jsx_runtime89.jsx)(
|
|
2799
2846
|
"path",
|
|
2800
2847
|
{
|
|
2801
2848
|
fillRule: "evenodd",
|
|
@@ -2804,7 +2851,7 @@ var SubscriptIcon = ({ size = 24, ...props }) => {
|
|
|
2804
2851
|
fill: "currentColor"
|
|
2805
2852
|
}
|
|
2806
2853
|
),
|
|
2807
|
-
/* @__PURE__ */ (0,
|
|
2854
|
+
/* @__PURE__ */ (0, import_jsx_runtime89.jsx)(
|
|
2808
2855
|
"path",
|
|
2809
2856
|
{
|
|
2810
2857
|
fillRule: "evenodd",
|
|
@@ -2813,7 +2860,7 @@ var SubscriptIcon = ({ size = 24, ...props }) => {
|
|
|
2813
2860
|
fill: "currentColor"
|
|
2814
2861
|
}
|
|
2815
2862
|
),
|
|
2816
|
-
/* @__PURE__ */ (0,
|
|
2863
|
+
/* @__PURE__ */ (0, import_jsx_runtime89.jsx)(
|
|
2817
2864
|
"path",
|
|
2818
2865
|
{
|
|
2819
2866
|
fillRule: "evenodd",
|
|
@@ -2828,9 +2875,9 @@ var SubscriptIcon = ({ size = 24, ...props }) => {
|
|
|
2828
2875
|
};
|
|
2829
2876
|
|
|
2830
2877
|
// src/superscript-icon.tsx
|
|
2831
|
-
var
|
|
2878
|
+
var import_jsx_runtime90 = require("react/jsx-runtime");
|
|
2832
2879
|
var SuperscriptIcon = ({ size = 24, ...props }) => {
|
|
2833
|
-
return /* @__PURE__ */ (0,
|
|
2880
|
+
return /* @__PURE__ */ (0, import_jsx_runtime90.jsxs)(
|
|
2834
2881
|
"svg",
|
|
2835
2882
|
{
|
|
2836
2883
|
width: size,
|
|
@@ -2840,8 +2887,8 @@ var SuperscriptIcon = ({ size = 24, ...props }) => {
|
|
|
2840
2887
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2841
2888
|
...props,
|
|
2842
2889
|
children: [
|
|
2843
|
-
/* @__PURE__ */ (0,
|
|
2844
|
-
/* @__PURE__ */ (0,
|
|
2890
|
+
/* @__PURE__ */ (0, import_jsx_runtime90.jsx)("title", { children: "Superscript" }),
|
|
2891
|
+
/* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
|
|
2845
2892
|
"path",
|
|
2846
2893
|
{
|
|
2847
2894
|
fillRule: "evenodd",
|
|
@@ -2850,7 +2897,7 @@ var SuperscriptIcon = ({ size = 24, ...props }) => {
|
|
|
2850
2897
|
fill: "currentColor"
|
|
2851
2898
|
}
|
|
2852
2899
|
),
|
|
2853
|
-
/* @__PURE__ */ (0,
|
|
2900
|
+
/* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
|
|
2854
2901
|
"path",
|
|
2855
2902
|
{
|
|
2856
2903
|
fillRule: "evenodd",
|
|
@@ -2859,7 +2906,7 @@ var SuperscriptIcon = ({ size = 24, ...props }) => {
|
|
|
2859
2906
|
fill: "currentColor"
|
|
2860
2907
|
}
|
|
2861
2908
|
),
|
|
2862
|
-
/* @__PURE__ */ (0,
|
|
2909
|
+
/* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
|
|
2863
2910
|
"path",
|
|
2864
2911
|
{
|
|
2865
2912
|
fillRule: "evenodd",
|
|
@@ -2874,9 +2921,9 @@ var SuperscriptIcon = ({ size = 24, ...props }) => {
|
|
|
2874
2921
|
};
|
|
2875
2922
|
|
|
2876
2923
|
// src/table-icon.tsx
|
|
2877
|
-
var
|
|
2924
|
+
var import_jsx_runtime91 = require("react/jsx-runtime");
|
|
2878
2925
|
var TableIcon = ({ size = 24, ...props }) => {
|
|
2879
|
-
return /* @__PURE__ */ (0,
|
|
2926
|
+
return /* @__PURE__ */ (0, import_jsx_runtime91.jsxs)(
|
|
2880
2927
|
"svg",
|
|
2881
2928
|
{
|
|
2882
2929
|
width: size,
|
|
@@ -2890,20 +2937,20 @@ var TableIcon = ({ size = 24, ...props }) => {
|
|
|
2890
2937
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2891
2938
|
...props,
|
|
2892
2939
|
children: [
|
|
2893
|
-
/* @__PURE__ */ (0,
|
|
2894
|
-
/* @__PURE__ */ (0,
|
|
2895
|
-
/* @__PURE__ */ (0,
|
|
2896
|
-
/* @__PURE__ */ (0,
|
|
2897
|
-
/* @__PURE__ */ (0,
|
|
2940
|
+
/* @__PURE__ */ (0, import_jsx_runtime91.jsx)("title", { children: "Table" }),
|
|
2941
|
+
/* @__PURE__ */ (0, import_jsx_runtime91.jsx)("path", { d: "M12 3v18" }),
|
|
2942
|
+
/* @__PURE__ */ (0, import_jsx_runtime91.jsx)("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }),
|
|
2943
|
+
/* @__PURE__ */ (0, import_jsx_runtime91.jsx)("path", { d: "M3 9h18" }),
|
|
2944
|
+
/* @__PURE__ */ (0, import_jsx_runtime91.jsx)("path", { d: "M3 15h18" })
|
|
2898
2945
|
]
|
|
2899
2946
|
}
|
|
2900
2947
|
);
|
|
2901
2948
|
};
|
|
2902
2949
|
|
|
2903
2950
|
// src/trash-icon.tsx
|
|
2904
|
-
var
|
|
2951
|
+
var import_jsx_runtime92 = require("react/jsx-runtime");
|
|
2905
2952
|
var TrashIcon = ({ size = 24, ...props }) => {
|
|
2906
|
-
return /* @__PURE__ */ (0,
|
|
2953
|
+
return /* @__PURE__ */ (0, import_jsx_runtime92.jsxs)(
|
|
2907
2954
|
"svg",
|
|
2908
2955
|
{
|
|
2909
2956
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2917,21 +2964,21 @@ var TrashIcon = ({ size = 24, ...props }) => {
|
|
|
2917
2964
|
strokeLinejoin: "round",
|
|
2918
2965
|
...props,
|
|
2919
2966
|
children: [
|
|
2920
|
-
/* @__PURE__ */ (0,
|
|
2921
|
-
/* @__PURE__ */ (0,
|
|
2922
|
-
/* @__PURE__ */ (0,
|
|
2923
|
-
/* @__PURE__ */ (0,
|
|
2924
|
-
/* @__PURE__ */ (0,
|
|
2925
|
-
/* @__PURE__ */ (0,
|
|
2967
|
+
/* @__PURE__ */ (0, import_jsx_runtime92.jsx)("title", { children: "Trash icon" }),
|
|
2968
|
+
/* @__PURE__ */ (0, import_jsx_runtime92.jsx)("path", { d: "M10 11v6" }),
|
|
2969
|
+
/* @__PURE__ */ (0, import_jsx_runtime92.jsx)("path", { d: "M14 11v6" }),
|
|
2970
|
+
/* @__PURE__ */ (0, import_jsx_runtime92.jsx)("path", { d: "M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6" }),
|
|
2971
|
+
/* @__PURE__ */ (0, import_jsx_runtime92.jsx)("path", { d: "M3 6h18" }),
|
|
2972
|
+
/* @__PURE__ */ (0, import_jsx_runtime92.jsx)("path", { d: "M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2" })
|
|
2926
2973
|
]
|
|
2927
2974
|
}
|
|
2928
2975
|
);
|
|
2929
2976
|
};
|
|
2930
2977
|
|
|
2931
2978
|
// src/type-icon.tsx
|
|
2932
|
-
var
|
|
2979
|
+
var import_jsx_runtime93 = require("react/jsx-runtime");
|
|
2933
2980
|
var TypeIcon = ({ size = 24, ...props }) => {
|
|
2934
|
-
return /* @__PURE__ */ (0,
|
|
2981
|
+
return /* @__PURE__ */ (0, import_jsx_runtime93.jsxs)(
|
|
2935
2982
|
"svg",
|
|
2936
2983
|
{
|
|
2937
2984
|
width: size,
|
|
@@ -2941,8 +2988,8 @@ var TypeIcon = ({ size = 24, ...props }) => {
|
|
|
2941
2988
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2942
2989
|
...props,
|
|
2943
2990
|
children: [
|
|
2944
|
-
/* @__PURE__ */ (0,
|
|
2945
|
-
/* @__PURE__ */ (0,
|
|
2991
|
+
/* @__PURE__ */ (0, import_jsx_runtime93.jsx)("title", { children: "Type Icon" }),
|
|
2992
|
+
/* @__PURE__ */ (0, import_jsx_runtime93.jsx)(
|
|
2946
2993
|
"path",
|
|
2947
2994
|
{
|
|
2948
2995
|
d: "M3 4C3 3.44772 3.44772 3 4 3H20C20.5523 3 21 3.44772 21 4V7C21 7.55228 20.5523 8 20 8C19.4477 8 19 7.55228 19 7V5H13V19H15C15.5523 19 16 19.4477 16 20C16 20.5523 15.5523 21 15 21H9C8.44772 21 8 20.5523 8 20C8 19.4477 8.44772 19 9 19H11V5H5V7C5 7.55228 4.55228 8 4 8C3.44772 8 3 7.55228 3 7V4Z",
|
|
@@ -2955,9 +3002,9 @@ var TypeIcon = ({ size = 24, ...props }) => {
|
|
|
2955
3002
|
};
|
|
2956
3003
|
|
|
2957
3004
|
// src/underline-icon.tsx
|
|
2958
|
-
var
|
|
3005
|
+
var import_jsx_runtime94 = require("react/jsx-runtime");
|
|
2959
3006
|
var UnderlineIcon = ({ size = 24, ...props }) => {
|
|
2960
|
-
return /* @__PURE__ */ (0,
|
|
3007
|
+
return /* @__PURE__ */ (0, import_jsx_runtime94.jsxs)(
|
|
2961
3008
|
"svg",
|
|
2962
3009
|
{
|
|
2963
3010
|
width: size,
|
|
@@ -2967,8 +3014,8 @@ var UnderlineIcon = ({ size = 24, ...props }) => {
|
|
|
2967
3014
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2968
3015
|
...props,
|
|
2969
3016
|
children: [
|
|
2970
|
-
/* @__PURE__ */ (0,
|
|
2971
|
-
/* @__PURE__ */ (0,
|
|
3017
|
+
/* @__PURE__ */ (0, import_jsx_runtime94.jsx)("title", { children: "Underline" }),
|
|
3018
|
+
/* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
|
|
2972
3019
|
"path",
|
|
2973
3020
|
{
|
|
2974
3021
|
fillRule: "evenodd",
|
|
@@ -2983,9 +3030,9 @@ var UnderlineIcon = ({ size = 24, ...props }) => {
|
|
|
2983
3030
|
};
|
|
2984
3031
|
|
|
2985
3032
|
// src/undo-icon.tsx
|
|
2986
|
-
var
|
|
3033
|
+
var import_jsx_runtime95 = require("react/jsx-runtime");
|
|
2987
3034
|
var UndoIcon = ({ size = 24, ...props }) => {
|
|
2988
|
-
return /* @__PURE__ */ (0,
|
|
3035
|
+
return /* @__PURE__ */ (0, import_jsx_runtime95.jsxs)(
|
|
2989
3036
|
"svg",
|
|
2990
3037
|
{
|
|
2991
3038
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2995,8 +3042,8 @@ var UndoIcon = ({ size = 24, ...props }) => {
|
|
|
2995
3042
|
fill: "currentColor",
|
|
2996
3043
|
...props,
|
|
2997
3044
|
children: [
|
|
2998
|
-
/* @__PURE__ */ (0,
|
|
2999
|
-
/* @__PURE__ */ (0,
|
|
3045
|
+
/* @__PURE__ */ (0, import_jsx_runtime95.jsx)("title", { children: "Undo Icon" }),
|
|
3046
|
+
/* @__PURE__ */ (0, import_jsx_runtime95.jsx)(
|
|
3000
3047
|
"path",
|
|
3001
3048
|
{
|
|
3002
3049
|
fillRule: "evenodd",
|
|
@@ -3011,9 +3058,9 @@ var UndoIcon = ({ size = 24, ...props }) => {
|
|
|
3011
3058
|
};
|
|
3012
3059
|
|
|
3013
3060
|
// src/upload.tsx
|
|
3014
|
-
var
|
|
3061
|
+
var import_jsx_runtime96 = require("react/jsx-runtime");
|
|
3015
3062
|
var UploadIcon = ({ size = 24, ...props }) => {
|
|
3016
|
-
return /* @__PURE__ */ (0,
|
|
3063
|
+
return /* @__PURE__ */ (0, import_jsx_runtime96.jsxs)(
|
|
3017
3064
|
"svg",
|
|
3018
3065
|
{
|
|
3019
3066
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3027,19 +3074,75 @@ var UploadIcon = ({ size = 24, ...props }) => {
|
|
|
3027
3074
|
strokeLinejoin: "round",
|
|
3028
3075
|
...props,
|
|
3029
3076
|
children: [
|
|
3030
|
-
/* @__PURE__ */ (0,
|
|
3031
|
-
/* @__PURE__ */ (0,
|
|
3032
|
-
/* @__PURE__ */ (0,
|
|
3033
|
-
/* @__PURE__ */ (0,
|
|
3077
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("title", { children: "Upload icon" }),
|
|
3078
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("path", { d: "M12 13v8" }),
|
|
3079
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("path", { d: "M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242" }),
|
|
3080
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("path", { d: "m8 17 4-4 4 4" })
|
|
3081
|
+
]
|
|
3082
|
+
}
|
|
3083
|
+
);
|
|
3084
|
+
};
|
|
3085
|
+
|
|
3086
|
+
// src/user-circle-icon.tsx
|
|
3087
|
+
var import_jsx_runtime97 = require("react/jsx-runtime");
|
|
3088
|
+
var UserCircleIcon = ({ size = 24, ...props }) => {
|
|
3089
|
+
return /* @__PURE__ */ (0, import_jsx_runtime97.jsxs)(
|
|
3090
|
+
"svg",
|
|
3091
|
+
{
|
|
3092
|
+
width: size,
|
|
3093
|
+
height: size,
|
|
3094
|
+
viewBox: "0 0 256 256",
|
|
3095
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3096
|
+
...props,
|
|
3097
|
+
children: [
|
|
3098
|
+
/* @__PURE__ */ (0, import_jsx_runtime97.jsx)("title", { children: "User Circle Icon" }),
|
|
3099
|
+
/* @__PURE__ */ (0, import_jsx_runtime97.jsx)("rect", { width: "256", height: "256", fill: "none" }),
|
|
3100
|
+
/* @__PURE__ */ (0, import_jsx_runtime97.jsx)(
|
|
3101
|
+
"circle",
|
|
3102
|
+
{
|
|
3103
|
+
cx: "128",
|
|
3104
|
+
cy: "128",
|
|
3105
|
+
r: "96",
|
|
3106
|
+
fill: "none",
|
|
3107
|
+
stroke: "currentColor",
|
|
3108
|
+
strokeLinecap: "round",
|
|
3109
|
+
strokeLinejoin: "round",
|
|
3110
|
+
strokeWidth: "16"
|
|
3111
|
+
}
|
|
3112
|
+
),
|
|
3113
|
+
/* @__PURE__ */ (0, import_jsx_runtime97.jsx)(
|
|
3114
|
+
"circle",
|
|
3115
|
+
{
|
|
3116
|
+
cx: "128",
|
|
3117
|
+
cy: "120",
|
|
3118
|
+
r: "40",
|
|
3119
|
+
fill: "none",
|
|
3120
|
+
stroke: "currentColor",
|
|
3121
|
+
strokeLinecap: "round",
|
|
3122
|
+
strokeLinejoin: "round",
|
|
3123
|
+
strokeWidth: "16"
|
|
3124
|
+
}
|
|
3125
|
+
),
|
|
3126
|
+
/* @__PURE__ */ (0, import_jsx_runtime97.jsx)(
|
|
3127
|
+
"path",
|
|
3128
|
+
{
|
|
3129
|
+
d: "M63.8,199.37a72,72,0,0,1,128.4,0",
|
|
3130
|
+
fill: "none",
|
|
3131
|
+
stroke: "currentColor",
|
|
3132
|
+
strokeLinecap: "round",
|
|
3133
|
+
strokeLinejoin: "round",
|
|
3134
|
+
strokeWidth: "16"
|
|
3135
|
+
}
|
|
3136
|
+
)
|
|
3034
3137
|
]
|
|
3035
3138
|
}
|
|
3036
3139
|
);
|
|
3037
3140
|
};
|
|
3038
3141
|
|
|
3039
3142
|
// src/vendor.tsx
|
|
3040
|
-
var
|
|
3143
|
+
var import_jsx_runtime98 = require("react/jsx-runtime");
|
|
3041
3144
|
var VendorIcon = ({ size = 24, ...props }) => {
|
|
3042
|
-
return /* @__PURE__ */ (0,
|
|
3145
|
+
return /* @__PURE__ */ (0, import_jsx_runtime98.jsxs)(
|
|
3043
3146
|
"svg",
|
|
3044
3147
|
{
|
|
3045
3148
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3053,12 +3156,12 @@ var VendorIcon = ({ size = 24, ...props }) => {
|
|
|
3053
3156
|
strokeLinejoin: "round",
|
|
3054
3157
|
...props,
|
|
3055
3158
|
children: [
|
|
3056
|
-
/* @__PURE__ */ (0,
|
|
3057
|
-
/* @__PURE__ */ (0,
|
|
3058
|
-
/* @__PURE__ */ (0,
|
|
3059
|
-
/* @__PURE__ */ (0,
|
|
3060
|
-
/* @__PURE__ */ (0,
|
|
3061
|
-
/* @__PURE__ */ (0,
|
|
3159
|
+
/* @__PURE__ */ (0, import_jsx_runtime98.jsx)("title", { children: "Vendor icon" }),
|
|
3160
|
+
/* @__PURE__ */ (0, import_jsx_runtime98.jsx)("path", { d: "m2 7 4.41-4.41A2 2 0 0 1 7.83 2h8.34a2 2 0 0 1 1.42.59L22 7" }),
|
|
3161
|
+
/* @__PURE__ */ (0, import_jsx_runtime98.jsx)("path", { d: "M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8" }),
|
|
3162
|
+
/* @__PURE__ */ (0, import_jsx_runtime98.jsx)("path", { d: "M15 22v-4a2 2 0 0 0-2-2h-2a2 2 0 0 0-2 2v4" }),
|
|
3163
|
+
/* @__PURE__ */ (0, import_jsx_runtime98.jsx)("path", { d: "M2 7h20" }),
|
|
3164
|
+
/* @__PURE__ */ (0, import_jsx_runtime98.jsx)("path", { d: "M22 7v3a2 2 0 0 1-2 2a2.7 2.7 0 0 1-1.59-.63.7.7 0 0 0-.82 0A2.7 2.7 0 0 1 16 12a2.7 2.7 0 0 1-1.59-.63.7.7 0 0 0-.82 0A2.7 2.7 0 0 1 12 12a2.7 2.7 0 0 1-1.59-.63.7.7 0 0 0-.82 0A2.7 2.7 0 0 1 8 12a2.7 2.7 0 0 1-1.59-.63.7.7 0 0 0-.82 0A2.7 2.7 0 0 1 4 12a2 2 0 0 1-2-2V7" })
|
|
3062
3165
|
]
|
|
3063
3166
|
}
|
|
3064
3167
|
);
|
|
@@ -3073,6 +3176,7 @@ var VendorIcon = ({ size = 24, ...props }) => {
|
|
|
3073
3176
|
AlignLeftIcon,
|
|
3074
3177
|
AlignRightIcon,
|
|
3075
3178
|
ApplicationAssetIcon,
|
|
3179
|
+
ArrowCounterClockwiseIcon,
|
|
3076
3180
|
ArrowDown,
|
|
3077
3181
|
ArrowDownUp,
|
|
3078
3182
|
ArrowRightIcon,
|
|
@@ -3101,6 +3205,7 @@ var VendorIcon = ({ size = 24, ...props }) => {
|
|
|
3101
3205
|
ControlsIcon,
|
|
3102
3206
|
CopyIcon,
|
|
3103
3207
|
CornerDownLeftIcon,
|
|
3208
|
+
CropIcon,
|
|
3104
3209
|
DSARIcon,
|
|
3105
3210
|
DataAssetIcon,
|
|
3106
3211
|
DocumentsIcon,
|
|
@@ -3164,5 +3269,6 @@ var VendorIcon = ({ size = 24, ...props }) => {
|
|
|
3164
3269
|
UnderlineIcon,
|
|
3165
3270
|
UndoIcon,
|
|
3166
3271
|
UploadIcon,
|
|
3272
|
+
UserCircleIcon,
|
|
3167
3273
|
VendorIcon
|
|
3168
3274
|
});
|