@mirohq/design-system-icons 1.13.0 → 1.15.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/module.js CHANGED
@@ -126,6 +126,32 @@ const IconAddLineRight = forwardRef(
126
126
  );
127
127
  IconAddLineRight[iconSymbol] = true;
128
128
 
129
+ const IconAiCursor = forwardRef(
130
+ ({ size = "medium", ...props }, forwardRef2) => {
131
+ const [debug] = useLocalStorage("DEBUG_ICON", false);
132
+ return createElement(
133
+ StyledIcon,
134
+ {
135
+ ...props,
136
+ debug,
137
+ "aria-hidden": true,
138
+ size,
139
+ viewBox: "0 0 24 24",
140
+ fill: "none",
141
+ ref: forwardRef2
142
+ },
143
+ /* @__PURE__ */ jsx(
144
+ "path",
145
+ {
146
+ fill: "currentColor",
147
+ d: "M19.25 1A3.75 3.75 0 0 0 23 4.75v1.5A3.75 3.75 0 0 0 19.25 10h-1.5A3.75 3.75 0 0 0 14 6.25v-1.5A3.75 3.75 0 0 0 17.75 1h1.5ZM4.662 22.607l2.025.574c2.482-4.35 7.221-7 12.228-6.834l.598-2.108L5.138 3.822 3.046 4.99l1.616 17.617Zm11.771-8.132a15.648 15.648 0 0 0-9.998 5.559L5.176 6.319l11.257 8.156Z"
148
+ }
149
+ )
150
+ );
151
+ }
152
+ );
153
+ IconAiCursor[iconSymbol] = true;
154
+
129
155
  const IconAiText = forwardRef(
130
156
  ({ size = "medium", ...props }, forwardRef2) => {
131
157
  const [debug] = useLocalStorage("DEBUG_ICON", false);
@@ -1098,6 +1124,32 @@ const IconArrowLeft = forwardRef(
1098
1124
  );
1099
1125
  IconArrowLeft[iconSymbol] = true;
1100
1126
 
1127
+ const IconArrowMobile = forwardRef(
1128
+ ({ size = "medium", ...props }, forwardRef2) => {
1129
+ const [debug] = useLocalStorage("DEBUG_ICON", false);
1130
+ return createElement(
1131
+ StyledIcon,
1132
+ {
1133
+ ...props,
1134
+ debug,
1135
+ "aria-hidden": true,
1136
+ size,
1137
+ viewBox: "0 0 24 24",
1138
+ fill: "none",
1139
+ ref: forwardRef2
1140
+ },
1141
+ /* @__PURE__ */ jsx(
1142
+ "path",
1143
+ {
1144
+ fill: "currentColor",
1145
+ d: "M14 16v2h-4v-2h4Zm-9 3v-1h2v1a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V5a1 1 0 0 0-.898-.995L16 4H8a1 1 0 0 0-1 1v1H5V5a3 3 0 0 1 3-3h8l.154.004A3 3 0 0 1 19 5v14a3 3 0 0 1-3 3H8a3 3 0 0 1-3-3Zm3.469-7.992H8.5v.037l.269.323v1.28l-.269.322v.038h-.031l-2.841 3.408-1.536-1.28 1.773-2.128L1 13v-1.992h4.865L4.092 8.88 5.628 7.6l2.84 3.408Z"
1146
+ }
1147
+ )
1148
+ );
1149
+ }
1150
+ );
1151
+ IconArrowMobile[iconSymbol] = true;
1152
+
1101
1153
  const IconArrowRightAwayLine = forwardRef(
1102
1154
  ({ size = "medium", ...props }, forwardRef2) => {
1103
1155
  const [debug] = useLocalStorage("DEBUG_ICON", false);
@@ -2610,6 +2662,84 @@ const IconChartBarY = forwardRef(
2610
2662
  );
2611
2663
  IconChartBarY[iconSymbol] = true;
2612
2664
 
2665
+ const IconChartLine = forwardRef(
2666
+ ({ size = "medium", ...props }, forwardRef2) => {
2667
+ const [debug] = useLocalStorage("DEBUG_ICON", false);
2668
+ return createElement(
2669
+ StyledIcon,
2670
+ {
2671
+ ...props,
2672
+ debug,
2673
+ "aria-hidden": true,
2674
+ size,
2675
+ viewBox: "0 0 24 24",
2676
+ fill: "none",
2677
+ ref: forwardRef2
2678
+ },
2679
+ /* @__PURE__ */ jsx(
2680
+ "path",
2681
+ {
2682
+ fill: "currentColor",
2683
+ d: "M22 22H3l-1-1V4h2v16h18v2ZM11.625 9.219l4.122 3.299 4.405-7.048 1.696 1.06-5 8-1.473.251-4.148-3.319-3.395 5.092-1.664-1.109 4-6 1.457-.226Z"
2684
+ }
2685
+ )
2686
+ );
2687
+ }
2688
+ );
2689
+ IconChartLine[iconSymbol] = true;
2690
+
2691
+ const IconChartNumber = forwardRef(
2692
+ ({ size = "medium", ...props }, forwardRef2) => {
2693
+ const [debug] = useLocalStorage("DEBUG_ICON", false);
2694
+ return createElement(
2695
+ StyledIcon,
2696
+ {
2697
+ ...props,
2698
+ debug,
2699
+ "aria-hidden": true,
2700
+ size,
2701
+ viewBox: "0 0 24 24",
2702
+ fill: "none",
2703
+ ref: forwardRef2
2704
+ },
2705
+ /* @__PURE__ */ jsx(
2706
+ "path",
2707
+ {
2708
+ fill: "currentColor",
2709
+ d: "M5 9H3V7h2a2 2 0 0 1 2 2v8H5V9Zm5 0v6h2V9h-2Zm4 6a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v6Zm3-6v6h2V9h-2Zm4 6a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v6Z"
2710
+ }
2711
+ )
2712
+ );
2713
+ }
2714
+ );
2715
+ IconChartNumber[iconSymbol] = true;
2716
+
2717
+ const IconChartProgress = forwardRef(
2718
+ ({ size = "medium", ...props }, forwardRef2) => {
2719
+ const [debug] = useLocalStorage("DEBUG_ICON", false);
2720
+ return createElement(
2721
+ StyledIcon,
2722
+ {
2723
+ ...props,
2724
+ debug,
2725
+ "aria-hidden": true,
2726
+ size,
2727
+ viewBox: "0 0 24 24",
2728
+ fill: "none",
2729
+ ref: forwardRef2
2730
+ },
2731
+ /* @__PURE__ */ jsx(
2732
+ "path",
2733
+ {
2734
+ fill: "currentColor",
2735
+ d: "M12.016 2A10 10 0 0 1 17 20.66l-1-1.732a8 8 0 1 0-8.022-.012l-1.004 1.729A10 10 0 0 1 12.016 2Zm2.57 5.586L16 9l-7 7-1.414-1.414 7-7ZM11 9.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm5 5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z"
2736
+ }
2737
+ )
2738
+ );
2739
+ }
2740
+ );
2741
+ IconChartProgress[iconSymbol] = true;
2742
+
2613
2743
  const IconChatCheck = forwardRef(
2614
2744
  ({ size = "medium", ...props }, forwardRef2) => {
2615
2745
  const [debug] = useLocalStorage("DEBUG_ICON", false);
@@ -4282,6 +4412,32 @@ const IconCrossFat = forwardRef(
4282
4412
  );
4283
4413
  IconCrossFat[iconSymbol] = true;
4284
4414
 
4415
+ const IconCrossMobile = forwardRef(
4416
+ ({ size = "medium", ...props }, forwardRef2) => {
4417
+ const [debug] = useLocalStorage("DEBUG_ICON", false);
4418
+ return createElement(
4419
+ StyledIcon,
4420
+ {
4421
+ ...props,
4422
+ debug,
4423
+ "aria-hidden": true,
4424
+ size,
4425
+ viewBox: "0 0 24 24",
4426
+ fill: "none",
4427
+ ref: forwardRef2
4428
+ },
4429
+ /* @__PURE__ */ jsx(
4430
+ "path",
4431
+ {
4432
+ fill: "currentColor",
4433
+ d: "M5 19V5a3 3 0 0 1 3-3h4v2H8a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-8h2v8a3 3 0 0 1-3 3H8a3 3 0 0 1-3-3Zm9-3v2h-4v-2h4Zm7.707-13.293L19.414 5l2.293 2.293-1.414 1.414L18 6.414l-2.293 2.293-1.414-1.414L16.586 5l-2.293-2.293 1.414-1.414L18 3.586l2.293-2.293 1.414 1.414Z"
4434
+ }
4435
+ )
4436
+ );
4437
+ }
4438
+ );
4439
+ IconCrossMobile[iconSymbol] = true;
4440
+
4285
4441
  const IconCrossSquare = forwardRef(
4286
4442
  ({ size = "medium", ...props }, forwardRef2) => {
4287
4443
  const [debug] = useLocalStorage("DEBUG_ICON", false);
@@ -4944,6 +5100,32 @@ const IconDiagramming = forwardRef(
4944
5100
  );
4945
5101
  IconDiagramming[iconSymbol] = true;
4946
5102
 
5103
+ const IconDigit = forwardRef(
5104
+ ({ size = "medium", ...props }, forwardRef2) => {
5105
+ const [debug] = useLocalStorage("DEBUG_ICON", false);
5106
+ return createElement(
5107
+ StyledIcon,
5108
+ {
5109
+ ...props,
5110
+ debug,
5111
+ "aria-hidden": true,
5112
+ size,
5113
+ viewBox: "0 0 24 24",
5114
+ fill: "none",
5115
+ ref: forwardRef2
5116
+ },
5117
+ /* @__PURE__ */ jsx(
5118
+ "path",
5119
+ {
5120
+ fill: "currentColor",
5121
+ d: "M8.235 6v11H11v2H3v-2h3.235V7.543L3.408 8.808 2.592 6.98l4.235-1.894L8.235 6Zm9.815-1A3.95 3.95 0 0 1 22 8.95c0 2.023-1.443 3.62-3.097 4.334-1.66.717-3.33 1.881-3.783 3.716h6.38v2H14l-1-1c0-3.718 3.034-5.656 5.111-6.553C19.246 10.957 20 9.964 20 8.95A1.95 1.95 0 0 0 18.05 7h-.621A2.429 2.429 0 0 0 15 9.429h-2A4.429 4.429 0 0 1 17.429 5h.62Z"
5122
+ }
5123
+ )
5124
+ );
5125
+ }
5126
+ );
5127
+ IconDigit[iconSymbol] = true;
5128
+
4947
5129
  const IconDistributeHorizontal = forwardRef(
4948
5130
  ({ size = "medium", ...props }, forwardRef2) => {
4949
5131
  const [debug] = useLocalStorage("DEBUG_ICON", false);
@@ -8760,6 +8942,34 @@ const IconOffice = forwardRef(
8760
8942
  );
8761
8943
  IconOffice[iconSymbol] = true;
8762
8944
 
8945
+ const IconOrbitDouble = forwardRef(
8946
+ ({ size = "medium", ...props }, forwardRef2) => {
8947
+ const [debug] = useLocalStorage("DEBUG_ICON", false);
8948
+ return createElement(
8949
+ StyledIcon,
8950
+ {
8951
+ ...props,
8952
+ debug,
8953
+ "aria-hidden": true,
8954
+ size,
8955
+ viewBox: "0 0 24 24",
8956
+ fill: "none",
8957
+ ref: forwardRef2
8958
+ },
8959
+ /* @__PURE__ */ jsx(
8960
+ "path",
8961
+ {
8962
+ fill: "currentColor",
8963
+ fillRule: "evenodd",
8964
+ d: "M12.02 4.57c3.135-1.695 6.172-1.934 7.78-.327 1.606 1.607 1.365 4.642-.33 7.777 1.696 3.136 1.936 6.172.329 7.779-1.608 1.607-4.644 1.367-7.779-.328-3.135 1.694-6.17 1.934-7.777.328-1.607-1.607-1.368-4.644.327-7.779-1.695-3.134-1.934-6.17-.327-7.777 1.607-1.607 4.642-1.368 7.777.327ZM5.832 14a9.91 9.91 0 0 0-.393 1.085c-.552 1.878-.193 2.888.218 3.3.411.411 1.42.77 3.3.217.35-.103.712-.235 1.084-.393a19.724 19.724 0 0 1-2.263-1.946 19.5 19.5 0 0 1-1.946-2.262Zm12.377 0a19.707 19.707 0 0 1-1.946 2.263c-.729.73-1.49 1.379-2.262 1.946.372.158.734.29 1.084.393 1.879.553 2.888.194 3.3-.218.41-.41.77-1.42.217-3.3a9.914 9.914 0 0 0-.393-1.083ZM12.02 6.895a17.245 17.245 0 0 0-2.827 2.298 17.25 17.25 0 0 0-2.299 2.828c.61.947 1.377 1.909 2.298 2.83.92.92 1.882 1.686 2.828 2.296a17.236 17.236 0 0 0 2.83-2.297c.92-.92 1.686-1.883 2.296-2.829a17.243 17.243 0 0 0-2.297-2.828 17.238 17.238 0 0 0-2.829-2.298ZM8.957 5.44c-1.88-.552-2.889-.193-3.3.218-.412.411-.77 1.42-.218 3.3.103.35.234.712.393 1.084a19.72 19.72 0 0 1 1.946-2.263c.73-.73 1.491-1.38 2.263-1.946a9.898 9.898 0 0 0-1.084-.393Zm9.428.218c-.411-.411-1.421-.77-3.3-.218A9.9 9.9 0 0 0 14 5.832a19.714 19.714 0 0 1 2.262 1.946 19.73 19.73 0 0 1 1.946 2.262c.158-.372.29-.734.393-1.083.553-1.879.195-2.888-.217-3.3Z",
8965
+ clipRule: "evenodd"
8966
+ }
8967
+ )
8968
+ );
8969
+ }
8970
+ );
8971
+ IconOrbitDouble[iconSymbol] = true;
8972
+
8763
8973
  const IconOrgChart = forwardRef(
8764
8974
  ({ size = "medium", ...props }, forwardRef2) => {
8765
8975
  const [debug] = useLocalStorage("DEBUG_ICON", false);
@@ -9218,6 +9428,34 @@ const IconPeopleList = forwardRef(
9218
9428
  );
9219
9429
  IconPeopleList[iconSymbol] = true;
9220
9430
 
9431
+ const IconPercent = forwardRef(
9432
+ ({ size = "medium", ...props }, forwardRef2) => {
9433
+ const [debug] = useLocalStorage("DEBUG_ICON", false);
9434
+ return createElement(
9435
+ StyledIcon,
9436
+ {
9437
+ ...props,
9438
+ debug,
9439
+ "aria-hidden": true,
9440
+ size,
9441
+ viewBox: "0 0 24 24",
9442
+ fill: "none",
9443
+ ref: forwardRef2
9444
+ },
9445
+ /* @__PURE__ */ jsx(
9446
+ "path",
9447
+ {
9448
+ fill: "currentColor",
9449
+ fillRule: "evenodd",
9450
+ d: "M18.29 2.542 7.467 22.414l-1.757-.956L16.532 1.586l1.757.956ZM17.5 13a3.5 3.5 0 1 1 0 7 3.5 3.5 0 0 1 0-7Zm0 2a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3ZM6.5 4a3.5 3.5 0 1 1 0 7 3.5 3.5 0 0 1 0-7Zm0 2a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3Z",
9451
+ clipRule: "evenodd"
9452
+ }
9453
+ )
9454
+ );
9455
+ }
9456
+ );
9457
+ IconPercent[iconSymbol] = true;
9458
+
9221
9459
  const IconPersonInCircle = forwardRef(
9222
9460
  ({ size = "medium", ...props }, forwardRef2) => {
9223
9461
  const [debug] = useLocalStorage("DEBUG_ICON", false);
@@ -9854,6 +10092,34 @@ const IconPrevious = forwardRef(
9854
10092
  );
9855
10093
  IconPrevious[iconSymbol] = true;
9856
10094
 
10095
+ const IconProgressBar = forwardRef(
10096
+ ({ size = "medium", ...props }, forwardRef2) => {
10097
+ const [debug] = useLocalStorage("DEBUG_ICON", false);
10098
+ return createElement(
10099
+ StyledIcon,
10100
+ {
10101
+ ...props,
10102
+ debug,
10103
+ "aria-hidden": true,
10104
+ size,
10105
+ viewBox: "0 0 24 24",
10106
+ fill: "none",
10107
+ ref: forwardRef2
10108
+ },
10109
+ /* @__PURE__ */ jsx(
10110
+ "path",
10111
+ {
10112
+ fill: "currentColor",
10113
+ fillRule: "evenodd",
10114
+ d: "m22 8 1 1v5l-1 1H2l-1-1V9l1-1h20Zm-12 5h11v-3H10v3Z",
10115
+ clipRule: "evenodd"
10116
+ }
10117
+ )
10118
+ );
10119
+ }
10120
+ );
10121
+ IconProgressBar[iconSymbol] = true;
10122
+
9857
10123
  const IconProhibit = forwardRef(
9858
10124
  ({ size = "medium", ...props }, forwardRef2) => {
9859
10125
  const [debug] = useLocalStorage("DEBUG_ICON", false);
@@ -12476,6 +12742,32 @@ const IconSquareLineSquareDashed = forwardRef(
12476
12742
  );
12477
12743
  IconSquareLineSquareDashed[iconSymbol] = true;
12478
12744
 
12745
+ const IconSquarePencil = forwardRef(
12746
+ ({ size = "medium", ...props }, forwardRef2) => {
12747
+ const [debug] = useLocalStorage("DEBUG_ICON", false);
12748
+ return createElement(
12749
+ StyledIcon,
12750
+ {
12751
+ ...props,
12752
+ debug,
12753
+ "aria-hidden": true,
12754
+ size,
12755
+ viewBox: "0 0 24 24",
12756
+ fill: "none",
12757
+ ref: forwardRef2
12758
+ },
12759
+ /* @__PURE__ */ jsx(
12760
+ "path",
12761
+ {
12762
+ fill: "currentColor",
12763
+ d: "M3 18V6a3 3 0 0 1 3-3h7v2H6a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-7h2v7a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3ZM18.543 1.543a2.768 2.768 0 1 1 3.914 3.914l-5.839 5.839-3.422.684-1.176-1.176.684-3.422 5.839-5.839Zm2.5 1.414c-.3-.3-.786-.3-1.086 0l-5.411 5.41-.272 1.358 1.358-.272 5.411-5.41c.3-.3.3-.786 0-1.086Z"
12764
+ }
12765
+ )
12766
+ );
12767
+ }
12768
+ );
12769
+ IconSquarePencil[iconSymbol] = true;
12770
+
12479
12771
  const IconSquareRounded = forwardRef(
12480
12772
  ({ size = "medium", ...props }, forwardRef2) => {
12481
12773
  const [debug] = useLocalStorage("DEBUG_ICON", false);
@@ -15566,5 +15858,5 @@ const IconWifi = forwardRef(
15566
15858
  );
15567
15859
  IconWifi[iconSymbol] = true;
15568
15860
 
15569
- export { IconActivity, IconAddLineBottom, IconAddLineLeft, IconAddLineRight, IconAiText, IconAlignBottom, IconAlignBottomGroup, IconAlignCenterHorizontal, IconAlignCenterVertical, IconAlignLeft, IconAlignMiddle, IconAlignRight, IconAlignTop, IconAlignTopGroup, IconAlignmentScale, IconAltText, IconAltTextUnderline, IconArrowArcLeft, IconArrowArcRight, IconArrowBendUpLeft, IconArrowBendUpRight, IconArrowBoxLeft, IconArrowBoxOut, IconArrowClockwiseDownRight, IconArrowClockwiseIntoRectangle, IconArrowClockwiseUpLeft, IconArrowCounterClockwiseDownLeft, IconArrowCounterClockwiseUpRight, IconArrowCurvesBottomRight, IconArrowDown, IconArrowDownLeft, IconArrowDownRight, IconArrowElbowDownRight, IconArrowFatLeft, IconArrowFatLeftRight, IconArrowFatRight, IconArrowFatUpRight, IconArrowLeft, IconArrowLeftAwayLine, IconArrowLeftRightDotted, IconArrowLeftTowardLine, IconArrowRight, IconArrowRightAwayLine, IconArrowRightTowardLine, IconArrowUp, IconArrowUpCircle, IconArrowUpLeft, IconArrowUpRight, IconArrowsClockwiseRectangleTilt, IconArrowsClockwiseX, IconArrowsClockwiseY, IconArrowsCounterclockwiseRectangleTilt, IconArrowsDownUp, IconArrowsHorizontalLinesTopBottom, IconArrowsHorizontalLinesTopBottomIn, IconArrowsInSimple, IconArrowsOutCardinal, IconArrowsOutLinesHorizontal, IconArrowsOutSimple, IconArrowsSquareCounterClockwiseY, IconArrowsTimeBackward, IconArrowsTimeForward, IconArticle, IconArticleEmpty, IconAt, IconAttachment, IconBadge, IconBarrel, IconBear, IconBell, IconBellSlash, IconBellTilt, IconBoard, IconBookOpenInfo, IconBookmark, IconBoxCaptions, IconBoxCaptionsFilled, IconBracketClose, IconBracketCurlyLeft, IconBracketCurlyRight, IconBracketOpen, IconBracketsAngleSlash, IconBracketsCurlyCirclesThree, IconBrowser, IconBrush, IconCalendarBlank, IconCalendarEnd, IconCalendarStart, IconCamera, IconCaptionAlong, IconCaptionHorizontal, IconCar, IconCard, IconCardCircles, IconCardNumberThree, IconCardsPoker, IconChartBarY, IconChartBarYSimple, IconChat, IconChatCheck, IconChatCross, IconChatDashesLinesTwo, IconChatLinesCross, IconChatLinesDot, IconChatLinesEyeOpen, IconChatLinesTwo, IconChatLinesTwoStack, IconChatPlus, IconChatTextArrow, IconChatTwo, IconCheckBoxLines, IconCheckMark, IconCheckboardSquareCentered, IconChevronDown, IconChevronDownDouble, IconChevronLeft, IconChevronLeftDouble, IconChevronRight, IconChevronRightDouble, IconChevronRightSmall, IconChevronUp, IconChevronUpDouble, IconChevronUpDown, IconChevronUpDownLine, IconCircle, IconCircleCorners, IconCircleDashed, IconCircleFullCheck, IconCircleHalfFill, IconCircleMotionX, IconCircleNotch, IconCircleSlash, IconCircleTarget, 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, IconDiagrammingShapes, IconDistributeHorizontal, IconDistributeVertical, IconDocFormat, IconDollarSignCurrency, IconDotLineDot, IconDotVoting, IconDotsNine, IconDotsSixHorizontal, IconDotsSixVertical, IconDotsThree, IconDotsThreeVertical, IconDotsTwo, IconDownload, IconDrinkBurger, IconEnvelope, IconEraser, IconExclamationMarkOctagon, IconExclamationPointCircle, IconExport, IconExternalFormat, IconEyeClosed, IconEyeClosedDotsFourFrameBroken, IconEyeOpen, IconEyeOpenLineFrameBroken, IconEyeOpenSlash, IconEyedropper, IconFactory, IconFactoryHouse, IconFileSpreadsheet, IconFilledBottomBox, IconFilledTopBox, IconFlag, IconFlip, IconFlipCard, IconFolder, IconFormula, IconFrame, IconFrameLinesTwo, IconFramePlay, IconFramePlus, IconFunnel, IconGauge, IconGavel, IconGift, IconGithub, IconGlobe, IconGoogleDrive, IconGraduationCap, IconGrid, IconGridFour, IconGridSix, IconHand, IconHandFilled, IconHandPointing, IconHandRaisedFilled, IconHeadphones, IconHeadsetPerson, IconHeart, IconHeartFilled, IconHeartMusicNote, IconHexagon, IconHighlighter, IconHighlighterColorSelection, IconHighlighterUnderline, IconHorizontalBlocks, IconHouse, IconImage, IconIndentLeft, IconIndentRight, IconInformationMarkCircle, IconInsights, IconKanban, IconKey, IconKeycap, IconLaptop, IconLasso, IconLayout, IconLifesaver, IconLightbox, IconLightbulb, IconLightning, IconLineCurved, IconLineDashed, IconLineDiagonal, IconLineDotted, IconLineHorizontal, IconLineOrthogonal, IconLineStraight, IconLineTwoDiagonalTopRightDouble, IconLineVertical, IconLinesThreeHorizontal, IconLinesThreeHorizontalLineVerticalCenter, IconLinesThreeVertical, IconLinesTopLeftColumnsTwo, IconLink, IconLinkPlus, IconListBullets, IconListNumbers, IconLockClosed, IconLockOpen, IconLogin, IconLogout, IconMagnet, IconMagnifyingGlass, IconMagnifyingGlassLightning, IconMagnifyingGlassMinus, IconMagnifyingGlassPlus, IconMap, IconMegaphone, IconMermaid, IconMicLinesDot, IconMicrophone, IconMicrophoneSlash, IconMinus, IconMobile, IconMonitor, IconMonitorArrow, IconMonitorArrowUp, IconMonitorEyeClosed, IconMonitorEyeOpen, IconMonitorPause, IconMonitorPlay, IconMonitorStop, IconMoon, IconMouse, IconMusicNote, IconNavigationArrowLines, IconNavigationUpLeftFilled, IconNavigationUpLeftSlash, IconNavigationUpRight, IconNesting, 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, IconPixelEraser, IconPlaceholder, IconPlanet, IconPlay, IconPlayCircle, IconPlaybackSpeedCircle, IconPlug, IconPlus, IconPlusBox, IconPlusCross, 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, IconRectangleDotLinePen, IconRectangleFrame2Lines, IconRectangleLine, IconRectanglePlayStack, IconRectanglePortrait, IconRectanglePortraitDash, IconRectanglePortraitDashSquareTopCenter, IconRectanglePortraitDashSquareTopLeft, IconRectanglePortraitFilled, IconRectanglePortraitSquareBottomRight, IconRectanglePortraitSquareTopLeft, IconRectangleTick, IconRectangleTriangleBottomCenter, IconRectanglesLayout, 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, IconSocialAws, IconSocialDrawio, IconSocialFacebook, IconSocialInstagram, IconSocialJira, IconSocialLinkedin, IconSocialLooker, IconSocialMonday, IconSocialSlack, IconSocialTwitter, IconSocialX, IconSocialYoutube, IconSortAscending, IconSortDescending, IconSparks, IconSparksFilled, IconSpeakerCross, IconSpeakerHigh, IconSpinner, IconSplitHorizontal, 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, IconSwapHorizontal, IconSwitch, IconTable, IconTableFormat, IconTablet, IconTag, IconTasks, IconTennisBall, 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, IconUserArrowRight, IconUserArrowRightUp, IconUserBackgroundBlur, IconUserCog, IconUserCogPlus, IconUserEyeOpen, IconUserFilter, IconUserLoad, IconUserMic, IconUserMicSlash, IconUserNumberThree, IconUserPenDashesBottom, IconUserPenLineBottom, IconUserTickDown, IconUsers, IconUsersThree, IconVerticalBlocks, IconVideoCamera, IconVideoCameraDot, IconVideoCameraLines, IconVideoCameraLinesDot, IconVideoCameraSimple, IconVideoCameraSimpleError, IconVideoCameraSimpleSlash, IconVideoPlayer, IconViewCenter, IconViewSideLeft, IconViewSideRight, IconWallet, IconWand, IconWarning, IconWifi, IconWifiExclamation };
15861
+ export { IconActivity, IconAddLineBottom, IconAddLineLeft, IconAddLineRight, IconAiCursor, IconAiText, IconAlignBottom, IconAlignBottomGroup, IconAlignCenterHorizontal, IconAlignCenterVertical, IconAlignLeft, IconAlignMiddle, IconAlignRight, IconAlignTop, IconAlignTopGroup, IconAlignmentScale, IconAltText, IconAltTextUnderline, IconArrowArcLeft, IconArrowArcRight, IconArrowBendUpLeft, IconArrowBendUpRight, IconArrowBoxLeft, IconArrowBoxOut, IconArrowClockwiseDownRight, IconArrowClockwiseIntoRectangle, IconArrowClockwiseUpLeft, IconArrowCounterClockwiseDownLeft, IconArrowCounterClockwiseUpRight, IconArrowCurvesBottomRight, IconArrowDown, IconArrowDownLeft, IconArrowDownRight, IconArrowElbowDownRight, IconArrowFatLeft, IconArrowFatLeftRight, IconArrowFatRight, IconArrowFatUpRight, IconArrowLeft, IconArrowLeftAwayLine, IconArrowLeftRightDotted, IconArrowLeftTowardLine, IconArrowMobile, IconArrowRight, IconArrowRightAwayLine, IconArrowRightTowardLine, IconArrowUp, IconArrowUpCircle, IconArrowUpLeft, IconArrowUpRight, IconArrowsClockwiseRectangleTilt, IconArrowsClockwiseX, IconArrowsClockwiseY, IconArrowsCounterclockwiseRectangleTilt, IconArrowsDownUp, IconArrowsHorizontalLinesTopBottom, IconArrowsHorizontalLinesTopBottomIn, IconArrowsInSimple, IconArrowsOutCardinal, IconArrowsOutLinesHorizontal, IconArrowsOutSimple, IconArrowsSquareCounterClockwiseY, IconArrowsTimeBackward, IconArrowsTimeForward, IconArticle, IconArticleEmpty, IconAt, IconAttachment, IconBadge, IconBarrel, IconBear, IconBell, IconBellSlash, IconBellTilt, IconBoard, IconBookOpenInfo, IconBookmark, IconBoxCaptions, IconBoxCaptionsFilled, IconBracketClose, IconBracketCurlyLeft, IconBracketCurlyRight, IconBracketOpen, IconBracketsAngleSlash, IconBracketsCurlyCirclesThree, IconBrowser, IconBrush, IconCalendarBlank, IconCalendarEnd, IconCalendarStart, IconCamera, IconCaptionAlong, IconCaptionHorizontal, IconCar, IconCard, IconCardCircles, IconCardNumberThree, IconCardsPoker, IconChartBarY, IconChartBarYSimple, IconChartLine, IconChartNumber, IconChartProgress, IconChat, IconChatCheck, IconChatCross, IconChatDashesLinesTwo, IconChatLinesCross, IconChatLinesDot, IconChatLinesEyeOpen, IconChatLinesTwo, IconChatLinesTwoStack, IconChatPlus, IconChatTextArrow, IconChatTwo, IconCheckBoxLines, IconCheckMark, IconCheckboardSquareCentered, IconChevronDown, IconChevronDownDouble, IconChevronLeft, IconChevronLeftDouble, IconChevronRight, IconChevronRightDouble, IconChevronRightSmall, IconChevronUp, IconChevronUpDouble, IconChevronUpDown, IconChevronUpDownLine, IconCircle, IconCircleCorners, IconCircleDashed, IconCircleFullCheck, IconCircleHalfFill, IconCircleMotionX, IconCircleNotch, IconCircleSlash, IconCircleTarget, 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, IconCrossMobile, IconCrossSquare, IconCube, IconCursor, IconCursorFilled, IconCursorLines, IconCursorText, IconCursorTextLines, IconCurveSquareCircleArrow, IconDashLeftDownSquareDashRightUp, IconDashLeftUpSquareDashDownRight, IconDashSquareDashHorizontal, IconDashSquareDashVertical, IconDiagramCardLarge1, IconDiagramCardLarge2, IconDiagramCardLarge3, IconDiagramCardLarge4, IconDiagramCardMagnifyingGlass, IconDiagramCardSmall1, IconDiagramCardSmall2, IconDiagramCardSmall3, IconDiagramCardTeam, IconDiagramCardUser, IconDiagramming, IconDiagrammingShapes, IconDigit, IconDistributeHorizontal, IconDistributeVertical, IconDocFormat, IconDollarSignCurrency, IconDotLineDot, IconDotVoting, IconDotsNine, IconDotsSixHorizontal, IconDotsSixVertical, IconDotsThree, IconDotsThreeVertical, IconDotsTwo, IconDownload, IconDrinkBurger, IconEnvelope, IconEraser, IconExclamationMarkOctagon, IconExclamationPointCircle, IconExport, IconExternalFormat, IconEyeClosed, IconEyeClosedDotsFourFrameBroken, IconEyeOpen, IconEyeOpenLineFrameBroken, IconEyeOpenSlash, IconEyedropper, IconFactory, IconFactoryHouse, IconFileSpreadsheet, IconFilledBottomBox, IconFilledTopBox, IconFlag, IconFlip, IconFlipCard, IconFolder, IconFormula, IconFrame, IconFrameLinesTwo, IconFramePlay, IconFramePlus, IconFunnel, IconGauge, IconGavel, IconGift, IconGithub, IconGlobe, IconGoogleDrive, IconGraduationCap, IconGrid, IconGridFour, IconGridSix, IconHand, IconHandFilled, IconHandPointing, IconHandRaisedFilled, IconHeadphones, IconHeadsetPerson, IconHeart, IconHeartFilled, IconHeartMusicNote, IconHexagon, IconHighlighter, IconHighlighterColorSelection, IconHighlighterUnderline, IconHorizontalBlocks, IconHouse, IconImage, IconIndentLeft, IconIndentRight, IconInformationMarkCircle, IconInsights, IconKanban, IconKey, IconKeycap, IconLaptop, IconLasso, IconLayout, IconLifesaver, IconLightbox, IconLightbulb, IconLightning, IconLineCurved, IconLineDashed, IconLineDiagonal, IconLineDotted, IconLineHorizontal, IconLineOrthogonal, IconLineStraight, IconLineTwoDiagonalTopRightDouble, IconLineVertical, IconLinesThreeHorizontal, IconLinesThreeHorizontalLineVerticalCenter, IconLinesThreeVertical, IconLinesTopLeftColumnsTwo, IconLink, IconLinkPlus, IconListBullets, IconListNumbers, IconLockClosed, IconLockOpen, IconLogin, IconLogout, IconMagnet, IconMagnifyingGlass, IconMagnifyingGlassLightning, IconMagnifyingGlassMinus, IconMagnifyingGlassPlus, IconMap, IconMegaphone, IconMermaid, IconMicLinesDot, IconMicrophone, IconMicrophoneSlash, IconMinus, IconMobile, IconMonitor, IconMonitorArrow, IconMonitorArrowUp, IconMonitorEyeClosed, IconMonitorEyeOpen, IconMonitorPause, IconMonitorPlay, IconMonitorStop, IconMoon, IconMouse, IconMusicNote, IconNavigationArrowLines, IconNavigationUpLeftFilled, IconNavigationUpLeftSlash, IconNavigationUpRight, IconNesting, IconNext, IconNodeConnectedDot, IconNodeLinesCurved, IconNodeLinesHorizontal, IconNodeLinesVertical, IconNodePlus, IconNodesConnected, IconNodesConnectionsThree, IconNoteMagnifyingGlass, IconNotepad, IconNumber, IconOctagon, IconOffice, IconOrbitDouble, IconOrgChart, IconOrientationHorizontal, IconOrientationVertical, IconPaintBucket, IconPalette, IconPaperPlaneFilledRight, IconPaperPlaneTilt, IconParallelogram, IconPause, IconPauseCircle, IconPdf, IconPen, IconPenColorSelection, IconPenTip, IconPenUnderline, IconPentagon, IconPeopleList, IconPercent, IconPersonInCircle, IconPhoneFilled, IconPixelEraser, IconPlaceholder, IconPlanet, IconPlay, IconPlayCircle, IconPlaybackSpeedCircle, IconPlug, IconPlus, IconPlusBox, IconPlusCross, IconPlusSquare, IconPlusText, IconPolling, IconPresentationArrow, IconPresentationEyeOpen, IconPresentationLine, IconPresentationLinesTwo, IconPresentationLink, IconPresentationNumberOne, IconPresentationPlay, IconPresentationPlus, IconPrevious, IconProgressBar, IconProhibit, IconProtoButton, IconProtoCheckbox, IconProtoDropdown, IconProtoInput, IconProtoNumber, IconProtoRadio, IconProtoSlider, IconPrototypeFormat, IconPushPin, IconPushPinFilled, IconQuestionMark, IconQuestionMarkCircle, IconQuotes, IconRaisedHand, IconRatio169, IconRatio43, IconRatioSquare, IconRectangleArrowUpCenter, IconRectangleDashLines, IconRectangleDotLinePen, IconRectangleFrame2Lines, IconRectangleLine, IconRectanglePlayStack, IconRectanglePortrait, IconRectanglePortraitDash, IconRectanglePortraitDashSquareTopCenter, IconRectanglePortraitDashSquareTopLeft, IconRectanglePortraitFilled, IconRectanglePortraitSquareBottomRight, IconRectanglePortraitSquareTopLeft, IconRectangleTick, IconRectangleTriangleBottomCenter, IconRectanglesLayout, 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, IconSocialAws, IconSocialDrawio, IconSocialFacebook, IconSocialInstagram, IconSocialJira, IconSocialLinkedin, IconSocialLooker, IconSocialMonday, IconSocialSlack, IconSocialTwitter, IconSocialX, IconSocialYoutube, IconSortAscending, IconSortDescending, IconSparks, IconSparksFilled, IconSpeakerCross, IconSpeakerHigh, IconSpinner, IconSplitHorizontal, IconSplitVertical, IconSquare, IconSquareArrowIn, IconSquareBracketsAngleSlash, IconSquareCirclesTwo, IconSquareFrame2LinesCircle, IconSquareLineSquareDashed, IconSquarePencil, 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, IconSwapHorizontal, IconSwitch, IconTable, IconTableFormat, IconTablet, IconTag, IconTasks, IconTennisBall, 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, IconUserArrowRight, IconUserArrowRightUp, IconUserBackgroundBlur, IconUserCog, IconUserCogPlus, IconUserEyeOpen, IconUserFilter, IconUserLoad, IconUserMic, IconUserMicSlash, IconUserNumberThree, IconUserPenDashesBottom, IconUserPenLineBottom, IconUserTickDown, IconUsers, IconUsersThree, IconVerticalBlocks, IconVideoCamera, IconVideoCameraDot, IconVideoCameraLines, IconVideoCameraLinesDot, IconVideoCameraSimple, IconVideoCameraSimpleError, IconVideoCameraSimpleSlash, IconVideoPlayer, IconViewCenter, IconViewSideLeft, IconViewSideRight, IconWallet, IconWand, IconWarning, IconWifi, IconWifiExclamation };
15570
15862
  //# sourceMappingURL=module.js.map