@mirohq/design-system-icons 1.26.1 → 1.27.1
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 +109 -1
- package/dist/main.js.map +1 -1
- package/dist/module.js +106 -2
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +9 -1
- package/package.json +3 -3
- package/react/arrows-out-lines-vertical.tsx +34 -0
- package/react/dots-three.tsx +1 -1
- package/react/index.ts +4 -0
- package/react/link-variant.tsx +34 -0
- package/react/resize.tsx +34 -0
- package/react/squares-row-downwards.tsx +34 -0
- package/svg/24/arrows-out-lines-vertical.svg +2 -0
- package/svg/24/dots-three.svg +1 -1
- package/svg/24/link-variant.svg +2 -0
- package/svg/24/resize.svg +2 -0
- package/svg/24/squares-row-downwards.svg +2 -0
- package/svg/meta.json +55 -4
package/dist/main.js
CHANGED
|
@@ -1726,6 +1726,32 @@ const IconArrowsOutLinesHorizontal = react.forwardRef(
|
|
|
1726
1726
|
);
|
|
1727
1727
|
IconArrowsOutLinesHorizontal[designSystemBaseIcon.iconSymbol] = true;
|
|
1728
1728
|
|
|
1729
|
+
const IconArrowsOutLinesVertical = react.forwardRef(
|
|
1730
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
1731
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
1732
|
+
return react.createElement(
|
|
1733
|
+
StyledIcon,
|
|
1734
|
+
{
|
|
1735
|
+
...props,
|
|
1736
|
+
debug,
|
|
1737
|
+
"aria-hidden": true,
|
|
1738
|
+
size,
|
|
1739
|
+
viewBox: "0 0 24 24",
|
|
1740
|
+
fill: "none",
|
|
1741
|
+
ref: forwardRef2
|
|
1742
|
+
},
|
|
1743
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
1744
|
+
"path",
|
|
1745
|
+
{
|
|
1746
|
+
fill: "currentColor",
|
|
1747
|
+
d: "M18 23H6v-2h12v2ZM15.707 7.293l-1.414 1.414L13 7.414v9.172l1.293-1.293 1.414 1.414-3 3h-1.414l-3-3 1.414-1.414L11 16.586V7.414L9.707 8.707 8.293 7.293l3-3h1.414l3 3ZM18 3H6V1h12v2Z"
|
|
1748
|
+
}
|
|
1749
|
+
)
|
|
1750
|
+
);
|
|
1751
|
+
}
|
|
1752
|
+
);
|
|
1753
|
+
IconArrowsOutLinesVertical[designSystemBaseIcon.iconSymbol] = true;
|
|
1754
|
+
|
|
1729
1755
|
const IconArrowsOutSimple = react.forwardRef(
|
|
1730
1756
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
1731
1757
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -5724,7 +5750,7 @@ const IconDotsThree = react.forwardRef(
|
|
|
5724
5750
|
"path",
|
|
5725
5751
|
{
|
|
5726
5752
|
fill: "currentColor",
|
|
5727
|
-
d: "
|
|
5753
|
+
d: "M12 7a2 2 0 1 1 0-4 2 2 0 0 1 0 4Zm0 7a2 2 0 1 1 0-4 2 2 0 0 1 0 4Zm0 7a2 2 0 1 1 0-4 2 2 0 0 1 0 4Z"
|
|
5728
5754
|
}
|
|
5729
5755
|
)
|
|
5730
5756
|
);
|
|
@@ -8168,6 +8194,32 @@ const IconLinkPlus = react.forwardRef(
|
|
|
8168
8194
|
);
|
|
8169
8195
|
IconLinkPlus[designSystemBaseIcon.iconSymbol] = true;
|
|
8170
8196
|
|
|
8197
|
+
const IconLinkVariant = react.forwardRef(
|
|
8198
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
8199
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
8200
|
+
return react.createElement(
|
|
8201
|
+
StyledIcon,
|
|
8202
|
+
{
|
|
8203
|
+
...props,
|
|
8204
|
+
debug,
|
|
8205
|
+
"aria-hidden": true,
|
|
8206
|
+
size,
|
|
8207
|
+
viewBox: "0 0 24 24",
|
|
8208
|
+
fill: "none",
|
|
8209
|
+
ref: forwardRef2
|
|
8210
|
+
},
|
|
8211
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
8212
|
+
"path",
|
|
8213
|
+
{
|
|
8214
|
+
fill: "currentColor",
|
|
8215
|
+
d: "M1 12c0-3.248 2.474-6 5.667-6H10v2H6.667C4.706 8 3 9.725 3 12s1.706 4 3.667 4H10v2H6.667c-3.094 0-5.512-2.583-5.66-5.697L1 12Zm20 0c0-2.275-1.706-4-3.667-4H14V6h3.333C20.527 6 23 8.752 23 12l-.007.303C22.845 15.417 20.427 18 17.333 18H14v-2h3.333C19.294 16 21 14.275 21 12Zm-4.757 1H7.757v-2h8.486v2Z"
|
|
8216
|
+
}
|
|
8217
|
+
)
|
|
8218
|
+
);
|
|
8219
|
+
}
|
|
8220
|
+
);
|
|
8221
|
+
IconLinkVariant[designSystemBaseIcon.iconSymbol] = true;
|
|
8222
|
+
|
|
8171
8223
|
const IconLink = react.forwardRef(
|
|
8172
8224
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
8173
8225
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -11940,6 +11992,32 @@ const IconRectanglesTwoUser = react.forwardRef(
|
|
|
11940
11992
|
);
|
|
11941
11993
|
IconRectanglesTwoUser[designSystemBaseIcon.iconSymbol] = true;
|
|
11942
11994
|
|
|
11995
|
+
const IconResize = react.forwardRef(
|
|
11996
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
11997
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
11998
|
+
return react.createElement(
|
|
11999
|
+
StyledIcon,
|
|
12000
|
+
{
|
|
12001
|
+
...props,
|
|
12002
|
+
debug,
|
|
12003
|
+
"aria-hidden": true,
|
|
12004
|
+
size,
|
|
12005
|
+
viewBox: "0 0 24 24",
|
|
12006
|
+
fill: "none",
|
|
12007
|
+
ref: forwardRef2
|
|
12008
|
+
},
|
|
12009
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
12010
|
+
"path",
|
|
12011
|
+
{
|
|
12012
|
+
fill: "currentColor",
|
|
12013
|
+
d: "M4 18.667C4 19.281 4.886 20 5.5 20H8v2H5.333A3.333 3.333 0 0 1 2 18.667V16h2v2.667ZM14 22h-4v-2h4v2Zm8-3.333A3.333 3.333 0 0 1 18.667 22H16v-2h2.667C19.28 20 20 19.28 20 18.667V16h2v2.667ZM4 14H2v-4h2v4Zm18 0h-2v-4h2v4ZM8 4H5.333C4.72 4 4 4.72 4 5.333V8H2V5.333A3.333 3.333 0 0 1 5.333 2H8v2Zm10.667-2A3.333 3.333 0 0 1 22 5.333V8h-2V5.333C20 4.72 19.28 4 18.667 4H16V2h2.667ZM14 4h-4V2h4v2Zm-1.61 4.403-2.48.092 2.09 2.09L10.586 12 8.495 9.91l-.092 2.48-1.998-.073.176-4.773.963-.963 4.773-.176.073 1.998Zm5.029 8.053-.963.963-4.773.176-.073-1.998 2.48-.092-2.09-2.09L13.414 12l2.091 2.09.092-2.48 1.998.073-.176 4.773Z"
|
|
12014
|
+
}
|
|
12015
|
+
)
|
|
12016
|
+
);
|
|
12017
|
+
}
|
|
12018
|
+
);
|
|
12019
|
+
IconResize[designSystemBaseIcon.iconSymbol] = true;
|
|
12020
|
+
|
|
11943
12021
|
const IconRhombus = react.forwardRef(
|
|
11944
12022
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
11945
12023
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -13778,6 +13856,32 @@ const IconSquaresMerge = react.forwardRef(
|
|
|
13778
13856
|
);
|
|
13779
13857
|
IconSquaresMerge[designSystemBaseIcon.iconSymbol] = true;
|
|
13780
13858
|
|
|
13859
|
+
const IconSquaresRowDownwards = react.forwardRef(
|
|
13860
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
13861
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
13862
|
+
return react.createElement(
|
|
13863
|
+
StyledIcon,
|
|
13864
|
+
{
|
|
13865
|
+
...props,
|
|
13866
|
+
debug,
|
|
13867
|
+
"aria-hidden": true,
|
|
13868
|
+
size,
|
|
13869
|
+
viewBox: "0 0 24 24",
|
|
13870
|
+
fill: "none",
|
|
13871
|
+
ref: forwardRef2
|
|
13872
|
+
},
|
|
13873
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
13874
|
+
"path",
|
|
13875
|
+
{
|
|
13876
|
+
fill: "currentColor",
|
|
13877
|
+
d: "M5 7v2h2V7H5Zm4 2a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v2Zm3-2v2h2V7h-2Zm4 2a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v2Zm4 6a3 3 0 0 1-3 3h-4.586l1.293 1.293-1.414 1.414-3-3v-1.414l3-3 1.414 1.414L12.414 16H17a1 1 0 0 0 1-1V8h2v7Z"
|
|
13878
|
+
}
|
|
13879
|
+
)
|
|
13880
|
+
);
|
|
13881
|
+
}
|
|
13882
|
+
);
|
|
13883
|
+
IconSquaresRowDownwards[designSystemBaseIcon.iconSymbol] = true;
|
|
13884
|
+
|
|
13781
13885
|
const IconSquaresRow = react.forwardRef(
|
|
13782
13886
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
13783
13887
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -16877,6 +16981,7 @@ exports.IconArrowsHorizontalLinesTopBottomIn = IconArrowsHorizontalLinesTopBotto
|
|
|
16877
16981
|
exports.IconArrowsInSimple = IconArrowsInSimple;
|
|
16878
16982
|
exports.IconArrowsOutCardinal = IconArrowsOutCardinal;
|
|
16879
16983
|
exports.IconArrowsOutLinesHorizontal = IconArrowsOutLinesHorizontal;
|
|
16984
|
+
exports.IconArrowsOutLinesVertical = IconArrowsOutLinesVertical;
|
|
16880
16985
|
exports.IconArrowsOutSimple = IconArrowsOutSimple;
|
|
16881
16986
|
exports.IconArrowsSquareCounterClockwiseY = IconArrowsSquareCounterClockwiseY;
|
|
16882
16987
|
exports.IconArrowsTimeBackward = IconArrowsTimeBackward;
|
|
@@ -17121,6 +17226,7 @@ exports.IconLinesThreeVertical = IconLinesThreeVertical;
|
|
|
17121
17226
|
exports.IconLinesTopLeftColumnsTwo = IconLinesTopLeftColumnsTwo;
|
|
17122
17227
|
exports.IconLink = IconLink;
|
|
17123
17228
|
exports.IconLinkPlus = IconLinkPlus;
|
|
17229
|
+
exports.IconLinkVariant = IconLinkVariant;
|
|
17124
17230
|
exports.IconListBullets = IconListBullets;
|
|
17125
17231
|
exports.IconListNumbers = IconListNumbers;
|
|
17126
17232
|
exports.IconLockClosed = IconLockClosed;
|
|
@@ -17262,6 +17368,7 @@ exports.IconRectanglesTwoLinesFour = IconRectanglesTwoLinesFour;
|
|
|
17262
17368
|
exports.IconRectanglesTwoMinus = IconRectanglesTwoMinus;
|
|
17263
17369
|
exports.IconRectanglesTwoPlus = IconRectanglesTwoPlus;
|
|
17264
17370
|
exports.IconRectanglesTwoUser = IconRectanglesTwoUser;
|
|
17371
|
+
exports.IconResize = IconResize;
|
|
17265
17372
|
exports.IconRhombus = IconRhombus;
|
|
17266
17373
|
exports.IconRocket = IconRocket;
|
|
17267
17374
|
exports.IconRss = IconRss;
|
|
@@ -17332,6 +17439,7 @@ exports.IconSquaresFour = IconSquaresFour;
|
|
|
17332
17439
|
exports.IconSquaresGroup = IconSquaresGroup;
|
|
17333
17440
|
exports.IconSquaresMerge = IconSquaresMerge;
|
|
17334
17441
|
exports.IconSquaresRow = IconSquaresRow;
|
|
17442
|
+
exports.IconSquaresRowDownwards = IconSquaresRowDownwards;
|
|
17335
17443
|
exports.IconSquaresThree = IconSquaresThree;
|
|
17336
17444
|
exports.IconSquaresTwoOverlap = IconSquaresTwoOverlap;
|
|
17337
17445
|
exports.IconSquaresUngroup = IconSquaresUngroup;
|