@mirohq/design-system-icons 0.66.0 → 0.67.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 +96 -2
- package/dist/main.js.map +1 -1
- package/dist/module.js +94 -3
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +7 -1
- package/package.json +3 -3
- package/react/index.ts +3 -0
- package/react/ratio-169.tsx +38 -0
- package/react/ratio-43.tsx +38 -0
- package/react/ratio-square.tsx +38 -0
- package/react/rectangles-squares.tsx +2 -2
- package/react/shield-lock.tsx +1 -0
- package/svg/24/ratio-169.svg +2 -0
- package/svg/24/ratio-43.svg +2 -0
- package/svg/24/ratio-square.svg +2 -0
- package/svg/24/rectangles-squares.svg +1 -1
- package/svg/24/shield-lock-new.svg +1 -1
- package/svg/meta.json +43 -31
package/dist/main.js
CHANGED
|
@@ -26385,6 +26385,96 @@ const IconQuotes = react.forwardRef(
|
|
|
26385
26385
|
);
|
|
26386
26386
|
IconQuotes[designSystemBaseIcon.iconSymbol] = true;
|
|
26387
26387
|
|
|
26388
|
+
const IconRatio169 = react.forwardRef(
|
|
26389
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
26390
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
26391
|
+
return react.createElement(
|
|
26392
|
+
StyledIcon,
|
|
26393
|
+
{
|
|
26394
|
+
...props,
|
|
26395
|
+
weight,
|
|
26396
|
+
debug,
|
|
26397
|
+
"aria-hidden": true,
|
|
26398
|
+
size,
|
|
26399
|
+
viewBox: "0 0 24 24",
|
|
26400
|
+
fill: "none",
|
|
26401
|
+
ref: forwardRef2
|
|
26402
|
+
},
|
|
26403
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { fill: "none", d: "M0 0h24v24h-24z" }),
|
|
26404
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
26405
|
+
"path",
|
|
26406
|
+
{
|
|
26407
|
+
stroke: "currentColor",
|
|
26408
|
+
strokeLinejoin: "bevel",
|
|
26409
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
26410
|
+
d: "M4 7h16v10h-16v-10Z"
|
|
26411
|
+
}
|
|
26412
|
+
)
|
|
26413
|
+
);
|
|
26414
|
+
}
|
|
26415
|
+
);
|
|
26416
|
+
IconRatio169[designSystemBaseIcon.iconSymbol] = true;
|
|
26417
|
+
|
|
26418
|
+
const IconRatio43 = react.forwardRef(
|
|
26419
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
26420
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
26421
|
+
return react.createElement(
|
|
26422
|
+
StyledIcon,
|
|
26423
|
+
{
|
|
26424
|
+
...props,
|
|
26425
|
+
weight,
|
|
26426
|
+
debug,
|
|
26427
|
+
"aria-hidden": true,
|
|
26428
|
+
size,
|
|
26429
|
+
viewBox: "0 0 24 24",
|
|
26430
|
+
fill: "none",
|
|
26431
|
+
ref: forwardRef2
|
|
26432
|
+
},
|
|
26433
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { fill: "none", d: "M0 0h24v24h-24z" }),
|
|
26434
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
26435
|
+
"path",
|
|
26436
|
+
{
|
|
26437
|
+
stroke: "currentColor",
|
|
26438
|
+
strokeLinejoin: "bevel",
|
|
26439
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
26440
|
+
d: "M5 7h14v10h-14v-10Z"
|
|
26441
|
+
}
|
|
26442
|
+
)
|
|
26443
|
+
);
|
|
26444
|
+
}
|
|
26445
|
+
);
|
|
26446
|
+
IconRatio43[designSystemBaseIcon.iconSymbol] = true;
|
|
26447
|
+
|
|
26448
|
+
const IconRatioSquare = react.forwardRef(
|
|
26449
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
26450
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
26451
|
+
return react.createElement(
|
|
26452
|
+
StyledIcon,
|
|
26453
|
+
{
|
|
26454
|
+
...props,
|
|
26455
|
+
weight,
|
|
26456
|
+
debug,
|
|
26457
|
+
"aria-hidden": true,
|
|
26458
|
+
size,
|
|
26459
|
+
viewBox: "0 0 24 24",
|
|
26460
|
+
fill: "none",
|
|
26461
|
+
ref: forwardRef2
|
|
26462
|
+
},
|
|
26463
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { fill: "none", d: "M0 0h24v24h-24z" }),
|
|
26464
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
26465
|
+
"path",
|
|
26466
|
+
{
|
|
26467
|
+
stroke: "currentColor",
|
|
26468
|
+
strokeLinejoin: "bevel",
|
|
26469
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
26470
|
+
d: "M7 7h10v10h-10v-10Z"
|
|
26471
|
+
}
|
|
26472
|
+
)
|
|
26473
|
+
);
|
|
26474
|
+
}
|
|
26475
|
+
);
|
|
26476
|
+
IconRatioSquare[designSystemBaseIcon.iconSymbol] = true;
|
|
26477
|
+
|
|
26388
26478
|
const IconRectangleArrowUpCenterNew = react.forwardRef(
|
|
26389
26479
|
(props, forwardRef2) => {
|
|
26390
26480
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -27654,9 +27744,9 @@ const IconRectanglesSquares = react.forwardRef(
|
|
|
27654
27744
|
"path",
|
|
27655
27745
|
{
|
|
27656
27746
|
stroke: "currentColor",
|
|
27657
|
-
|
|
27747
|
+
strokeLinejoin: "bevel",
|
|
27658
27748
|
strokeWidth: "var(--svg-stroke-width)",
|
|
27659
|
-
d: "
|
|
27749
|
+
d: "M2 4h6v6h-6v-6ZM12 4h10v6h-10v-6ZM16 14h6v6h-6v-6ZM2 14h10v6h-10v-6Z"
|
|
27660
27750
|
}
|
|
27661
27751
|
)
|
|
27662
27752
|
);
|
|
@@ -29484,6 +29574,7 @@ const IconShieldLockNew = react.forwardRef(
|
|
|
29484
29574
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
29485
29575
|
"path",
|
|
29486
29576
|
{
|
|
29577
|
+
fill: "currentColor",
|
|
29487
29578
|
stroke: "currentColor",
|
|
29488
29579
|
strokeLinejoin: "bevel",
|
|
29489
29580
|
strokeWidth: "var(--svg-stroke-width)",
|
|
@@ -40606,6 +40697,9 @@ exports.IconPushPinFilled = IconPushPinFilled;
|
|
|
40606
40697
|
exports.IconQuestionMark = IconQuestionMark;
|
|
40607
40698
|
exports.IconQuestionMarkCircle = IconQuestionMarkCircle;
|
|
40608
40699
|
exports.IconQuotes = IconQuotes;
|
|
40700
|
+
exports.IconRatio169 = IconRatio169;
|
|
40701
|
+
exports.IconRatio43 = IconRatio43;
|
|
40702
|
+
exports.IconRatioSquare = IconRatioSquare;
|
|
40609
40703
|
exports.IconRectangleArrowUpCenter = IconRectangleArrowUpCenter;
|
|
40610
40704
|
exports.IconRectangleDashLines = IconRectangleDashLines;
|
|
40611
40705
|
exports.IconRectangleDotLarge = IconRectangleDotLarge;
|