@mirohq/design-system-icons 0.32.7 → 0.33.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 +52 -0
- package/dist/main.js.map +1 -1
- package/dist/module.js +51 -1
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +10 -1
- package/package.json +4 -4
- package/react/index.ts +2 -0
- package/react/squares-column.tsx +33 -0
- package/react/squares-row.tsx +33 -0
- package/svg/24/squares-column.svg +2 -0
- package/svg/24/squares-row.svg +2 -0
- package/svg/meta.json +21 -0
package/dist/main.js
CHANGED
|
@@ -10386,6 +10386,31 @@ const IconSquare = react.forwardRef(
|
|
|
10386
10386
|
);
|
|
10387
10387
|
IconSquare[designSystemBaseIcon.iconSymbol] = true;
|
|
10388
10388
|
|
|
10389
|
+
const IconSquaresColumn = react.forwardRef(
|
|
10390
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => react.createElement(
|
|
10391
|
+
StyledIcon,
|
|
10392
|
+
{
|
|
10393
|
+
...props,
|
|
10394
|
+
weight,
|
|
10395
|
+
size,
|
|
10396
|
+
viewBox: "0 0 24 24",
|
|
10397
|
+
fill: "none",
|
|
10398
|
+
ref: forwardRef2
|
|
10399
|
+
},
|
|
10400
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
10401
|
+
"path",
|
|
10402
|
+
{
|
|
10403
|
+
stroke: "currentColor",
|
|
10404
|
+
strokeLinecap: "round",
|
|
10405
|
+
strokeLinejoin: "round",
|
|
10406
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
10407
|
+
d: "M17 4v16m0 0 3-3m-3 3-3-3M10 7v-4h-4v4h4ZM10 14v-4h-4v4h4ZM10 21v-4h-4v4h4Z"
|
|
10408
|
+
}
|
|
10409
|
+
)
|
|
10410
|
+
)
|
|
10411
|
+
);
|
|
10412
|
+
IconSquaresColumn[designSystemBaseIcon.iconSymbol] = true;
|
|
10413
|
+
|
|
10389
10414
|
const IconSquaresFour = react.forwardRef(
|
|
10390
10415
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => react.createElement(
|
|
10391
10416
|
StyledIcon,
|
|
@@ -10501,6 +10526,31 @@ const IconSquaresMerge = react.forwardRef(
|
|
|
10501
10526
|
);
|
|
10502
10527
|
IconSquaresMerge[designSystemBaseIcon.iconSymbol] = true;
|
|
10503
10528
|
|
|
10529
|
+
const IconSquaresRow = react.forwardRef(
|
|
10530
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => react.createElement(
|
|
10531
|
+
StyledIcon,
|
|
10532
|
+
{
|
|
10533
|
+
...props,
|
|
10534
|
+
weight,
|
|
10535
|
+
size,
|
|
10536
|
+
viewBox: "0 0 24 24",
|
|
10537
|
+
fill: "none",
|
|
10538
|
+
ref: forwardRef2
|
|
10539
|
+
},
|
|
10540
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
10541
|
+
"path",
|
|
10542
|
+
{
|
|
10543
|
+
stroke: "currentColor",
|
|
10544
|
+
strokeLinecap: "round",
|
|
10545
|
+
strokeLinejoin: "round",
|
|
10546
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
10547
|
+
d: "M4 17h16m0 0-3-3m3 3-3 3M7 6h-4v4h4v-4ZM14 6h-4v4h4v-4ZM21 6h-4v4h4v-4Z"
|
|
10548
|
+
}
|
|
10549
|
+
)
|
|
10550
|
+
)
|
|
10551
|
+
);
|
|
10552
|
+
IconSquaresRow[designSystemBaseIcon.iconSymbol] = true;
|
|
10553
|
+
|
|
10504
10554
|
const IconSquaresThree = react.forwardRef(
|
|
10505
10555
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => react.createElement(
|
|
10506
10556
|
StyledIcon,
|
|
@@ -13120,9 +13170,11 @@ exports.IconSquareLineSquareDashed = IconSquareLineSquareDashed;
|
|
|
13120
13170
|
exports.IconSquareRounded = IconSquareRounded;
|
|
13121
13171
|
exports.IconSquareStarScribble = IconSquareStarScribble;
|
|
13122
13172
|
exports.IconSquareTriangleCirclePlus = IconSquareTriangleCirclePlus;
|
|
13173
|
+
exports.IconSquaresColumn = IconSquaresColumn;
|
|
13123
13174
|
exports.IconSquaresFour = IconSquaresFour;
|
|
13124
13175
|
exports.IconSquaresGroup = IconSquaresGroup;
|
|
13125
13176
|
exports.IconSquaresMerge = IconSquaresMerge;
|
|
13177
|
+
exports.IconSquaresRow = IconSquaresRow;
|
|
13126
13178
|
exports.IconSquaresThree = IconSquaresThree;
|
|
13127
13179
|
exports.IconSquaresTwoOverlap = IconSquaresTwoOverlap;
|
|
13128
13180
|
exports.IconSquaresUngroup = IconSquaresUngroup;
|