@mirohq/design-system-icons 0.73.2-rename-colors-03212025.0 → 0.74.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/main.js +275 -65
- package/dist/main.js.map +1 -1
- package/dist/module.js +272 -66
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +9 -1
- package/package.json +5 -5
- package/react/align-bottom-group.tsx +0 -1
- package/react/align-bottom.tsx +17 -1
- package/react/align-center-horizontal.tsx +0 -1
- package/react/align-center-vertical.tsx +0 -21
- package/react/align-left.tsx +0 -1
- package/react/align-middle.tsx +29 -1
- package/react/align-right.tsx +0 -1
- package/react/align-top-group.tsx +0 -1
- package/react/align-top.tsx +17 -1
- package/react/arrow-box-left.tsx +47 -0
- package/react/arrows-clockwise-rectangle-tilt.tsx +4 -2
- package/react/arrows-counterclockwise-rectangle-tilt.tsx +36 -0
- package/react/github.tsx +46 -0
- package/react/index.ts +4 -0
- package/react/microphone-document.tsx +49 -0
- package/react/rectangles-squares.tsx +1 -1
- package/react/slide-format.tsx +6 -11
- package/react/user-filter.tsx +1 -7
- package/svg/24/align-bottom-group.svg +1 -1
- package/svg/24/align-bottom-new.svg +1 -1
- package/svg/24/align-center-horizontal-new.svg +1 -1
- package/svg/24/align-center-vertical-new.svg +1 -1
- package/svg/24/align-left-new.svg +1 -1
- package/svg/24/align-middle.svg +1 -1
- package/svg/24/align-right-new.svg +1 -1
- package/svg/24/align-top-group.svg +1 -1
- package/svg/24/align-top-new.svg +1 -1
- package/svg/24/arrow-box-left.svg +2 -0
- package/svg/24/arrows-clockwise-rectangle-tilt-new.svg +1 -1
- package/svg/24/arrows-counterclockwise-rectangle-tilt.svg +2 -0
- package/svg/24/github.svg +2 -0
- package/svg/24/microphone-document.svg +2 -0
- package/svg/24/rectangles-squares.svg +1 -1
- package/svg/24/slide-format-new.svg +1 -1
- package/svg/24/user-filter-new.svg +1 -1
- package/svg/meta.json +53 -0
package/dist/module.js
CHANGED
|
@@ -340,7 +340,6 @@ const IconAlignBottomGroup = forwardRef(
|
|
|
340
340
|
stroke: "currentColor",
|
|
341
341
|
strokeLinejoin: "round",
|
|
342
342
|
strokeMiterlimit: 1.414,
|
|
343
|
-
strokeWidth: "var(--svg-stroke-width)",
|
|
344
343
|
d: "M3 20h18"
|
|
345
344
|
}
|
|
346
345
|
),
|
|
@@ -382,7 +381,32 @@ const IconAlignBottomNew = forwardRef(
|
|
|
382
381
|
fill: "none",
|
|
383
382
|
ref: forwardRef2
|
|
384
383
|
},
|
|
385
|
-
/* @__PURE__ */ jsx(
|
|
384
|
+
/* @__PURE__ */ jsx(
|
|
385
|
+
"path",
|
|
386
|
+
{
|
|
387
|
+
stroke: "currentColor",
|
|
388
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
389
|
+
d: "M21 21h-18"
|
|
390
|
+
}
|
|
391
|
+
),
|
|
392
|
+
/* @__PURE__ */ jsx(
|
|
393
|
+
"path",
|
|
394
|
+
{
|
|
395
|
+
stroke: "currentColor",
|
|
396
|
+
strokeLinejoin: "round",
|
|
397
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
398
|
+
d: "M11.9998 4v12"
|
|
399
|
+
}
|
|
400
|
+
),
|
|
401
|
+
/* @__PURE__ */ jsx(
|
|
402
|
+
"path",
|
|
403
|
+
{
|
|
404
|
+
stroke: "currentColor",
|
|
405
|
+
strokeLinejoin: "bevel",
|
|
406
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
407
|
+
d: "m17 12-5 5-5-5"
|
|
408
|
+
}
|
|
409
|
+
)
|
|
386
410
|
);
|
|
387
411
|
}
|
|
388
412
|
);
|
|
@@ -476,7 +500,6 @@ const IconAlignCenterHorizontalNew = forwardRef(
|
|
|
476
500
|
stroke: "currentColor",
|
|
477
501
|
strokeLinejoin: "round",
|
|
478
502
|
strokeMiterlimit: 1.414,
|
|
479
|
-
strokeWidth: "var(--svg-stroke-width)",
|
|
480
503
|
d: "M12 3v18"
|
|
481
504
|
}
|
|
482
505
|
)
|
|
@@ -568,7 +591,6 @@ const IconAlignCenterVerticalNew = forwardRef(
|
|
|
568
591
|
stroke: "currentColor",
|
|
569
592
|
strokeLinejoin: "round",
|
|
570
593
|
strokeMiterlimit: 1.414,
|
|
571
|
-
strokeWidth: "var(--svg-stroke-width)",
|
|
572
594
|
d: "M3 12h18"
|
|
573
595
|
}
|
|
574
596
|
),
|
|
@@ -580,38 +602,6 @@ const IconAlignCenterVerticalNew = forwardRef(
|
|
|
580
602
|
transform: "rotate(-90 7 20)"
|
|
581
603
|
}
|
|
582
604
|
),
|
|
583
|
-
/* @__PURE__ */ jsx(
|
|
584
|
-
"path",
|
|
585
|
-
{
|
|
586
|
-
fill: "currentColor",
|
|
587
|
-
d: "M7 20h16v3h-16z",
|
|
588
|
-
transform: "rotate(-90 7 20)"
|
|
589
|
-
}
|
|
590
|
-
),
|
|
591
|
-
/* @__PURE__ */ jsx(
|
|
592
|
-
"path",
|
|
593
|
-
{
|
|
594
|
-
fill: "currentColor",
|
|
595
|
-
d: "M7 20h16v3h-16z",
|
|
596
|
-
transform: "rotate(-90 7 20)"
|
|
597
|
-
}
|
|
598
|
-
),
|
|
599
|
-
/* @__PURE__ */ jsx(
|
|
600
|
-
"path",
|
|
601
|
-
{
|
|
602
|
-
fill: "currentColor",
|
|
603
|
-
d: "M14 18h12v3h-12z",
|
|
604
|
-
transform: "rotate(-90 14 18)"
|
|
605
|
-
}
|
|
606
|
-
),
|
|
607
|
-
/* @__PURE__ */ jsx(
|
|
608
|
-
"path",
|
|
609
|
-
{
|
|
610
|
-
fill: "currentColor",
|
|
611
|
-
d: "M14 18h12v3h-12z",
|
|
612
|
-
transform: "rotate(-90 14 18)"
|
|
613
|
-
}
|
|
614
|
-
),
|
|
615
605
|
/* @__PURE__ */ jsx(
|
|
616
606
|
"path",
|
|
617
607
|
{
|
|
@@ -708,7 +698,6 @@ const IconAlignLeftNew = forwardRef(
|
|
|
708
698
|
stroke: "currentColor",
|
|
709
699
|
strokeLinejoin: "round",
|
|
710
700
|
strokeMiterlimit: 1.414,
|
|
711
|
-
strokeWidth: "var(--svg-stroke-width)",
|
|
712
701
|
d: "M4 3v18"
|
|
713
702
|
}
|
|
714
703
|
),
|
|
@@ -801,7 +790,50 @@ const IconAlignMiddle = forwardRef(
|
|
|
801
790
|
fill: "none",
|
|
802
791
|
ref: forwardRef2
|
|
803
792
|
},
|
|
804
|
-
/* @__PURE__ */ jsx(
|
|
793
|
+
/* @__PURE__ */ jsx(
|
|
794
|
+
"path",
|
|
795
|
+
{
|
|
796
|
+
stroke: "currentColor",
|
|
797
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
798
|
+
d: "M3 12h18"
|
|
799
|
+
}
|
|
800
|
+
),
|
|
801
|
+
/* @__PURE__ */ jsx(
|
|
802
|
+
"path",
|
|
803
|
+
{
|
|
804
|
+
stroke: "currentColor",
|
|
805
|
+
strokeLinejoin: "round",
|
|
806
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
807
|
+
d: "M12.0002 22v-6"
|
|
808
|
+
}
|
|
809
|
+
),
|
|
810
|
+
/* @__PURE__ */ jsx(
|
|
811
|
+
"path",
|
|
812
|
+
{
|
|
813
|
+
stroke: "currentColor",
|
|
814
|
+
strokeLinejoin: "bevel",
|
|
815
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
816
|
+
d: "m8.5 18.5 3.5-3.5 3.5 3.5"
|
|
817
|
+
}
|
|
818
|
+
),
|
|
819
|
+
/* @__PURE__ */ jsx(
|
|
820
|
+
"path",
|
|
821
|
+
{
|
|
822
|
+
stroke: "currentColor",
|
|
823
|
+
strokeLinejoin: "round",
|
|
824
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
825
|
+
d: "M11.9998 2v6"
|
|
826
|
+
}
|
|
827
|
+
),
|
|
828
|
+
/* @__PURE__ */ jsx(
|
|
829
|
+
"path",
|
|
830
|
+
{
|
|
831
|
+
stroke: "currentColor",
|
|
832
|
+
strokeLinejoin: "bevel",
|
|
833
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
834
|
+
d: "m15.5 5.5-3.5 3.5-3.5-3.5"
|
|
835
|
+
}
|
|
836
|
+
)
|
|
805
837
|
);
|
|
806
838
|
}
|
|
807
839
|
);
|
|
@@ -826,7 +858,6 @@ const IconAlignRightNew = forwardRef(
|
|
|
826
858
|
stroke: "currentColor",
|
|
827
859
|
strokeLinejoin: "round",
|
|
828
860
|
strokeMiterlimit: 1.414,
|
|
829
|
-
strokeWidth: "var(--svg-stroke-width)",
|
|
830
861
|
d: "M20 3v18"
|
|
831
862
|
}
|
|
832
863
|
),
|
|
@@ -925,7 +956,6 @@ const IconAlignTopGroup = forwardRef(
|
|
|
925
956
|
stroke: "currentColor",
|
|
926
957
|
strokeLinejoin: "round",
|
|
927
958
|
strokeMiterlimit: 1.414,
|
|
928
|
-
strokeWidth: "var(--svg-stroke-width)",
|
|
929
959
|
d: "M3 4h18"
|
|
930
960
|
}
|
|
931
961
|
),
|
|
@@ -967,7 +997,32 @@ const IconAlignTopNew = forwardRef(
|
|
|
967
997
|
fill: "none",
|
|
968
998
|
ref: forwardRef2
|
|
969
999
|
},
|
|
970
|
-
/* @__PURE__ */ jsx(
|
|
1000
|
+
/* @__PURE__ */ jsx(
|
|
1001
|
+
"path",
|
|
1002
|
+
{
|
|
1003
|
+
stroke: "currentColor",
|
|
1004
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
1005
|
+
d: "M3 4h18"
|
|
1006
|
+
}
|
|
1007
|
+
),
|
|
1008
|
+
/* @__PURE__ */ jsx(
|
|
1009
|
+
"path",
|
|
1010
|
+
{
|
|
1011
|
+
stroke: "currentColor",
|
|
1012
|
+
strokeLinejoin: "round",
|
|
1013
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
1014
|
+
d: "M12.0002 21v-12"
|
|
1015
|
+
}
|
|
1016
|
+
),
|
|
1017
|
+
/* @__PURE__ */ jsx(
|
|
1018
|
+
"path",
|
|
1019
|
+
{
|
|
1020
|
+
stroke: "currentColor",
|
|
1021
|
+
strokeLinejoin: "bevel",
|
|
1022
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
1023
|
+
d: "m7 13 5-5 5 5"
|
|
1024
|
+
}
|
|
1025
|
+
)
|
|
971
1026
|
);
|
|
972
1027
|
}
|
|
973
1028
|
);
|
|
@@ -1584,6 +1639,51 @@ const IconArrowBendUpRight = forwardRef(
|
|
|
1584
1639
|
);
|
|
1585
1640
|
IconArrowBendUpRight[iconSymbol] = true;
|
|
1586
1641
|
|
|
1642
|
+
const IconArrowBoxLeft = forwardRef(
|
|
1643
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
1644
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
1645
|
+
return createElement(
|
|
1646
|
+
StyledIcon,
|
|
1647
|
+
{
|
|
1648
|
+
...props,
|
|
1649
|
+
weight,
|
|
1650
|
+
debug,
|
|
1651
|
+
"aria-hidden": true,
|
|
1652
|
+
size,
|
|
1653
|
+
viewBox: "0 0 24 24",
|
|
1654
|
+
fill: "none",
|
|
1655
|
+
ref: forwardRef2
|
|
1656
|
+
},
|
|
1657
|
+
/* @__PURE__ */ jsx(
|
|
1658
|
+
"path",
|
|
1659
|
+
{
|
|
1660
|
+
stroke: "currentColor",
|
|
1661
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
1662
|
+
d: "m13 13-5.3333-5.3333-4.6667-4.6667"
|
|
1663
|
+
}
|
|
1664
|
+
),
|
|
1665
|
+
/* @__PURE__ */ jsx(
|
|
1666
|
+
"path",
|
|
1667
|
+
{
|
|
1668
|
+
stroke: "currentColor",
|
|
1669
|
+
strokeLinejoin: "bevel",
|
|
1670
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
1671
|
+
d: "M3 11v-8h8"
|
|
1672
|
+
}
|
|
1673
|
+
),
|
|
1674
|
+
/* @__PURE__ */ jsx(
|
|
1675
|
+
"path",
|
|
1676
|
+
{
|
|
1677
|
+
stroke: "currentColor",
|
|
1678
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
1679
|
+
d: "M6 14v5c0 1.1046.8954 2 2 2h11c1.1046 0 2-.8954 2-2v-11c0-1.1046-.8954-2-2-2h-5"
|
|
1680
|
+
}
|
|
1681
|
+
)
|
|
1682
|
+
);
|
|
1683
|
+
}
|
|
1684
|
+
);
|
|
1685
|
+
IconArrowBoxLeft[iconSymbol] = true;
|
|
1686
|
+
|
|
1587
1687
|
const IconArrowBoxOutNew = forwardRef(
|
|
1588
1688
|
(props, forwardRef2) => {
|
|
1589
1689
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -3181,8 +3281,10 @@ const IconArrowsClockwiseRectangleTiltNew = forwardRef((props, forwardRef2) => {
|
|
|
3181
3281
|
/* @__PURE__ */ jsx(
|
|
3182
3282
|
"path",
|
|
3183
3283
|
{
|
|
3184
|
-
|
|
3185
|
-
|
|
3284
|
+
stroke: "currentColor",
|
|
3285
|
+
strokeLinejoin: "bevel",
|
|
3286
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
3287
|
+
d: "m7.0353 5.0354 2.2065-2.2065c1.5621-1.5621 4.0948-1.5621 5.6569 0l2.2065 2.2065m.8156-4.0357v4.9215h-4.9218m.4159 14.7357 3.7075-3.7075c.781-.7811.781-2.0474 0-2.8285l-3.7075-3.7074c-.781-.781-2.0474-.781-2.8284 0l-3.7075 3.7074c-.781.7811-.781 2.0474 0 2.8285l3.7075 3.7075c.781.781 2.0474.781 2.8284 0Z"
|
|
3186
3288
|
}
|
|
3187
3289
|
)
|
|
3188
3290
|
);
|
|
@@ -3457,6 +3559,33 @@ const IconArrowsClockwiseY = forwardRef(
|
|
|
3457
3559
|
);
|
|
3458
3560
|
IconArrowsClockwiseY[iconSymbol] = true;
|
|
3459
3561
|
|
|
3562
|
+
const IconArrowsCounterclockwiseRectangleTilt = forwardRef(({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
3563
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
3564
|
+
return createElement(
|
|
3565
|
+
StyledIcon,
|
|
3566
|
+
{
|
|
3567
|
+
...props,
|
|
3568
|
+
weight,
|
|
3569
|
+
debug,
|
|
3570
|
+
"aria-hidden": true,
|
|
3571
|
+
size,
|
|
3572
|
+
viewBox: "0 0 24 24",
|
|
3573
|
+
fill: "none",
|
|
3574
|
+
ref: forwardRef2
|
|
3575
|
+
},
|
|
3576
|
+
/* @__PURE__ */ jsx(
|
|
3577
|
+
"path",
|
|
3578
|
+
{
|
|
3579
|
+
stroke: "currentColor",
|
|
3580
|
+
strokeLinejoin: "bevel",
|
|
3581
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
3582
|
+
d: "m16.9649 5.0354-2.2065-2.2065c-1.5621-1.5621-4.0947-1.5621-5.6568 0l-2.2065 2.2065m-.8157-4.0357v4.9215h4.9219m-.416 14.7357-3.7075-3.7075c-.781-.7811-.781-2.0474 0-2.8285l3.7075-3.7074c.7811-.781 2.0474-.781 2.8285 0l3.7074 3.7074c.7811.7811.7811 2.0474 0 2.8285l-3.7074 3.7075c-.7811.781-2.0474.781-2.8285 0Z"
|
|
3583
|
+
}
|
|
3584
|
+
)
|
|
3585
|
+
);
|
|
3586
|
+
});
|
|
3587
|
+
IconArrowsCounterclockwiseRectangleTilt[iconSymbol] = true;
|
|
3588
|
+
|
|
3460
3589
|
const IconArrowsDownUpNew = forwardRef(
|
|
3461
3590
|
(props, forwardRef2) => {
|
|
3462
3591
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -16266,6 +16395,50 @@ const IconGift = forwardRef(
|
|
|
16266
16395
|
);
|
|
16267
16396
|
IconGift[iconSymbol] = true;
|
|
16268
16397
|
|
|
16398
|
+
const IconGithub = forwardRef(
|
|
16399
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
16400
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
16401
|
+
return createElement(
|
|
16402
|
+
StyledIcon,
|
|
16403
|
+
{
|
|
16404
|
+
...props,
|
|
16405
|
+
weight,
|
|
16406
|
+
debug,
|
|
16407
|
+
"aria-hidden": true,
|
|
16408
|
+
size,
|
|
16409
|
+
viewBox: "0 0 24 24",
|
|
16410
|
+
fill: "none",
|
|
16411
|
+
ref: forwardRef2
|
|
16412
|
+
},
|
|
16413
|
+
/* @__PURE__ */ jsx(
|
|
16414
|
+
"path",
|
|
16415
|
+
{
|
|
16416
|
+
stroke: "currentColor",
|
|
16417
|
+
strokeLinejoin: "round",
|
|
16418
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
16419
|
+
d: "M6.9995 10h.0007"
|
|
16420
|
+
}
|
|
16421
|
+
),
|
|
16422
|
+
/* @__PURE__ */ jsx(
|
|
16423
|
+
"path",
|
|
16424
|
+
{
|
|
16425
|
+
stroke: "currentColor",
|
|
16426
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
16427
|
+
d: "M9 10"
|
|
16428
|
+
}
|
|
16429
|
+
),
|
|
16430
|
+
/* @__PURE__ */ jsx(
|
|
16431
|
+
"path",
|
|
16432
|
+
{
|
|
16433
|
+
fill: "currentColor",
|
|
16434
|
+
d: "M12.0001 2c-5.5222 0-10.0001 4.5904-10.0001 10.2532 0 4.5301 2.8653 8.3734 6.8387 9.7292.4997.0949.6832-.2224.6832-.4933 0-.2445-.0092-1.0521-.0136-1.9089-2.782.6203-3.369-1.2097-3.369-1.2097-.455-1.1852-1.1104-1.5003-1.1104-1.5003-.9073-.6363.0684-.6233.0684-.6233 1.0042.0724 1.533 1.0566 1.533 1.0566.8919 1.5675 2.3393 1.1143 2.91.8524.0898-.6627.349-1.115.6349-1.3711-2.2212-.2592-4.556-1.1384-4.556-5.0671 0-1.1195.3906-2.0341 1.0303-2.7521-.1039-.2583-.4461-1.3011.0968-2.7134 0 0 .8398-.2756 2.7508 1.051.7977-.2272 1.6531-.3411 2.503-.345.8498.0039 1.706.1178 2.5051.345 1.9087-1.3266 2.7473-1.051 2.7473-1.051.5443 1.4123.2019 2.4551.098 2.7134.6412.718 1.0292 1.6326 1.0292 2.7521 0 3.938-2.3394 4.8051-4.5662 5.059.3587.3182.6783.9421.6783 1.8987 0 1.3719-.0116 2.476-.0116 2.8137 0 .2729.18.5926.6869.4919 3.9712-1.3573 6.8329-5.1992 6.8329-9.7278 0-5.6628-4.4773-10.2532-9.9999-10.2532Zm-6.2547 14.6059c-.022.0509-.1002.0662-.1714.0312-.0726-.0334-.1133-.1029-.0898-.154.0215-.0525.0999-.0671.1722-.0319.0727.0334.1141.1036.089.1547Zm.4919.45c-.0477.0453-.141.0243-.2042-.0474-.0654-.0715-.0777-.1671-.0293-.2131.0491-.0453.1396-.0241.2051.0474.0654.0723.0782.1672.0284.2131Zm.3374.5758c-.0613.0436-.1615.0027-.2234-.0885-.0613-.0912-.0613-.2005.0013-.2443.0621-.0438.1608-.0044.2236.0861.0611.0927.0611.202-.0015.2467Zm.5707.6668c-.0548.062-.1715.0453-.257-.0392-.0874-.0827-.1118-.2-.0568-.262.0555-.0621.1729-.0447.259.0392.0868.0825.1133.2007.0548.262Zm.7376.2251c-.0242.0803-.1366.1168-.2499.0827-.113-.0351-.1871-.1292-.1643-.2104.0236-.0808.1365-.1188.2506-.0823.113.035.1871.1283.1636.21Zm.8394.0955c.0028.0846-.0932.1547-.2121.1562-.1196.0027-.2163-.0657-.2176-.1489 0-.0854.0939-.1548.2134-.1569.119-.0024.2163.0656.2163.1496Zm.8246-.0324c.0143.0825-.0684.1672-.1864.1898-.1161.0217-.2236-.0292-.2383-.111-.0144-.0846.0697-.1693.1856-.1912.1183-.0211.224.0285.2391.1124Z"
|
|
16435
|
+
}
|
|
16436
|
+
)
|
|
16437
|
+
);
|
|
16438
|
+
}
|
|
16439
|
+
);
|
|
16440
|
+
IconGithub[iconSymbol] = true;
|
|
16441
|
+
|
|
16269
16442
|
const IconGlobeNew = forwardRef(
|
|
16270
16443
|
(props, forwardRef2) => {
|
|
16271
16444
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -20806,6 +20979,53 @@ const IconMermaid = forwardRef(
|
|
|
20806
20979
|
);
|
|
20807
20980
|
IconMermaid[iconSymbol] = true;
|
|
20808
20981
|
|
|
20982
|
+
const IconMicrophoneDocument = forwardRef(
|
|
20983
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
20984
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
20985
|
+
return createElement(
|
|
20986
|
+
StyledIcon,
|
|
20987
|
+
{
|
|
20988
|
+
...props,
|
|
20989
|
+
weight,
|
|
20990
|
+
debug,
|
|
20991
|
+
"aria-hidden": true,
|
|
20992
|
+
size,
|
|
20993
|
+
viewBox: "0 0 24 24",
|
|
20994
|
+
fill: "none",
|
|
20995
|
+
ref: forwardRef2
|
|
20996
|
+
},
|
|
20997
|
+
/* @__PURE__ */ jsx("path", { fill: "none", d: "M0 0h24v24h-24z" }),
|
|
20998
|
+
/* @__PURE__ */ jsx(
|
|
20999
|
+
"path",
|
|
21000
|
+
{
|
|
21001
|
+
stroke: "currentColor",
|
|
21002
|
+
strokeLinejoin: "round",
|
|
21003
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
21004
|
+
d: "M12 4h-7c-1.1046 0-2 .8954-2 2v13c0 1.1046.8954 2 2 2h13c1.1046 0 2-.8954 2-2v-4"
|
|
21005
|
+
}
|
|
21006
|
+
),
|
|
21007
|
+
/* @__PURE__ */ jsx(
|
|
21008
|
+
"path",
|
|
21009
|
+
{
|
|
21010
|
+
stroke: "currentColor",
|
|
21011
|
+
strokeLinecap: "round",
|
|
21012
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
21013
|
+
d: "M18 3v4"
|
|
21014
|
+
}
|
|
21015
|
+
),
|
|
21016
|
+
/* @__PURE__ */ jsx(
|
|
21017
|
+
"path",
|
|
21018
|
+
{
|
|
21019
|
+
stroke: "currentColor",
|
|
21020
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
21021
|
+
d: "M6 13h6M6 17h9M15 6v.8485c0 1.6401 1.3431 2.9697 3 2.9697m3-3.8182v.8485c0 1.6401-1.3431 2.9697-3 2.9697m0 0v3.1818"
|
|
21022
|
+
}
|
|
21023
|
+
)
|
|
21024
|
+
);
|
|
21025
|
+
}
|
|
21026
|
+
);
|
|
21027
|
+
IconMicrophoneDocument[iconSymbol] = true;
|
|
21028
|
+
|
|
20809
21029
|
const IconMicrophoneSlashNew = forwardRef(
|
|
20810
21030
|
(props, forwardRef2) => {
|
|
20811
21031
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -28577,7 +28797,7 @@ const IconRectanglesSquares = forwardRef(
|
|
|
28577
28797
|
stroke: "currentColor",
|
|
28578
28798
|
strokeLinejoin: "bevel",
|
|
28579
28799
|
strokeWidth: "var(--svg-stroke-width)",
|
|
28580
|
-
d: "M2
|
|
28800
|
+
d: "M2 20v-6h10v6h-10ZM2 10v-6h6v6h-6ZM12 10v-6h10v6h-10ZM16 20v-6h6v6h-6Z"
|
|
28581
28801
|
}
|
|
28582
28802
|
)
|
|
28583
28803
|
);
|
|
@@ -31218,19 +31438,14 @@ const IconSlideFormatNew = forwardRef(
|
|
|
31218
31438
|
ref: forwardRef2
|
|
31219
31439
|
},
|
|
31220
31440
|
/* @__PURE__ */ jsx(
|
|
31221
|
-
"
|
|
31441
|
+
"path",
|
|
31222
31442
|
{
|
|
31223
|
-
|
|
31224
|
-
|
|
31225
|
-
|
|
31226
|
-
|
|
31227
|
-
stroke: "currentColor",
|
|
31228
|
-
strokeLinecap: "round",
|
|
31229
|
-
strokeWidth: "var(--svg-stroke-width)",
|
|
31230
|
-
rx: 2
|
|
31443
|
+
fill: "currentColor",
|
|
31444
|
+
fillRule: "evenodd",
|
|
31445
|
+
d: "M11 3v-2h2v2h6c1.6569 0 3 1.3431 3 3v10c0 1.6569-1.3431 3-3 3h-2.5836l1.25 3h-2.1667l-1.25-3h-4.5l-1.25 3h-2.1667l1.25-3h-2.583c-1.6568 0-3-1.3431-3-3v-10c0-1.6569 1.3432-3 3-3h6Zm-6 2c-.5523 0-1 .4477-1 1v10c0 .5523.4477 1 1 1h14c.5523 0 1-.4477 1-1v-10c0-.5523-.4477-1-1-1h-14Zm8 5h-2v4h2v-4Zm2 4v-6h2v6h-2Zm-8-2v2h2v-2h-2Z",
|
|
31446
|
+
clipRule: "evenodd"
|
|
31231
31447
|
}
|
|
31232
|
-
)
|
|
31233
|
-
/* @__PURE__ */ jsx("path", { fill: "currentColor", d: "m10 8.5 5 3v1l-5 3-1-.5v-6l1-.5Z" })
|
|
31448
|
+
)
|
|
31234
31449
|
);
|
|
31235
31450
|
}
|
|
31236
31451
|
);
|
|
@@ -39970,16 +40185,7 @@ const IconUserFilterNew = forwardRef(
|
|
|
39970
40185
|
"path",
|
|
39971
40186
|
{
|
|
39972
40187
|
fill: "currentColor",
|
|
39973
|
-
d: "
|
|
39974
|
-
}
|
|
39975
|
-
),
|
|
39976
|
-
/* @__PURE__ */ jsx(
|
|
39977
|
-
"path",
|
|
39978
|
-
{
|
|
39979
|
-
fill: "currentColor",
|
|
39980
|
-
fillRule: "evenodd",
|
|
39981
|
-
d: "M17.6667 12.9995h-1.3334c0 1.841-1.4924 3.3333-3.3333 3.3333v1.3334c1.8409 0 3.3333 1.4923 3.3333 3.3333h1.3334c0-1.841 1.4924-3.3333 3.3333-3.3333v-1.3334c-1.8409 0-3.3333-1.4923-3.3333-3.3333Z",
|
|
39982
|
-
clipRule: "evenodd"
|
|
40188
|
+
d: "m10.75 16 .7703.6376-.7703-.6376Zm-1.75 4-.7071-.7071.4524 1.6741.2547-.967Zm5-.5-.6376-.7703.6376.7703Zm-1.1875-4.5625.0458.999.4204-.0193.2801-.3141-.7463-.6656Zm2.25 2.25-.6656-.7463-.3175.2832-.0162.4251.9993.038Zm-5.0828-1.8251c-.6416.775-.741 1.7341-.8518 2.2722-.1209.587-.2806 1.1039-.835 1.6583l1.4142 1.4142c.9456-.9456 1.2207-1.8969 1.3797-2.669.1691-.821.1947-1.1119.4335-1.4005l-1.5406-1.2752Zm-.9797 4.6376c-.2547.967-.2545.9671-.2542.9671l.0006.0002.0014.0004.0038.001.0112.0028.0366.0092c.0305.0075.0732.0177.1268.0298.1072.0242.2585.0562.444.0895.3693.0663.8836.1397 1.4599.1659 1.089.0495 2.6708-.0546 3.8075-.9956l-1.2752-1.5406c-.5286.4375-1.4468.5834-2.4415.5383-.4655-.0212-.889-.0812-1.197-.1365a8.2226 8.2226 0 0 1-.357-.0719 4.9088 4.9088 0 0 1-.0905-.0212l-.02-.005a.038.038 0 0 1-.0031-.0008h.0001l.0005.0002.0004.0001c.0002 0 .0004.0001-.2543.9671Zm3.8125-5.0625c-.0458-.999-.0462-.9989-.0466-.9989h-.0008l-.0017.0001-.0038.0002-.0089.0005a2.5302 2.5302 0 0 0-.0916.0074 3.4152 3.4152 0 0 0-.2133.0284 4.2315 4.2315 0 0 0-.674.1694c-.5303.1803-1.2247.5323-1.7921 1.2178l1.5406 1.2752c.2655-.3206.6023-.4999.895-.5993a2.2352 2.2352 0 0 1 .3536-.0894 1.4419 1.4419 0 0 1 .0881-.0119l.0128-.0012a.0235.0235 0 0 1-.0026.0002l-.0036.0002-.0025.0001-.0013.0001h-.0008c-.0004 0-.0007.0001-.0465-.9989Zm1.8251 5.3328c.7164-.5929 1.061-1.3828 1.2301-1.9559a5.1554 5.1554 0 0 0 .1608-.7456 4.3002 4.3002 0 0 0 .0262-.2331 3.169 3.169 0 0 0 .0064-.0954l.0004-.0085.0002-.0034v-.0022c.0001-.0003.0001-.0007-.9992-.0387s-.9993-.0384-.9993-.0387l.0001-.0006v-.0011l.0001-.0018.0001-.0021-.0001.0016a2.3895 2.3895 0 0 1-.016.1498 3.1508 3.1508 0 0 1-.098.4539c-.1106.3749-.2972.7413-.587.9812l1.2752 1.5406Zm2.2066-11.3556-4.778 5.3572 1.4926 1.3312 4.778-5.3572-1.4926-1.3312Zm-1.1161 9.0191 5.3572-4.778-1.3312-1.4926-5.3572 4.778 1.3312 1.4926Zm4.0648-7.7267c.4081.4082.3882 1.0752-.0388 1.4561l1.3312 1.4926c1.2886-1.1493 1.3392-3.1455.1218-4.363l-1.4142 1.4143Zm1.4142-1.4142c-1.2174-1.2174-3.2136-1.1668-4.3629.1218l1.4926 1.3312c.3809-.427 1.0479-.447 1.4561-.0388l1.4142-1.4142ZM13.5 7.5c0-2.4853-2.0147-4.5-4.5-4.5s-4.5 2.0147-4.5 4.5 2.0147 4.5 4.5 4.5 4.5-2.0147 4.5-4.5Zm-4.5-2.5c1.3807 0 2.5 1.1193 2.5 2.5s-1.1193 2.5-2.5 2.5-2.5-1.1193-2.5-2.5 1.1193-2.5 2.5-2.5ZM9 13c-3.636 0-6.7306 2.7552-7.0924 6.3732l-.1527 1.5273 1.99.199.1528-1.5273c.2596-2.5956 2.4938-4.5722 5.1023-4.5722v-2Z"
|
|
39983
40189
|
}
|
|
39984
40190
|
)
|
|
39985
40191
|
);
|
|
@@ -41672,5 +41878,5 @@ const IconWifi = forwardRef(
|
|
|
41672
41878
|
);
|
|
41673
41879
|
IconWifi[iconSymbol] = true;
|
|
41674
41880
|
|
|
41675
|
-
export { IconActivity, IconAddLineBottom, IconAddLineRight, IconAiText, IconAlignBottom, IconAlignBottomGroup, IconAlignCenterHorizontal, IconAlignCenterVertical, IconAlignLeft, IconAlignMiddle, IconAlignRight, IconAlignTop, IconAlignTopGroup, IconAlignmentScale, IconAltText, IconAltTextUnderline, IconArrowArcLeft, IconArrowArcRight, IconArrowBendUpLeft, IconArrowBendUpRight, IconArrowBoxOut, IconArrowClockwiseDownRight, IconArrowClockwiseUpLeft, IconArrowCounterClockwiseDownLeft, IconArrowCounterClockwiseUpRight, IconArrowCurvesBottomRight, IconArrowDown, IconArrowDownLeft, IconArrowDownRight, IconArrowElbowDownRight, IconArrowFatLeft, IconArrowFatLeftRight, IconArrowFatRight, IconArrowFatUpRight, IconArrowLeft, IconArrowLeftRightDotted, IconArrowRight, IconArrowUp, IconArrowUpCircle, IconArrowUpLeft, IconArrowUpRight, IconArrowsClockwiseRectangleTilt, IconArrowsClockwiseX, IconArrowsClockwiseY, IconArrowsDownUp, IconArrowsHorizontalLinesTopBottom, IconArrowsHorizontalLinesTopBottomIn, IconArrowsInSimple, IconArrowsOutCardinal, IconArrowsOutLinesHorizontal, IconArrowsOutSimple, IconArrowsSquareCounterClockwiseY, IconArrowsTimeBackward, IconArrowsTimeForward, IconArticle, IconArticleEmpty, IconAt, IconAttachment, IconBadge, IconBarrel, IconBell, IconBellSlash, IconBellTilt, IconBoard, IconBookOpenInfo, IconBookmark, IconBoxCaptions, IconBracketCurlyLeft, IconBracketCurlyRight, IconBracketsAngleSlash, IconBracketsCurlyCirclesThree, IconBrowser, IconBrush, IconCalendarBlank, IconCalendarEnd, IconCalendarStart, IconCamera, IconCaptionAlong, IconCaptionHorizontal, IconCard, IconCardCircles, IconCardNumberThree, IconCardsPoker, IconChartBarY, IconChartBarYSimple, IconChat, IconChatCheck, IconChatDashesLinesTwo, IconChatLinesCross, IconChatLinesDot, IconChatLinesEyeOpen, IconChatLinesTwo, IconChatLinesTwoStack, IconChatPlus, IconChatTextArrow, IconChatTwo, IconCheckMark, IconCheckboardSquareCentered, IconChevronDown, IconChevronDownDouble, IconChevronLeft, IconChevronLeftDouble, IconChevronRight, IconChevronRightDouble, IconChevronRightSmall, IconChevronUp, IconChevronUpDouble, IconChevronUpDown, IconChevronUpDownLine, IconCircle, IconCircleCorners, IconCircleMotionX, IconCircleNotch, IconCircleSlash, IconCirclesConnected, IconClock, IconClockCounterClockwise, IconClockCounterClockwiseSimple, IconClockOvertime, IconCloud, IconCluster, IconClusterAi, IconClusterColor, IconClusterSentiment, IconClustered, IconCog, IconCoins, IconCoinsChecked, IconCoinsSlash, IconColumnsFormat, IconColumnsThree, IconCommentGroup, IconCompass, IconConeSerpentine, IconConnectionLineElbows, IconConnectionLineStraight, IconCornersThreeEyeOpen, IconCounter, IconCreditCard, IconCrop, IconCross, IconCrossCircle, IconCrossFat, IconCrossSquare, IconCube, IconCursor, IconCursorFilled, IconCursorLines, IconCursorText, IconCursorTextLines, IconCurveSquareCircleArrow, IconDashLeftDownSquareDashRightUp, IconDashLeftUpSquareDashDownRight, IconDashSquareDashHorizontal, IconDashSquareDashVertical, IconDiagramCardLarge1, IconDiagramCardLarge2, IconDiagramCardLarge3, IconDiagramCardLarge4, IconDiagramCardMagnifyingGlass, IconDiagramCardSmall1, IconDiagramCardSmall2, IconDiagramCardSmall3, IconDiagramCardTeam, IconDiagramCardUser, IconDiagramming, IconDiagrammingFormat, IconDistributeHorizontal, IconDistributeVertical, IconDocFormat, IconDollarSignCurrency, IconDotVoting, IconDotsNine, IconDotsSixHorizontal, IconDotsSixVertical, IconDotsThree, IconDotsThreeVertical, IconDotsTwo, IconDownload, IconEnvelope, IconEraser, IconExclamationMarkOctagon, IconExclamationPointCircle, IconExport, IconExternalFormat, IconEyeClosed, IconEyeClosedDotsFourFrameBroken, IconEyeOpen, IconEyeOpenLineFrameBroken, IconEyeOpenSlash, IconEyedropper, IconFactory, IconFactoryHouse, IconFileSpreadsheet, IconFlag, IconFlipCard, IconFolder, IconFrame, IconFrameLinesTwo, IconFramePlay, IconFramePlus, IconFunnel, IconGauge, IconGavel, IconGift, IconGlobe, IconGoogleDrive, IconGraduationCap, IconGrid, IconGridFour, IconGridSix, IconHand, IconHandFilled, IconHandPointing, IconHandRaisedFilled, IconHeadphones, IconHeadsetPerson, IconHeart, IconHeartFilled, IconHexagon, IconHighlighter, IconHighlighterColorSelection, IconHighlighterUnderline, IconHouse, IconImage, IconIndentLeft, IconIndentRight, IconInformationMarkCircle, IconInsights, IconKanban, IconKey, IconKeycap, IconLaptop, IconLasso, IconLayout, IconLifesaver, IconLightbox, IconLightbulb, IconLightning, IconLineCurved, IconLineDashed, IconLineDiagonal, IconLineDotted, IconLineHorizontal, IconLineOrthogonal, IconLineStraight, IconLineTwoDiagonalTopRightDouble, IconLinesThreeHorizontal, IconLinesThreeHorizontalLineVerticalCenter, IconLinesThreeVertical, IconLinesTopLeftColumnsTwo, IconLink, IconLinkPlus, IconListBullets, IconListNumbers, IconLockClosed, IconLockOpen, IconLogin, IconLogout, IconMagnet, IconMagnifyingGlass, IconMagnifyingGlassLightning, IconMagnifyingGlassPlus, IconMap, IconMegaphone, IconMermaid, IconMicrophone, IconMicrophoneSlash, IconMinus, IconMobile, IconMonitor, IconMonitorArrow, IconMonitorArrowUp, IconMonitorEyeClosed, IconMonitorEyeOpen, IconMonitorPause, IconMonitorPlay, IconMonitorStop, IconMoon, IconMouse, IconMusicNote, IconNavigationArrowLines, IconNavigationUpLeftFilled, IconNavigationUpLeftSlash, IconNavigationUpRight, IconNext, IconNodeConnectedDot, IconNodeLinesCurved, IconNodeLinesHorizontal, IconNodeLinesVertical, IconNodePlus, IconNodesConnected, IconNodesConnectionsThree, IconNoteMagnifyingGlass, IconNotepad, IconNumber, IconOctagon, IconOffice, IconOrgChart, IconOrientationHorizontal, IconOrientationVertical, IconPaintBucket, IconPalette, IconPaperPlaneFilledRight, IconPaperPlaneTilt, IconParallelogram, IconPause, IconPauseCircle, IconPdf, IconPen, IconPenColorSelection, IconPenTip, IconPenUnderline, IconPentagon, IconPeopleList, IconPersonInCircle, IconPhoneFilled, IconPlaceholder, IconPlanet, IconPlay, IconPlayCircle, IconPlaybackSpeedCircle, IconPlug, IconPlus, IconPlusBox, IconPlusSquare, IconPlusText, IconPolling, IconPresentationArrow, IconPresentationEyeOpen, IconPresentationLine, IconPresentationLinesTwo, IconPresentationLink, IconPresentationNumberOne, IconPresentationPlay, IconPresentationPlus, IconPrevious, IconProhibit, IconProtoButton, IconProtoCheckbox, IconProtoDropdown, IconProtoInput, IconProtoNumber, IconProtoRadio, IconProtoSlider, IconPrototypeFormat, IconPushPin, IconPushPinFilled, IconQuestionMark, IconQuestionMarkCircle, IconQuotes, IconRaisedHand, IconRatio169, IconRatio43, IconRatioSquare, IconRectangleArrowUpCenter, IconRectangleDashLines, IconRectangleDotLarge, IconRectangleDotLinePen, IconRectangleDotMedium, IconRectangleDotSmall, IconRectangleFrame2Lines, IconRectangleLine, IconRectanglePlayStack, IconRectanglePortrait, IconRectanglePortraitDash, IconRectanglePortraitDashSquareTopCenter, IconRectanglePortraitDashSquareTopLeft, IconRectanglePortraitFilled, IconRectanglePortraitSquareTopLeft, IconRectangleTick, IconRectangleTriangleBottomCenter, IconRectanglesSquares, IconRectanglesThreeAligned, IconRectanglesThreeFree, IconRectanglesThreeOverlap, IconRectanglesTwoLine, IconRectanglesTwoLinesFour, IconRectanglesTwoMinus, IconRectanglesTwoPlus, IconRectanglesTwoUser, IconRhombus, IconRocket, IconRss, IconRssRectangle, IconScissors, IconScrollbarXy, IconSelect, IconSentiment, IconShadow, IconShapes, IconShapesLines, IconShapesLinesStacked, IconShieldCheck, IconShieldLock, IconShieldLockFilled, IconShuffle, IconSidebarClosed, IconSidebarGlobalClosed, IconSidebarGlobalOpen, IconSidebarOpen, IconSingleSparksFilled, IconSlideFormat, IconSlidersX, IconSlidersY, IconSmiley, IconSmileyChat, IconSmileyPlus, IconSmileySticker, IconSocialAdo, IconSocialAsana, IconSocialDrawio, IconSocialFacebook, IconSocialInstagram, IconSocialJira, IconSocialLinkedin, IconSocialLooker, IconSocialMonday, IconSocialSlack, IconSocialTwitter, IconSocialX, IconSocialYoutube, IconSortAscending, IconSortDescending, IconSparks, IconSparksFilled, IconSpeakerCross, IconSpeakerHigh, IconSpinner, IconSplitVertical, IconSquare, IconSquareArrowIn, IconSquareBracketsAngleSlash, IconSquareCirclesTwo, IconSquareFrame2LinesCircle, IconSquareLineSquareDashed, IconSquareRounded, IconSquareStarScribble, IconSquareTriangleCirclePlus, IconSquaresColumn, IconSquaresFour, IconSquaresGroup, IconSquaresMerge, IconSquaresRow, IconSquaresThree, IconSquaresTwoOverlap, IconSquaresUngroup, IconSquaresUnmerge, IconStack, IconStackedCircles, IconStar, IconStarFilled, IconStarHalf, IconStickyCorners, IconStickyEyeClosed, IconStickyEyeOpen, IconStickyNote, IconStickyNoteStack, IconStickyNoteWide, IconStickyNotesTwo, IconStopCircle, IconStoryPoints, IconStroke1, IconStroke2, IconStroke3, IconStroke4, IconStroke5, IconStroke6, IconSwitch, IconTable, IconTableFormat, IconTablet, IconTag, IconTasks, IconTextAColorSelection, IconTextAHorizontal, IconTextAUnderline, IconTextAVertical, IconTextAa, IconTextAlignCenter, IconTextAlignLeft, IconTextAlignRight, IconTextBBold, IconTextBBoldItalicUnderlined, IconTextCursorEyeOpen, IconTextHOne, IconTextHThree, IconTextHTwo, IconTextIItalic, IconTextIndent, IconTextLineHeight, IconTextLinesThree, IconTextPosition, IconTextSStrikethrough, IconTextStyles, IconTextT, IconTextUUnderlined, IconThumbsUp, IconTickCircle, IconTicket, IconTimelineFormat, IconTimer, IconToolbar, IconTooltip, IconTrackpad, IconTrapeze, IconTrash, IconTrashSimple, IconTriangle, IconTriangleSquareCircle, IconTrident, IconTrophy, IconTshirt, IconUser, IconUserAdd, IconUserArrowRightUp, IconUserBackgroundBlur, IconUserCog, IconUserCogPlus, IconUserEyeOpen, IconUserFilter, IconUserLoad, IconUserNumberThree, IconUserPenDashesBottom, IconUserPenLineBottom, IconUserTickDown, IconUsers, IconUsersThree, IconVideoCamera, IconVideoCameraSimple, IconVideoCameraSimpleError, IconVideoCameraSimpleSlash, IconViewCenter, IconViewSideLeft, IconWallet, IconWand, IconWarning, IconWifi, IconWifiExclamation };
|
|
41881
|
+
export { IconActivity, IconAddLineBottom, IconAddLineRight, IconAiText, IconAlignBottom, IconAlignBottomGroup, IconAlignCenterHorizontal, IconAlignCenterVertical, IconAlignLeft, IconAlignMiddle, IconAlignRight, IconAlignTop, IconAlignTopGroup, IconAlignmentScale, IconAltText, IconAltTextUnderline, IconArrowArcLeft, IconArrowArcRight, IconArrowBendUpLeft, IconArrowBendUpRight, IconArrowBoxLeft, IconArrowBoxOut, IconArrowClockwiseDownRight, IconArrowClockwiseUpLeft, IconArrowCounterClockwiseDownLeft, IconArrowCounterClockwiseUpRight, IconArrowCurvesBottomRight, IconArrowDown, IconArrowDownLeft, IconArrowDownRight, IconArrowElbowDownRight, IconArrowFatLeft, IconArrowFatLeftRight, IconArrowFatRight, IconArrowFatUpRight, IconArrowLeft, IconArrowLeftRightDotted, IconArrowRight, IconArrowUp, IconArrowUpCircle, IconArrowUpLeft, IconArrowUpRight, IconArrowsClockwiseRectangleTilt, IconArrowsClockwiseX, IconArrowsClockwiseY, IconArrowsCounterclockwiseRectangleTilt, IconArrowsDownUp, IconArrowsHorizontalLinesTopBottom, IconArrowsHorizontalLinesTopBottomIn, IconArrowsInSimple, IconArrowsOutCardinal, IconArrowsOutLinesHorizontal, IconArrowsOutSimple, IconArrowsSquareCounterClockwiseY, IconArrowsTimeBackward, IconArrowsTimeForward, IconArticle, IconArticleEmpty, IconAt, IconAttachment, IconBadge, IconBarrel, IconBell, IconBellSlash, IconBellTilt, IconBoard, IconBookOpenInfo, IconBookmark, IconBoxCaptions, IconBracketCurlyLeft, IconBracketCurlyRight, IconBracketsAngleSlash, IconBracketsCurlyCirclesThree, IconBrowser, IconBrush, IconCalendarBlank, IconCalendarEnd, IconCalendarStart, IconCamera, IconCaptionAlong, IconCaptionHorizontal, IconCard, IconCardCircles, IconCardNumberThree, IconCardsPoker, IconChartBarY, IconChartBarYSimple, IconChat, IconChatCheck, IconChatDashesLinesTwo, IconChatLinesCross, IconChatLinesDot, IconChatLinesEyeOpen, IconChatLinesTwo, IconChatLinesTwoStack, IconChatPlus, IconChatTextArrow, IconChatTwo, IconCheckMark, IconCheckboardSquareCentered, IconChevronDown, IconChevronDownDouble, IconChevronLeft, IconChevronLeftDouble, IconChevronRight, IconChevronRightDouble, IconChevronRightSmall, IconChevronUp, IconChevronUpDouble, IconChevronUpDown, IconChevronUpDownLine, IconCircle, IconCircleCorners, IconCircleMotionX, IconCircleNotch, IconCircleSlash, IconCirclesConnected, IconClock, IconClockCounterClockwise, IconClockCounterClockwiseSimple, IconClockOvertime, IconCloud, IconCluster, IconClusterAi, IconClusterColor, IconClusterSentiment, IconClustered, IconCog, IconCoins, IconCoinsChecked, IconCoinsSlash, IconColumnsFormat, IconColumnsThree, IconCommentGroup, IconCompass, IconConeSerpentine, IconConnectionLineElbows, IconConnectionLineStraight, IconCornersThreeEyeOpen, IconCounter, IconCreditCard, IconCrop, IconCross, IconCrossCircle, IconCrossFat, IconCrossSquare, IconCube, IconCursor, IconCursorFilled, IconCursorLines, IconCursorText, IconCursorTextLines, IconCurveSquareCircleArrow, IconDashLeftDownSquareDashRightUp, IconDashLeftUpSquareDashDownRight, IconDashSquareDashHorizontal, IconDashSquareDashVertical, IconDiagramCardLarge1, IconDiagramCardLarge2, IconDiagramCardLarge3, IconDiagramCardLarge4, IconDiagramCardMagnifyingGlass, IconDiagramCardSmall1, IconDiagramCardSmall2, IconDiagramCardSmall3, IconDiagramCardTeam, IconDiagramCardUser, IconDiagramming, IconDiagrammingFormat, IconDistributeHorizontal, IconDistributeVertical, IconDocFormat, IconDollarSignCurrency, IconDotVoting, IconDotsNine, IconDotsSixHorizontal, IconDotsSixVertical, IconDotsThree, IconDotsThreeVertical, IconDotsTwo, IconDownload, IconEnvelope, IconEraser, IconExclamationMarkOctagon, IconExclamationPointCircle, IconExport, IconExternalFormat, IconEyeClosed, IconEyeClosedDotsFourFrameBroken, IconEyeOpen, IconEyeOpenLineFrameBroken, IconEyeOpenSlash, IconEyedropper, IconFactory, IconFactoryHouse, IconFileSpreadsheet, IconFlag, IconFlipCard, IconFolder, IconFrame, IconFrameLinesTwo, IconFramePlay, IconFramePlus, IconFunnel, IconGauge, IconGavel, IconGift, IconGithub, IconGlobe, IconGoogleDrive, IconGraduationCap, IconGrid, IconGridFour, IconGridSix, IconHand, IconHandFilled, IconHandPointing, IconHandRaisedFilled, IconHeadphones, IconHeadsetPerson, IconHeart, IconHeartFilled, IconHexagon, IconHighlighter, IconHighlighterColorSelection, IconHighlighterUnderline, IconHouse, IconImage, IconIndentLeft, IconIndentRight, IconInformationMarkCircle, IconInsights, IconKanban, IconKey, IconKeycap, IconLaptop, IconLasso, IconLayout, IconLifesaver, IconLightbox, IconLightbulb, IconLightning, IconLineCurved, IconLineDashed, IconLineDiagonal, IconLineDotted, IconLineHorizontal, IconLineOrthogonal, IconLineStraight, IconLineTwoDiagonalTopRightDouble, IconLinesThreeHorizontal, IconLinesThreeHorizontalLineVerticalCenter, IconLinesThreeVertical, IconLinesTopLeftColumnsTwo, IconLink, IconLinkPlus, IconListBullets, IconListNumbers, IconLockClosed, IconLockOpen, IconLogin, IconLogout, IconMagnet, IconMagnifyingGlass, IconMagnifyingGlassLightning, IconMagnifyingGlassPlus, IconMap, IconMegaphone, IconMermaid, IconMicrophone, IconMicrophoneDocument, IconMicrophoneSlash, IconMinus, IconMobile, IconMonitor, IconMonitorArrow, IconMonitorArrowUp, IconMonitorEyeClosed, IconMonitorEyeOpen, IconMonitorPause, IconMonitorPlay, IconMonitorStop, IconMoon, IconMouse, IconMusicNote, IconNavigationArrowLines, IconNavigationUpLeftFilled, IconNavigationUpLeftSlash, IconNavigationUpRight, IconNext, IconNodeConnectedDot, IconNodeLinesCurved, IconNodeLinesHorizontal, IconNodeLinesVertical, IconNodePlus, IconNodesConnected, IconNodesConnectionsThree, IconNoteMagnifyingGlass, IconNotepad, IconNumber, IconOctagon, IconOffice, IconOrgChart, IconOrientationHorizontal, IconOrientationVertical, IconPaintBucket, IconPalette, IconPaperPlaneFilledRight, IconPaperPlaneTilt, IconParallelogram, IconPause, IconPauseCircle, IconPdf, IconPen, IconPenColorSelection, IconPenTip, IconPenUnderline, IconPentagon, IconPeopleList, IconPersonInCircle, IconPhoneFilled, IconPlaceholder, IconPlanet, IconPlay, IconPlayCircle, IconPlaybackSpeedCircle, IconPlug, IconPlus, IconPlusBox, IconPlusSquare, IconPlusText, IconPolling, IconPresentationArrow, IconPresentationEyeOpen, IconPresentationLine, IconPresentationLinesTwo, IconPresentationLink, IconPresentationNumberOne, IconPresentationPlay, IconPresentationPlus, IconPrevious, IconProhibit, IconProtoButton, IconProtoCheckbox, IconProtoDropdown, IconProtoInput, IconProtoNumber, IconProtoRadio, IconProtoSlider, IconPrototypeFormat, IconPushPin, IconPushPinFilled, IconQuestionMark, IconQuestionMarkCircle, IconQuotes, IconRaisedHand, IconRatio169, IconRatio43, IconRatioSquare, IconRectangleArrowUpCenter, IconRectangleDashLines, IconRectangleDotLarge, IconRectangleDotLinePen, IconRectangleDotMedium, IconRectangleDotSmall, IconRectangleFrame2Lines, IconRectangleLine, IconRectanglePlayStack, IconRectanglePortrait, IconRectanglePortraitDash, IconRectanglePortraitDashSquareTopCenter, IconRectanglePortraitDashSquareTopLeft, IconRectanglePortraitFilled, IconRectanglePortraitSquareTopLeft, IconRectangleTick, IconRectangleTriangleBottomCenter, IconRectanglesSquares, IconRectanglesThreeAligned, IconRectanglesThreeFree, IconRectanglesThreeOverlap, IconRectanglesTwoLine, IconRectanglesTwoLinesFour, IconRectanglesTwoMinus, IconRectanglesTwoPlus, IconRectanglesTwoUser, IconRhombus, IconRocket, IconRss, IconRssRectangle, IconScissors, IconScrollbarXy, IconSelect, IconSentiment, IconShadow, IconShapes, IconShapesLines, IconShapesLinesStacked, IconShieldCheck, IconShieldLock, IconShieldLockFilled, IconShuffle, IconSidebarClosed, IconSidebarGlobalClosed, IconSidebarGlobalOpen, IconSidebarOpen, IconSingleSparksFilled, IconSlideFormat, IconSlidersX, IconSlidersY, IconSmiley, IconSmileyChat, IconSmileyPlus, IconSmileySticker, IconSocialAdo, IconSocialAsana, IconSocialDrawio, IconSocialFacebook, IconSocialInstagram, IconSocialJira, IconSocialLinkedin, IconSocialLooker, IconSocialMonday, IconSocialSlack, IconSocialTwitter, IconSocialX, IconSocialYoutube, IconSortAscending, IconSortDescending, IconSparks, IconSparksFilled, IconSpeakerCross, IconSpeakerHigh, IconSpinner, IconSplitVertical, IconSquare, IconSquareArrowIn, IconSquareBracketsAngleSlash, IconSquareCirclesTwo, IconSquareFrame2LinesCircle, IconSquareLineSquareDashed, IconSquareRounded, IconSquareStarScribble, IconSquareTriangleCirclePlus, IconSquaresColumn, IconSquaresFour, IconSquaresGroup, IconSquaresMerge, IconSquaresRow, IconSquaresThree, IconSquaresTwoOverlap, IconSquaresUngroup, IconSquaresUnmerge, IconStack, IconStackedCircles, IconStar, IconStarFilled, IconStarHalf, IconStickyCorners, IconStickyEyeClosed, IconStickyEyeOpen, IconStickyNote, IconStickyNoteStack, IconStickyNoteWide, IconStickyNotesTwo, IconStopCircle, IconStoryPoints, IconStroke1, IconStroke2, IconStroke3, IconStroke4, IconStroke5, IconStroke6, IconSwitch, IconTable, IconTableFormat, IconTablet, IconTag, IconTasks, IconTextAColorSelection, IconTextAHorizontal, IconTextAUnderline, IconTextAVertical, IconTextAa, IconTextAlignCenter, IconTextAlignLeft, IconTextAlignRight, IconTextBBold, IconTextBBoldItalicUnderlined, IconTextCursorEyeOpen, IconTextHOne, IconTextHThree, IconTextHTwo, IconTextIItalic, IconTextIndent, IconTextLineHeight, IconTextLinesThree, IconTextPosition, IconTextSStrikethrough, IconTextStyles, IconTextT, IconTextUUnderlined, IconThumbsUp, IconTickCircle, IconTicket, IconTimelineFormat, IconTimer, IconToolbar, IconTooltip, IconTrackpad, IconTrapeze, IconTrash, IconTrashSimple, IconTriangle, IconTriangleSquareCircle, IconTrident, IconTrophy, IconTshirt, IconUser, IconUserAdd, IconUserArrowRightUp, IconUserBackgroundBlur, IconUserCog, IconUserCogPlus, IconUserEyeOpen, IconUserFilter, IconUserLoad, IconUserNumberThree, IconUserPenDashesBottom, IconUserPenLineBottom, IconUserTickDown, IconUsers, IconUsersThree, IconVideoCamera, IconVideoCameraSimple, IconVideoCameraSimpleError, IconVideoCameraSimpleSlash, IconViewCenter, IconViewSideLeft, IconWallet, IconWand, IconWarning, IconWifi, IconWifiExclamation };
|
|
41676
41882
|
//# sourceMappingURL=module.js.map
|