@mirohq/design-system-icons 1.21.0 → 1.23.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 +162 -0
- package/dist/main.js.map +1 -1
- package/dist/module.js +157 -1
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +13 -1
- package/package.json +2 -2
- package/react/aha.tsx +34 -0
- package/react/clickup.tsx +34 -0
- package/react/index.ts +6 -0
- package/react/linear.tsx +34 -0
- package/react/rally.tsx +34 -0
- package/react/slide-cursor-box.tsx +34 -0
- package/react/trello.tsx +34 -0
- package/svg/24/aha.svg +2 -0
- package/svg/24/clickup.svg +2 -0
- package/svg/24/linear.svg +2 -0
- package/svg/24/rally.svg +2 -0
- package/svg/24/slide-cursor-box.svg +2 -0
- package/svg/24/trello.svg +2 -0
- package/svg/meta.json +54 -0
package/dist/main.js
CHANGED
|
@@ -156,6 +156,32 @@ const IconAddLineRight = react.forwardRef(
|
|
|
156
156
|
);
|
|
157
157
|
IconAddLineRight[designSystemBaseIcon.iconSymbol] = true;
|
|
158
158
|
|
|
159
|
+
const IconAha = 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: "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"
|
|
178
|
+
}
|
|
179
|
+
)
|
|
180
|
+
);
|
|
181
|
+
}
|
|
182
|
+
);
|
|
183
|
+
IconAha[designSystemBaseIcon.iconSymbol] = true;
|
|
184
|
+
|
|
159
185
|
const IconAiCursor = react.forwardRef(
|
|
160
186
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
161
187
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -3870,6 +3896,32 @@ const IconCirclesConnected = react.forwardRef(
|
|
|
3870
3896
|
);
|
|
3871
3897
|
IconCirclesConnected[designSystemBaseIcon.iconSymbol] = true;
|
|
3872
3898
|
|
|
3899
|
+
const IconClickup = react.forwardRef(
|
|
3900
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
3901
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
3902
|
+
return react.createElement(
|
|
3903
|
+
StyledIcon,
|
|
3904
|
+
{
|
|
3905
|
+
...props,
|
|
3906
|
+
debug,
|
|
3907
|
+
"aria-hidden": true,
|
|
3908
|
+
size,
|
|
3909
|
+
viewBox: "0 0 24 24",
|
|
3910
|
+
fill: "none",
|
|
3911
|
+
ref: forwardRef2
|
|
3912
|
+
},
|
|
3913
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
3914
|
+
"path",
|
|
3915
|
+
{
|
|
3916
|
+
fill: "currentColor",
|
|
3917
|
+
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"
|
|
3918
|
+
}
|
|
3919
|
+
)
|
|
3920
|
+
);
|
|
3921
|
+
}
|
|
3922
|
+
);
|
|
3923
|
+
IconClickup[designSystemBaseIcon.iconSymbol] = true;
|
|
3924
|
+
|
|
3873
3925
|
const IconClockCounterClockwiseSimple = react.forwardRef(
|
|
3874
3926
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
3875
3927
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -7856,6 +7908,32 @@ const IconLineVertical = react.forwardRef(
|
|
|
7856
7908
|
);
|
|
7857
7909
|
IconLineVertical[designSystemBaseIcon.iconSymbol] = true;
|
|
7858
7910
|
|
|
7911
|
+
const IconLinear = react.forwardRef(
|
|
7912
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
7913
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
7914
|
+
return react.createElement(
|
|
7915
|
+
StyledIcon,
|
|
7916
|
+
{
|
|
7917
|
+
...props,
|
|
7918
|
+
debug,
|
|
7919
|
+
"aria-hidden": true,
|
|
7920
|
+
size,
|
|
7921
|
+
viewBox: "0 0 24 24",
|
|
7922
|
+
fill: "none",
|
|
7923
|
+
ref: forwardRef2
|
|
7924
|
+
},
|
|
7925
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
7926
|
+
"path",
|
|
7927
|
+
{
|
|
7928
|
+
fill: "currentColor",
|
|
7929
|
+
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"
|
|
7930
|
+
}
|
|
7931
|
+
)
|
|
7932
|
+
);
|
|
7933
|
+
}
|
|
7934
|
+
);
|
|
7935
|
+
IconLinear[designSystemBaseIcon.iconSymbol] = true;
|
|
7936
|
+
|
|
7859
7937
|
const IconLinesThreeHorizontalLineVerticalCenter = react.forwardRef(({ size = "medium", ...props }, forwardRef2) => {
|
|
7860
7938
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
7861
7939
|
return react.createElement(
|
|
@@ -10972,6 +11050,32 @@ const IconRaisedHand = react.forwardRef(
|
|
|
10972
11050
|
);
|
|
10973
11051
|
IconRaisedHand[designSystemBaseIcon.iconSymbol] = true;
|
|
10974
11052
|
|
|
11053
|
+
const IconRally = react.forwardRef(
|
|
11054
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
11055
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
11056
|
+
return react.createElement(
|
|
11057
|
+
StyledIcon,
|
|
11058
|
+
{
|
|
11059
|
+
...props,
|
|
11060
|
+
debug,
|
|
11061
|
+
"aria-hidden": true,
|
|
11062
|
+
size,
|
|
11063
|
+
viewBox: "0 0 24 24",
|
|
11064
|
+
fill: "none",
|
|
11065
|
+
ref: forwardRef2
|
|
11066
|
+
},
|
|
11067
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
11068
|
+
"path",
|
|
11069
|
+
{
|
|
11070
|
+
fill: "currentColor",
|
|
11071
|
+
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"
|
|
11072
|
+
}
|
|
11073
|
+
)
|
|
11074
|
+
);
|
|
11075
|
+
}
|
|
11076
|
+
);
|
|
11077
|
+
IconRally[designSystemBaseIcon.iconSymbol] = true;
|
|
11078
|
+
|
|
10975
11079
|
const IconRatio169 = react.forwardRef(
|
|
10976
11080
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
10977
11081
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -12352,6 +12456,32 @@ const IconSingleSparksFilled = react.forwardRef(
|
|
|
12352
12456
|
);
|
|
12353
12457
|
IconSingleSparksFilled[designSystemBaseIcon.iconSymbol] = true;
|
|
12354
12458
|
|
|
12459
|
+
const IconSlideCursorBox = react.forwardRef(
|
|
12460
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
12461
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
12462
|
+
return react.createElement(
|
|
12463
|
+
StyledIcon,
|
|
12464
|
+
{
|
|
12465
|
+
...props,
|
|
12466
|
+
debug,
|
|
12467
|
+
"aria-hidden": true,
|
|
12468
|
+
size,
|
|
12469
|
+
viewBox: "0 0 24 24",
|
|
12470
|
+
fill: "none",
|
|
12471
|
+
ref: forwardRef2
|
|
12472
|
+
},
|
|
12473
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
12474
|
+
"path",
|
|
12475
|
+
{
|
|
12476
|
+
fill: "currentColor",
|
|
12477
|
+
d: "M20 7a1 1 0 0 0-1-1H5a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h7v2H5a3 3 0 0 1-3-3V7a3 3 0 0 1 3-3h14a3 3 0 0 1 3 3v6h-2V7Zm-3.535 16h1.145c.654-2.672 2.743-4.783 5.39-5.446V16.35L13.923 13l-.923.93L16.465 23Zm2.836-5.884a9.486 9.486 0 0 0-2.126 2.139l-1.301-3.403 3.427 1.264ZM8 10v2h2v-2H8Zm-.75 4C6.56 14 6 13.44 6 12.75v-3.5C6 8.56 6.56 8 7.25 8h3.5c.69 0 1.25.56 1.25 1.25v3.5c0 .69-.56 1.25-1.25 1.25h-3.5ZM18 9v2h-4V9h4Z"
|
|
12478
|
+
}
|
|
12479
|
+
)
|
|
12480
|
+
);
|
|
12481
|
+
}
|
|
12482
|
+
);
|
|
12483
|
+
IconSlideCursorBox[designSystemBaseIcon.iconSymbol] = true;
|
|
12484
|
+
|
|
12355
12485
|
const IconSlideFormat = react.forwardRef(
|
|
12356
12486
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
12357
12487
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -15368,6 +15498,32 @@ const IconTrash = react.forwardRef(
|
|
|
15368
15498
|
);
|
|
15369
15499
|
IconTrash[designSystemBaseIcon.iconSymbol] = true;
|
|
15370
15500
|
|
|
15501
|
+
const IconTrello = react.forwardRef(
|
|
15502
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
15503
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
15504
|
+
return react.createElement(
|
|
15505
|
+
StyledIcon,
|
|
15506
|
+
{
|
|
15507
|
+
...props,
|
|
15508
|
+
debug,
|
|
15509
|
+
"aria-hidden": true,
|
|
15510
|
+
size,
|
|
15511
|
+
viewBox: "0 0 24 24",
|
|
15512
|
+
fill: "none",
|
|
15513
|
+
ref: forwardRef2
|
|
15514
|
+
},
|
|
15515
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
15516
|
+
"path",
|
|
15517
|
+
{
|
|
15518
|
+
fill: "currentColor",
|
|
15519
|
+
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"
|
|
15520
|
+
}
|
|
15521
|
+
)
|
|
15522
|
+
);
|
|
15523
|
+
}
|
|
15524
|
+
);
|
|
15525
|
+
IconTrello[designSystemBaseIcon.iconSymbol] = true;
|
|
15526
|
+
|
|
15371
15527
|
const IconTriangleSquareCircle = react.forwardRef(
|
|
15372
15528
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
15373
15529
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -16531,6 +16687,7 @@ exports.IconActivitySparkle = IconActivitySparkle;
|
|
|
16531
16687
|
exports.IconAddLineBottom = IconAddLineBottom;
|
|
16532
16688
|
exports.IconAddLineLeft = IconAddLineLeft;
|
|
16533
16689
|
exports.IconAddLineRight = IconAddLineRight;
|
|
16690
|
+
exports.IconAha = IconAha;
|
|
16534
16691
|
exports.IconAiCursor = IconAiCursor;
|
|
16535
16692
|
exports.IconAiText = IconAiText;
|
|
16536
16693
|
exports.IconAlignBottom = IconAlignBottom;
|
|
@@ -16672,6 +16829,7 @@ exports.IconCircleNotch = IconCircleNotch;
|
|
|
16672
16829
|
exports.IconCircleSlash = IconCircleSlash;
|
|
16673
16830
|
exports.IconCircleTarget = IconCircleTarget;
|
|
16674
16831
|
exports.IconCirclesConnected = IconCirclesConnected;
|
|
16832
|
+
exports.IconClickup = IconClickup;
|
|
16675
16833
|
exports.IconClock = IconClock;
|
|
16676
16834
|
exports.IconClockCounterClockwise = IconClockCounterClockwise;
|
|
16677
16835
|
exports.IconClockCounterClockwiseSimple = IconClockCounterClockwiseSimple;
|
|
@@ -16822,6 +16980,7 @@ exports.IconLineOrthogonal = IconLineOrthogonal;
|
|
|
16822
16980
|
exports.IconLineStraight = IconLineStraight;
|
|
16823
16981
|
exports.IconLineTwoDiagonalTopRightDouble = IconLineTwoDiagonalTopRightDouble;
|
|
16824
16982
|
exports.IconLineVertical = IconLineVertical;
|
|
16983
|
+
exports.IconLinear = IconLinear;
|
|
16825
16984
|
exports.IconLinesThreeHorizontal = IconLinesThreeHorizontal;
|
|
16826
16985
|
exports.IconLinesThreeHorizontalLineVerticalCenter = IconLinesThreeHorizontalLineVerticalCenter;
|
|
16827
16986
|
exports.IconLinesThreeVertical = IconLinesThreeVertical;
|
|
@@ -16939,6 +17098,7 @@ exports.IconQuestionMark = IconQuestionMark;
|
|
|
16939
17098
|
exports.IconQuestionMarkCircle = IconQuestionMarkCircle;
|
|
16940
17099
|
exports.IconQuotes = IconQuotes;
|
|
16941
17100
|
exports.IconRaisedHand = IconRaisedHand;
|
|
17101
|
+
exports.IconRally = IconRally;
|
|
16942
17102
|
exports.IconRatio169 = IconRatio169;
|
|
16943
17103
|
exports.IconRatio43 = IconRatio43;
|
|
16944
17104
|
exports.IconRatioSquare = IconRatioSquare;
|
|
@@ -16991,6 +17151,7 @@ exports.IconSidebarGlobalClosed = IconSidebarGlobalClosed;
|
|
|
16991
17151
|
exports.IconSidebarGlobalOpen = IconSidebarGlobalOpen;
|
|
16992
17152
|
exports.IconSidebarOpen = IconSidebarOpen;
|
|
16993
17153
|
exports.IconSingleSparksFilled = IconSingleSparksFilled;
|
|
17154
|
+
exports.IconSlideCursorBox = IconSlideCursorBox;
|
|
16994
17155
|
exports.IconSlideFormat = IconSlideFormat;
|
|
16995
17156
|
exports.IconSlidersX = IconSlidersX;
|
|
16996
17157
|
exports.IconSlidersY = IconSlidersY;
|
|
@@ -17104,6 +17265,7 @@ exports.IconTrackpad = IconTrackpad;
|
|
|
17104
17265
|
exports.IconTrapeze = IconTrapeze;
|
|
17105
17266
|
exports.IconTrash = IconTrash;
|
|
17106
17267
|
exports.IconTrashSimple = IconTrashSimple;
|
|
17268
|
+
exports.IconTrello = IconTrello;
|
|
17107
17269
|
exports.IconTriangle = IconTriangle;
|
|
17108
17270
|
exports.IconTriangleSquareCircle = IconTriangleSquareCircle;
|
|
17109
17271
|
exports.IconTrident = IconTrident;
|