@mirohq/design-system-icons 1.22.0 → 1.24.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
@@ -156,6 +156,58 @@ const IconAddLineRight = react.forwardRef(
156
156
  );
157
157
  IconAddLineRight[designSystemBaseIcon.iconSymbol] = true;
158
158
 
159
+ const IconAddLineTop = react.forwardRef(
160
+ ({ size = "medium", ...props }, forwardRef2) => {
161
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
162
+ return react.createElement(
163
+ StyledIcon,
164
+ {
165
+ ...props,
166
+ debug,
167
+ "aria-hidden": true,
168
+ size,
169
+ viewBox: "0 0 24 24",
170
+ fill: "none",
171
+ ref: forwardRef2
172
+ },
173
+ /* @__PURE__ */ jsxRuntime.jsx(
174
+ "path",
175
+ {
176
+ fill: "currentColor",
177
+ d: "M11 14v-4H7V8h4V4h2v4h4v2h-4v4h-2Zm-9 6v-2h20v2H2Z"
178
+ }
179
+ )
180
+ );
181
+ }
182
+ );
183
+ IconAddLineTop[designSystemBaseIcon.iconSymbol] = true;
184
+
185
+ const IconAha = react.forwardRef(
186
+ ({ size = "medium", ...props }, forwardRef2) => {
187
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
188
+ return react.createElement(
189
+ StyledIcon,
190
+ {
191
+ ...props,
192
+ debug,
193
+ "aria-hidden": true,
194
+ size,
195
+ viewBox: "0 0 24 24",
196
+ fill: "none",
197
+ ref: forwardRef2
198
+ },
199
+ /* @__PURE__ */ jsxRuntime.jsx(
200
+ "path",
201
+ {
202
+ fill: "currentColor",
203
+ d: "m2.67 14.385-.422 1.883c0 .056-.056.084-.112.084H.112c-.028 0-.084-.028-.084-.056C0 16.268 0 16.24 0 16.212l2.67-8.094s.056-.14.225-.196c.59-.113 1.517-.253 2.164-.366.14-.028.196.113.196.113l2.614 8.6c0 .027 0 .055-.028.084-.028.028-.056.028-.085.028h-1.18c-.309 0-.927.028-1.152.028-.056 0-.113-.028-.113-.085l-.421-1.91-2.22-.029Zm1.883-1.658c-.169-.674-.422-1.883-.675-2.923a88.65 88.65 0 0 1-.759 2.923h1.434Zm5.986-1.995c1.433-.984 2.641-.759 3.232-.169.702.731.309 1.686.534 5.705 0 .028 0 .056-.029.084-.028.029-.056.029-.084.029-.225 0-.646-.029-.843-.029-.337 0-1.04.029-1.32.029-.029 0-.057 0-.085-.029-.028-.028-.028-.056-.028-.084.028-3.934.056-4.468-.647-4.468-.253 0-.45.112-.674.196 0 2.024.028 2.614.112 4.244 0 .028 0 .056-.028.056-.028.028-.056.028-.056.028l-2.248.028c-.028 0-.057 0-.057-.028-.028-.028-.028-.056-.028-.056.057-5.873 0-7.082-.168-8.318-.085-.057.028-.057.028-.057 1.012-.14 1.096-.168 2.248-.393 0 0 .113 0 .113.14.028.872.028 3.092.028 3.092Zm7.7 5.03c-.422.31-1.237.731-1.911.731-1.04 0-1.686-.759-1.686-1.883 0-1.742 2.051-2.248 3.512-2.445.029-.28.029-.59-.702-.59-.73 0-1.349.225-1.995.478-.029.028-.085 0-.113 0-.028-.028-.056-.057-.056-.113l.056-1.349c0-.056.028-.084.085-.112 1.32-.393 3.569-.703 4.496.169.59.534.562 1.208.534 2.332-.028 1.63 0 2.08.084 3.288 0 .028 0 .056-.028.084-.028.029-.056.029-.084.029l-2.08.028c-.028 0-.056 0-.084-.028-.028-.029-.028-.057-.028-.085v-.534Zm-.056-2.332c-.534.056-1.35.112-1.35.815 0 .618.675.815 1.35.393V13.43Zm3.765.028a.121.121 0 0 1-.112-.113c-.14-3.063-.168-3.4-.337-5.311 0-.056.028-.112.112-.14l2.248-.366c.029 0 .085 0 .113.028.028.028.028.056.028.113-.14 1.377-.281 3.99-.31 5.648a.12.12 0 0 1-.112.113l-1.63.028Zm-.392 2.609-.001-.028c0-.382.01-.772.012-1.111 0-.125-.004-.25-.012-.374 0-.02 0-.039.009-.058a4.448 4.448 0 0 0-.009-.193c0-.029 0-.057.028-.086.03-.028.058-.028.086-.028.569.057 1.565.028 2.02-.029.029 0 .057 0 .086.029.028.028.028.057.028.085a18.338 18.338 0 0 1 0 .252v1.742c0 .028 0 .056-.028.084-.028.029-.056.029-.084.029-.815-.029-1.321-.029-2.023.028-.029 0-.057 0-.085-.028-.028-.029-.028-.057-.028-.085l.001-.23Z"
204
+ }
205
+ )
206
+ );
207
+ }
208
+ );
209
+ IconAha[designSystemBaseIcon.iconSymbol] = true;
210
+
159
211
  const IconAiCursor = react.forwardRef(
160
212
  ({ size = "medium", ...props }, forwardRef2) => {
161
213
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -3870,6 +3922,32 @@ const IconCirclesConnected = react.forwardRef(
3870
3922
  );
3871
3923
  IconCirclesConnected[designSystemBaseIcon.iconSymbol] = true;
3872
3924
 
3925
+ const IconClickup = react.forwardRef(
3926
+ ({ size = "medium", ...props }, forwardRef2) => {
3927
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
3928
+ return react.createElement(
3929
+ StyledIcon,
3930
+ {
3931
+ ...props,
3932
+ debug,
3933
+ "aria-hidden": true,
3934
+ size,
3935
+ viewBox: "0 0 24 24",
3936
+ fill: "none",
3937
+ ref: forwardRef2
3938
+ },
3939
+ /* @__PURE__ */ jsxRuntime.jsx(
3940
+ "path",
3941
+ {
3942
+ fill: "currentColor",
3943
+ d: "m3 17.366 3.322-2.356c1.764 2.132 3.64 3.115 5.726 3.115 2.076 0 3.898-.971 5.583-3.087l3.369 2.3C18.569 20.387 15.547 22 12.048 22 8.561 22 5.51 20.398 3 17.366Zm9.037-10.24-5.912 4.716-2.733-2.934L12.05 2l8.589 6.913-2.746 2.924-5.856-4.712Z"
3944
+ }
3945
+ )
3946
+ );
3947
+ }
3948
+ );
3949
+ IconClickup[designSystemBaseIcon.iconSymbol] = true;
3950
+
3873
3951
  const IconClockCounterClockwiseSimple = react.forwardRef(
3874
3952
  ({ size = "medium", ...props }, forwardRef2) => {
3875
3953
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -7856,6 +7934,32 @@ const IconLineVertical = react.forwardRef(
7856
7934
  );
7857
7935
  IconLineVertical[designSystemBaseIcon.iconSymbol] = true;
7858
7936
 
7937
+ const IconLinear = react.forwardRef(
7938
+ ({ size = "medium", ...props }, forwardRef2) => {
7939
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
7940
+ return react.createElement(
7941
+ StyledIcon,
7942
+ {
7943
+ ...props,
7944
+ debug,
7945
+ "aria-hidden": true,
7946
+ size,
7947
+ viewBox: "0 0 24 24",
7948
+ fill: "none",
7949
+ ref: forwardRef2
7950
+ },
7951
+ /* @__PURE__ */ jsxRuntime.jsx(
7952
+ "path",
7953
+ {
7954
+ fill: "currentColor",
7955
+ d: "M2.245 14.304c-.044-.19.182-.31.32-.17l7.302 7.302c.138.137.018.363-.171.319a10.023 10.023 0 0 1-7.45-7.451ZM2 11.377a.2.2 0 0 0 .059.153L12.47 21.94a.2.2 0 0 0 .153.059c.473-.03.938-.093 1.392-.186a.194.194 0 0 0 .095-.33L2.515 9.89a.194.194 0 0 0-.329.095c-.093.454-.156.919-.186 1.392Zm.843-3.436a.198.198 0 0 0 .04.22L15.84 21.116a.198.198 0 0 0 .22.041 9.773 9.773 0 0 0 1.037-.537.196.196 0 0 0 .037-.308L3.688 6.867a.196.196 0 0 0-.309.037 9.99 9.99 0 0 0-.536 1.037Zm1.689-2.326a.198.198 0 0 1-.01-.27A9.985 9.985 0 0 1 11.99 2C17.518 2 22 6.482 22 12.01a9.985 9.985 0 0 1-3.344 7.467.198.198 0 0 1-.27-.009L4.531 5.615Z"
7956
+ }
7957
+ )
7958
+ );
7959
+ }
7960
+ );
7961
+ IconLinear[designSystemBaseIcon.iconSymbol] = true;
7962
+
7859
7963
  const IconLinesThreeHorizontalLineVerticalCenter = react.forwardRef(({ size = "medium", ...props }, forwardRef2) => {
7860
7964
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
7861
7965
  return react.createElement(
@@ -10972,6 +11076,32 @@ const IconRaisedHand = react.forwardRef(
10972
11076
  );
10973
11077
  IconRaisedHand[designSystemBaseIcon.iconSymbol] = true;
10974
11078
 
11079
+ const IconRally = react.forwardRef(
11080
+ ({ size = "medium", ...props }, forwardRef2) => {
11081
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
11082
+ return react.createElement(
11083
+ StyledIcon,
11084
+ {
11085
+ ...props,
11086
+ debug,
11087
+ "aria-hidden": true,
11088
+ size,
11089
+ viewBox: "0 0 24 24",
11090
+ fill: "none",
11091
+ ref: forwardRef2
11092
+ },
11093
+ /* @__PURE__ */ jsxRuntime.jsx(
11094
+ "path",
11095
+ {
11096
+ fill: "currentColor",
11097
+ d: "M10.198 18.613A3.8 3.8 0 0 1 8.82 17.23a3.757 3.757 0 1 1 4.95 1.485 1.875 1.875 0 1 0-3.571-.103Zm-2.206-.8a7.103 7.103 0 0 1-2.179-2.52 6.969 6.969 0 0 1-.775-3.215 7.04 7.04 0 1 1 14.081 0 6.969 6.969 0 0 1-.776 3.216 7.103 7.103 0 0 1-2.178 2.518 4.765 4.765 0 1 0-8.173 0Zm4.087 2.311a8.046 8.046 0 1 0-.001-16.092 8.047 8.047 0 0 0-.001 16.092h.002ZM12 22c-5.523 0-10-4.475-10-9.998S6.477 2 12 2s10 4.478 10 10.001S17.523 22 12 22v-.001Z"
11098
+ }
11099
+ )
11100
+ );
11101
+ }
11102
+ );
11103
+ IconRally[designSystemBaseIcon.iconSymbol] = true;
11104
+
10975
11105
  const IconRatio169 = react.forwardRef(
10976
11106
  ({ size = "medium", ...props }, forwardRef2) => {
10977
11107
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -15394,6 +15524,32 @@ const IconTrash = react.forwardRef(
15394
15524
  );
15395
15525
  IconTrash[designSystemBaseIcon.iconSymbol] = true;
15396
15526
 
15527
+ const IconTrello = react.forwardRef(
15528
+ ({ size = "medium", ...props }, forwardRef2) => {
15529
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
15530
+ return react.createElement(
15531
+ StyledIcon,
15532
+ {
15533
+ ...props,
15534
+ debug,
15535
+ "aria-hidden": true,
15536
+ size,
15537
+ viewBox: "0 0 24 24",
15538
+ fill: "none",
15539
+ ref: forwardRef2
15540
+ },
15541
+ /* @__PURE__ */ jsxRuntime.jsx(
15542
+ "path",
15543
+ {
15544
+ fill: "currentColor",
15545
+ d: "M20.047 2C21.126 2 22 2.874 22 3.953v16.094A1.953 1.953 0 0 1 20.047 22H3.953A1.953 1.953 0 0 1 2 20.047V3.953C2 2.874 2.874 2 3.953 2h16.094ZM5.538 4.6a.938.938 0 0 0-.937.937v11.875c0 .518.42.938.937.938h4.225c.517 0 .937-.42.937-.938V5.537a.938.938 0 0 0-.937-.937H5.538Zm8.7 0a.938.938 0 0 0-.938.937v6.875c0 .518.42.938.937.938h4.225c.518 0 .937-.42.937-.938V5.537a.938.938 0 0 0-.937-.937h-4.225Z"
15546
+ }
15547
+ )
15548
+ );
15549
+ }
15550
+ );
15551
+ IconTrello[designSystemBaseIcon.iconSymbol] = true;
15552
+
15397
15553
  const IconTriangleSquareCircle = react.forwardRef(
15398
15554
  ({ size = "medium", ...props }, forwardRef2) => {
15399
15555
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -16557,6 +16713,8 @@ exports.IconActivitySparkle = IconActivitySparkle;
16557
16713
  exports.IconAddLineBottom = IconAddLineBottom;
16558
16714
  exports.IconAddLineLeft = IconAddLineLeft;
16559
16715
  exports.IconAddLineRight = IconAddLineRight;
16716
+ exports.IconAddLineTop = IconAddLineTop;
16717
+ exports.IconAha = IconAha;
16560
16718
  exports.IconAiCursor = IconAiCursor;
16561
16719
  exports.IconAiText = IconAiText;
16562
16720
  exports.IconAlignBottom = IconAlignBottom;
@@ -16698,6 +16856,7 @@ exports.IconCircleNotch = IconCircleNotch;
16698
16856
  exports.IconCircleSlash = IconCircleSlash;
16699
16857
  exports.IconCircleTarget = IconCircleTarget;
16700
16858
  exports.IconCirclesConnected = IconCirclesConnected;
16859
+ exports.IconClickup = IconClickup;
16701
16860
  exports.IconClock = IconClock;
16702
16861
  exports.IconClockCounterClockwise = IconClockCounterClockwise;
16703
16862
  exports.IconClockCounterClockwiseSimple = IconClockCounterClockwiseSimple;
@@ -16848,6 +17007,7 @@ exports.IconLineOrthogonal = IconLineOrthogonal;
16848
17007
  exports.IconLineStraight = IconLineStraight;
16849
17008
  exports.IconLineTwoDiagonalTopRightDouble = IconLineTwoDiagonalTopRightDouble;
16850
17009
  exports.IconLineVertical = IconLineVertical;
17010
+ exports.IconLinear = IconLinear;
16851
17011
  exports.IconLinesThreeHorizontal = IconLinesThreeHorizontal;
16852
17012
  exports.IconLinesThreeHorizontalLineVerticalCenter = IconLinesThreeHorizontalLineVerticalCenter;
16853
17013
  exports.IconLinesThreeVertical = IconLinesThreeVertical;
@@ -16965,6 +17125,7 @@ exports.IconQuestionMark = IconQuestionMark;
16965
17125
  exports.IconQuestionMarkCircle = IconQuestionMarkCircle;
16966
17126
  exports.IconQuotes = IconQuotes;
16967
17127
  exports.IconRaisedHand = IconRaisedHand;
17128
+ exports.IconRally = IconRally;
16968
17129
  exports.IconRatio169 = IconRatio169;
16969
17130
  exports.IconRatio43 = IconRatio43;
16970
17131
  exports.IconRatioSquare = IconRatioSquare;
@@ -17131,6 +17292,7 @@ exports.IconTrackpad = IconTrackpad;
17131
17292
  exports.IconTrapeze = IconTrapeze;
17132
17293
  exports.IconTrash = IconTrash;
17133
17294
  exports.IconTrashSimple = IconTrashSimple;
17295
+ exports.IconTrello = IconTrello;
17134
17296
  exports.IconTriangle = IconTriangle;
17135
17297
  exports.IconTriangleSquareCircle = IconTriangleSquareCircle;
17136
17298
  exports.IconTrident = IconTrident;