@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/main.js CHANGED
@@ -130,6 +130,32 @@ const IconAddLineRight = react.forwardRef(
130
130
  );
131
131
  IconAddLineRight[designSystemBaseIcon.iconSymbol] = true;
132
132
 
133
+ const IconAiCursor = react.forwardRef(
134
+ ({ size = "medium", ...props }, forwardRef2) => {
135
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
136
+ return react.createElement(
137
+ StyledIcon,
138
+ {
139
+ ...props,
140
+ debug,
141
+ "aria-hidden": true,
142
+ size,
143
+ viewBox: "0 0 24 24",
144
+ fill: "none",
145
+ ref: forwardRef2
146
+ },
147
+ /* @__PURE__ */ jsxRuntime.jsx(
148
+ "path",
149
+ {
150
+ fill: "currentColor",
151
+ 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"
152
+ }
153
+ )
154
+ );
155
+ }
156
+ );
157
+ IconAiCursor[designSystemBaseIcon.iconSymbol] = true;
158
+
133
159
  const IconAiText = react.forwardRef(
134
160
  ({ size = "medium", ...props }, forwardRef2) => {
135
161
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -1102,6 +1128,32 @@ const IconArrowLeft = react.forwardRef(
1102
1128
  );
1103
1129
  IconArrowLeft[designSystemBaseIcon.iconSymbol] = true;
1104
1130
 
1131
+ const IconArrowMobile = react.forwardRef(
1132
+ ({ size = "medium", ...props }, forwardRef2) => {
1133
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
1134
+ return react.createElement(
1135
+ StyledIcon,
1136
+ {
1137
+ ...props,
1138
+ debug,
1139
+ "aria-hidden": true,
1140
+ size,
1141
+ viewBox: "0 0 24 24",
1142
+ fill: "none",
1143
+ ref: forwardRef2
1144
+ },
1145
+ /* @__PURE__ */ jsxRuntime.jsx(
1146
+ "path",
1147
+ {
1148
+ fill: "currentColor",
1149
+ 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"
1150
+ }
1151
+ )
1152
+ );
1153
+ }
1154
+ );
1155
+ IconArrowMobile[designSystemBaseIcon.iconSymbol] = true;
1156
+
1105
1157
  const IconArrowRightAwayLine = react.forwardRef(
1106
1158
  ({ size = "medium", ...props }, forwardRef2) => {
1107
1159
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -2614,6 +2666,84 @@ const IconChartBarY = react.forwardRef(
2614
2666
  );
2615
2667
  IconChartBarY[designSystemBaseIcon.iconSymbol] = true;
2616
2668
 
2669
+ const IconChartLine = react.forwardRef(
2670
+ ({ size = "medium", ...props }, forwardRef2) => {
2671
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
2672
+ return react.createElement(
2673
+ StyledIcon,
2674
+ {
2675
+ ...props,
2676
+ debug,
2677
+ "aria-hidden": true,
2678
+ size,
2679
+ viewBox: "0 0 24 24",
2680
+ fill: "none",
2681
+ ref: forwardRef2
2682
+ },
2683
+ /* @__PURE__ */ jsxRuntime.jsx(
2684
+ "path",
2685
+ {
2686
+ fill: "currentColor",
2687
+ 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"
2688
+ }
2689
+ )
2690
+ );
2691
+ }
2692
+ );
2693
+ IconChartLine[designSystemBaseIcon.iconSymbol] = true;
2694
+
2695
+ const IconChartNumber = react.forwardRef(
2696
+ ({ size = "medium", ...props }, forwardRef2) => {
2697
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
2698
+ return react.createElement(
2699
+ StyledIcon,
2700
+ {
2701
+ ...props,
2702
+ debug,
2703
+ "aria-hidden": true,
2704
+ size,
2705
+ viewBox: "0 0 24 24",
2706
+ fill: "none",
2707
+ ref: forwardRef2
2708
+ },
2709
+ /* @__PURE__ */ jsxRuntime.jsx(
2710
+ "path",
2711
+ {
2712
+ fill: "currentColor",
2713
+ 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"
2714
+ }
2715
+ )
2716
+ );
2717
+ }
2718
+ );
2719
+ IconChartNumber[designSystemBaseIcon.iconSymbol] = true;
2720
+
2721
+ const IconChartProgress = react.forwardRef(
2722
+ ({ size = "medium", ...props }, forwardRef2) => {
2723
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
2724
+ return react.createElement(
2725
+ StyledIcon,
2726
+ {
2727
+ ...props,
2728
+ debug,
2729
+ "aria-hidden": true,
2730
+ size,
2731
+ viewBox: "0 0 24 24",
2732
+ fill: "none",
2733
+ ref: forwardRef2
2734
+ },
2735
+ /* @__PURE__ */ jsxRuntime.jsx(
2736
+ "path",
2737
+ {
2738
+ fill: "currentColor",
2739
+ 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"
2740
+ }
2741
+ )
2742
+ );
2743
+ }
2744
+ );
2745
+ IconChartProgress[designSystemBaseIcon.iconSymbol] = true;
2746
+
2617
2747
  const IconChatCheck = react.forwardRef(
2618
2748
  ({ size = "medium", ...props }, forwardRef2) => {
2619
2749
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -4286,6 +4416,32 @@ const IconCrossFat = react.forwardRef(
4286
4416
  );
4287
4417
  IconCrossFat[designSystemBaseIcon.iconSymbol] = true;
4288
4418
 
4419
+ const IconCrossMobile = react.forwardRef(
4420
+ ({ size = "medium", ...props }, forwardRef2) => {
4421
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
4422
+ return react.createElement(
4423
+ StyledIcon,
4424
+ {
4425
+ ...props,
4426
+ debug,
4427
+ "aria-hidden": true,
4428
+ size,
4429
+ viewBox: "0 0 24 24",
4430
+ fill: "none",
4431
+ ref: forwardRef2
4432
+ },
4433
+ /* @__PURE__ */ jsxRuntime.jsx(
4434
+ "path",
4435
+ {
4436
+ fill: "currentColor",
4437
+ 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"
4438
+ }
4439
+ )
4440
+ );
4441
+ }
4442
+ );
4443
+ IconCrossMobile[designSystemBaseIcon.iconSymbol] = true;
4444
+
4289
4445
  const IconCrossSquare = react.forwardRef(
4290
4446
  ({ size = "medium", ...props }, forwardRef2) => {
4291
4447
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -4948,6 +5104,32 @@ const IconDiagramming = react.forwardRef(
4948
5104
  );
4949
5105
  IconDiagramming[designSystemBaseIcon.iconSymbol] = true;
4950
5106
 
5107
+ const IconDigit = react.forwardRef(
5108
+ ({ size = "medium", ...props }, forwardRef2) => {
5109
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
5110
+ return react.createElement(
5111
+ StyledIcon,
5112
+ {
5113
+ ...props,
5114
+ debug,
5115
+ "aria-hidden": true,
5116
+ size,
5117
+ viewBox: "0 0 24 24",
5118
+ fill: "none",
5119
+ ref: forwardRef2
5120
+ },
5121
+ /* @__PURE__ */ jsxRuntime.jsx(
5122
+ "path",
5123
+ {
5124
+ fill: "currentColor",
5125
+ 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"
5126
+ }
5127
+ )
5128
+ );
5129
+ }
5130
+ );
5131
+ IconDigit[designSystemBaseIcon.iconSymbol] = true;
5132
+
4951
5133
  const IconDistributeHorizontal = react.forwardRef(
4952
5134
  ({ size = "medium", ...props }, forwardRef2) => {
4953
5135
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -8764,6 +8946,34 @@ const IconOffice = react.forwardRef(
8764
8946
  );
8765
8947
  IconOffice[designSystemBaseIcon.iconSymbol] = true;
8766
8948
 
8949
+ const IconOrbitDouble = react.forwardRef(
8950
+ ({ size = "medium", ...props }, forwardRef2) => {
8951
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
8952
+ return react.createElement(
8953
+ StyledIcon,
8954
+ {
8955
+ ...props,
8956
+ debug,
8957
+ "aria-hidden": true,
8958
+ size,
8959
+ viewBox: "0 0 24 24",
8960
+ fill: "none",
8961
+ ref: forwardRef2
8962
+ },
8963
+ /* @__PURE__ */ jsxRuntime.jsx(
8964
+ "path",
8965
+ {
8966
+ fill: "currentColor",
8967
+ fillRule: "evenodd",
8968
+ 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",
8969
+ clipRule: "evenodd"
8970
+ }
8971
+ )
8972
+ );
8973
+ }
8974
+ );
8975
+ IconOrbitDouble[designSystemBaseIcon.iconSymbol] = true;
8976
+
8767
8977
  const IconOrgChart = react.forwardRef(
8768
8978
  ({ size = "medium", ...props }, forwardRef2) => {
8769
8979
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -9222,6 +9432,34 @@ const IconPeopleList = react.forwardRef(
9222
9432
  );
9223
9433
  IconPeopleList[designSystemBaseIcon.iconSymbol] = true;
9224
9434
 
9435
+ const IconPercent = react.forwardRef(
9436
+ ({ size = "medium", ...props }, forwardRef2) => {
9437
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
9438
+ return react.createElement(
9439
+ StyledIcon,
9440
+ {
9441
+ ...props,
9442
+ debug,
9443
+ "aria-hidden": true,
9444
+ size,
9445
+ viewBox: "0 0 24 24",
9446
+ fill: "none",
9447
+ ref: forwardRef2
9448
+ },
9449
+ /* @__PURE__ */ jsxRuntime.jsx(
9450
+ "path",
9451
+ {
9452
+ fill: "currentColor",
9453
+ fillRule: "evenodd",
9454
+ 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",
9455
+ clipRule: "evenodd"
9456
+ }
9457
+ )
9458
+ );
9459
+ }
9460
+ );
9461
+ IconPercent[designSystemBaseIcon.iconSymbol] = true;
9462
+
9225
9463
  const IconPersonInCircle = react.forwardRef(
9226
9464
  ({ size = "medium", ...props }, forwardRef2) => {
9227
9465
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -9858,6 +10096,34 @@ const IconPrevious = react.forwardRef(
9858
10096
  );
9859
10097
  IconPrevious[designSystemBaseIcon.iconSymbol] = true;
9860
10098
 
10099
+ const IconProgressBar = react.forwardRef(
10100
+ ({ size = "medium", ...props }, forwardRef2) => {
10101
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
10102
+ return react.createElement(
10103
+ StyledIcon,
10104
+ {
10105
+ ...props,
10106
+ debug,
10107
+ "aria-hidden": true,
10108
+ size,
10109
+ viewBox: "0 0 24 24",
10110
+ fill: "none",
10111
+ ref: forwardRef2
10112
+ },
10113
+ /* @__PURE__ */ jsxRuntime.jsx(
10114
+ "path",
10115
+ {
10116
+ fill: "currentColor",
10117
+ fillRule: "evenodd",
10118
+ d: "m22 8 1 1v5l-1 1H2l-1-1V9l1-1h20Zm-12 5h11v-3H10v3Z",
10119
+ clipRule: "evenodd"
10120
+ }
10121
+ )
10122
+ );
10123
+ }
10124
+ );
10125
+ IconProgressBar[designSystemBaseIcon.iconSymbol] = true;
10126
+
9861
10127
  const IconProhibit = react.forwardRef(
9862
10128
  ({ size = "medium", ...props }, forwardRef2) => {
9863
10129
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -12480,6 +12746,32 @@ const IconSquareLineSquareDashed = react.forwardRef(
12480
12746
  );
12481
12747
  IconSquareLineSquareDashed[designSystemBaseIcon.iconSymbol] = true;
12482
12748
 
12749
+ const IconSquarePencil = react.forwardRef(
12750
+ ({ size = "medium", ...props }, forwardRef2) => {
12751
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
12752
+ return react.createElement(
12753
+ StyledIcon,
12754
+ {
12755
+ ...props,
12756
+ debug,
12757
+ "aria-hidden": true,
12758
+ size,
12759
+ viewBox: "0 0 24 24",
12760
+ fill: "none",
12761
+ ref: forwardRef2
12762
+ },
12763
+ /* @__PURE__ */ jsxRuntime.jsx(
12764
+ "path",
12765
+ {
12766
+ fill: "currentColor",
12767
+ 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"
12768
+ }
12769
+ )
12770
+ );
12771
+ }
12772
+ );
12773
+ IconSquarePencil[designSystemBaseIcon.iconSymbol] = true;
12774
+
12483
12775
  const IconSquareRounded = react.forwardRef(
12484
12776
  ({ size = "medium", ...props }, forwardRef2) => {
12485
12777
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -15574,6 +15866,7 @@ exports.IconActivity = IconActivity;
15574
15866
  exports.IconAddLineBottom = IconAddLineBottom;
15575
15867
  exports.IconAddLineLeft = IconAddLineLeft;
15576
15868
  exports.IconAddLineRight = IconAddLineRight;
15869
+ exports.IconAiCursor = IconAiCursor;
15577
15870
  exports.IconAiText = IconAiText;
15578
15871
  exports.IconAlignBottom = IconAlignBottom;
15579
15872
  exports.IconAlignBottomGroup = IconAlignBottomGroup;
@@ -15611,6 +15904,7 @@ exports.IconArrowLeft = IconArrowLeft;
15611
15904
  exports.IconArrowLeftAwayLine = IconArrowLeftAwayLine;
15612
15905
  exports.IconArrowLeftRightDotted = IconArrowLeftRightDotted;
15613
15906
  exports.IconArrowLeftTowardLine = IconArrowLeftTowardLine;
15907
+ exports.IconArrowMobile = IconArrowMobile;
15614
15908
  exports.IconArrowRight = IconArrowRight;
15615
15909
  exports.IconArrowRightAwayLine = IconArrowRightAwayLine;
15616
15910
  exports.IconArrowRightTowardLine = IconArrowRightTowardLine;
@@ -15668,6 +15962,9 @@ exports.IconCardNumberThree = IconCardNumberThree;
15668
15962
  exports.IconCardsPoker = IconCardsPoker;
15669
15963
  exports.IconChartBarY = IconChartBarY;
15670
15964
  exports.IconChartBarYSimple = IconChartBarYSimple;
15965
+ exports.IconChartLine = IconChartLine;
15966
+ exports.IconChartNumber = IconChartNumber;
15967
+ exports.IconChartProgress = IconChartProgress;
15671
15968
  exports.IconChat = IconChat;
15672
15969
  exports.IconChatCheck = IconChatCheck;
15673
15970
  exports.IconChatCross = IconChatCross;
@@ -15732,6 +16029,7 @@ exports.IconCrop = IconCrop;
15732
16029
  exports.IconCross = IconCross;
15733
16030
  exports.IconCrossCircle = IconCrossCircle;
15734
16031
  exports.IconCrossFat = IconCrossFat;
16032
+ exports.IconCrossMobile = IconCrossMobile;
15735
16033
  exports.IconCrossSquare = IconCrossSquare;
15736
16034
  exports.IconCube = IconCube;
15737
16035
  exports.IconCursor = IconCursor;
@@ -15756,6 +16054,7 @@ exports.IconDiagramCardTeam = IconDiagramCardTeam;
15756
16054
  exports.IconDiagramCardUser = IconDiagramCardUser;
15757
16055
  exports.IconDiagramming = IconDiagramming;
15758
16056
  exports.IconDiagrammingShapes = IconDiagrammingShapes;
16057
+ exports.IconDigit = IconDigit;
15759
16058
  exports.IconDistributeHorizontal = IconDistributeHorizontal;
15760
16059
  exports.IconDistributeVertical = IconDistributeVertical;
15761
16060
  exports.IconDocFormat = IconDocFormat;
@@ -15900,6 +16199,7 @@ exports.IconNotepad = IconNotepad;
15900
16199
  exports.IconNumber = IconNumber;
15901
16200
  exports.IconOctagon = IconOctagon;
15902
16201
  exports.IconOffice = IconOffice;
16202
+ exports.IconOrbitDouble = IconOrbitDouble;
15903
16203
  exports.IconOrgChart = IconOrgChart;
15904
16204
  exports.IconOrientationHorizontal = IconOrientationHorizontal;
15905
16205
  exports.IconOrientationVertical = IconOrientationVertical;
@@ -15917,6 +16217,7 @@ exports.IconPenTip = IconPenTip;
15917
16217
  exports.IconPenUnderline = IconPenUnderline;
15918
16218
  exports.IconPentagon = IconPentagon;
15919
16219
  exports.IconPeopleList = IconPeopleList;
16220
+ exports.IconPercent = IconPercent;
15920
16221
  exports.IconPersonInCircle = IconPersonInCircle;
15921
16222
  exports.IconPhoneFilled = IconPhoneFilled;
15922
16223
  exports.IconPixelEraser = IconPixelEraser;
@@ -15941,6 +16242,7 @@ exports.IconPresentationNumberOne = IconPresentationNumberOne;
15941
16242
  exports.IconPresentationPlay = IconPresentationPlay;
15942
16243
  exports.IconPresentationPlus = IconPresentationPlus;
15943
16244
  exports.IconPrevious = IconPrevious;
16245
+ exports.IconProgressBar = IconProgressBar;
15944
16246
  exports.IconProhibit = IconProhibit;
15945
16247
  exports.IconProtoButton = IconProtoButton;
15946
16248
  exports.IconProtoCheckbox = IconProtoCheckbox;
@@ -16041,6 +16343,7 @@ exports.IconSquareBracketsAngleSlash = IconSquareBracketsAngleSlash;
16041
16343
  exports.IconSquareCirclesTwo = IconSquareCirclesTwo;
16042
16344
  exports.IconSquareFrame2LinesCircle = IconSquareFrame2LinesCircle;
16043
16345
  exports.IconSquareLineSquareDashed = IconSquareLineSquareDashed;
16346
+ exports.IconSquarePencil = IconSquarePencil;
16044
16347
  exports.IconSquareRounded = IconSquareRounded;
16045
16348
  exports.IconSquareStarScribble = IconSquareStarScribble;
16046
16349
  exports.IconSquareTriangleCirclePlus = IconSquareTriangleCirclePlus;