@mirohq/design-system-icons 1.28.0-fix-stitches-types.3 → 1.29.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 +27 -0
- package/dist/main.js.map +1 -1
- package/dist/module.js +27 -1
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +3 -1
- package/package.json +5 -5
- package/react/index.ts +1 -0
- package/react/plus-lines-box.tsx +34 -0
- package/svg/24/plus-lines-box.svg +2 -0
- package/svg/meta.json +9 -0
package/dist/main.js
CHANGED
|
@@ -10430,6 +10430,32 @@ const IconPlusCross = react.forwardRef(
|
|
|
10430
10430
|
);
|
|
10431
10431
|
IconPlusCross[designSystemBaseIcon.iconSymbol] = true;
|
|
10432
10432
|
|
|
10433
|
+
const IconPlusLinesBox = react.forwardRef(
|
|
10434
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
10435
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
10436
|
+
return react.createElement(
|
|
10437
|
+
StyledIcon,
|
|
10438
|
+
{
|
|
10439
|
+
...props,
|
|
10440
|
+
debug,
|
|
10441
|
+
"aria-hidden": true,
|
|
10442
|
+
size,
|
|
10443
|
+
viewBox: "0 0 24 24",
|
|
10444
|
+
fill: "none",
|
|
10445
|
+
ref: forwardRef2
|
|
10446
|
+
},
|
|
10447
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
10448
|
+
"path",
|
|
10449
|
+
{
|
|
10450
|
+
fill: "currentColor",
|
|
10451
|
+
d: "M22 7h-3v3h-2V7h-3V5h3V2h2v3h3v2ZM3 18V6a3 3 0 0 1 3-3h6v2H6a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-6h2v6a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3Zm14-3v2H7v-2h10Zm-2-4v2H7v-2h8Zm-3-4v2H7V7h5Z"
|
|
10452
|
+
}
|
|
10453
|
+
)
|
|
10454
|
+
);
|
|
10455
|
+
}
|
|
10456
|
+
);
|
|
10457
|
+
IconPlusLinesBox[designSystemBaseIcon.iconSymbol] = true;
|
|
10458
|
+
|
|
10433
10459
|
const IconPlusSquare = react.forwardRef(
|
|
10434
10460
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
10435
10461
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -17308,6 +17334,7 @@ exports.IconPlug = IconPlug;
|
|
|
17308
17334
|
exports.IconPlus = IconPlus;
|
|
17309
17335
|
exports.IconPlusBox = IconPlusBox;
|
|
17310
17336
|
exports.IconPlusCross = IconPlusCross;
|
|
17337
|
+
exports.IconPlusLinesBox = IconPlusLinesBox;
|
|
17311
17338
|
exports.IconPlusSquare = IconPlusSquare;
|
|
17312
17339
|
exports.IconPlusText = IconPlusText;
|
|
17313
17340
|
exports.IconPolling = IconPolling;
|