@mirohq/design-system-icons 1.28.0 → 1.30.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 +82 -3
- package/dist/main.js.map +1 -1
- package/dist/module.js +80 -4
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +7 -1
- package/package.json +5 -5
- package/react/corners-inside.tsx +34 -0
- package/react/corners.tsx +34 -0
- package/react/index.ts +3 -0
- package/react/plus-lines-box.tsx +34 -0
- package/react/video-player.tsx +1 -3
- package/svg/24/corners-inside.svg +2 -0
- package/svg/24/corners.svg +2 -0
- package/svg/24/plus-lines-box.svg +2 -0
- package/svg/24/video-player.svg +1 -1
- package/svg/meta.json +28 -1
package/dist/main.js
CHANGED
|
@@ -4592,6 +4592,32 @@ const IconConnectionLineStraight = react.forwardRef(
|
|
|
4592
4592
|
);
|
|
4593
4593
|
IconConnectionLineStraight[designSystemBaseIcon.iconSymbol] = true;
|
|
4594
4594
|
|
|
4595
|
+
const IconCornersInside = react.forwardRef(
|
|
4596
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
4597
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
4598
|
+
return react.createElement(
|
|
4599
|
+
StyledIcon,
|
|
4600
|
+
{
|
|
4601
|
+
...props,
|
|
4602
|
+
debug,
|
|
4603
|
+
"aria-hidden": true,
|
|
4604
|
+
size,
|
|
4605
|
+
viewBox: "0 0 24 24",
|
|
4606
|
+
fill: "none",
|
|
4607
|
+
ref: forwardRef2
|
|
4608
|
+
},
|
|
4609
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
4610
|
+
"path",
|
|
4611
|
+
{
|
|
4612
|
+
fill: "currentColor",
|
|
4613
|
+
d: "M6 18H2v-2h5l1 1v5H6v-4Zm10-1 1-1h5v2h-4v4h-2v-5Zm0-10V2h2v4h4v2h-5l-1-1ZM2 6h4V2h2v5L7 8H2V6Z"
|
|
4614
|
+
}
|
|
4615
|
+
)
|
|
4616
|
+
);
|
|
4617
|
+
}
|
|
4618
|
+
);
|
|
4619
|
+
IconCornersInside[designSystemBaseIcon.iconSymbol] = true;
|
|
4620
|
+
|
|
4595
4621
|
const IconCornersThreeEyeOpen = react.forwardRef(
|
|
4596
4622
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
4597
4623
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -4618,6 +4644,32 @@ const IconCornersThreeEyeOpen = react.forwardRef(
|
|
|
4618
4644
|
);
|
|
4619
4645
|
IconCornersThreeEyeOpen[designSystemBaseIcon.iconSymbol] = true;
|
|
4620
4646
|
|
|
4647
|
+
const IconCorners = react.forwardRef(
|
|
4648
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
4649
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
4650
|
+
return react.createElement(
|
|
4651
|
+
StyledIcon,
|
|
4652
|
+
{
|
|
4653
|
+
...props,
|
|
4654
|
+
debug,
|
|
4655
|
+
"aria-hidden": true,
|
|
4656
|
+
size,
|
|
4657
|
+
viewBox: "0 0 24 24",
|
|
4658
|
+
fill: "none",
|
|
4659
|
+
ref: forwardRef2
|
|
4660
|
+
},
|
|
4661
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
4662
|
+
"path",
|
|
4663
|
+
{
|
|
4664
|
+
fill: "currentColor",
|
|
4665
|
+
d: "M4 20h4v2H3l-1-1v-5h2v4Zm18 1-1 1h-5v-2h4v-4h2v5ZM8 4H4v4H2V3l1-1h5v2Zm14-1v5h-2V4h-4V2h5l1 1Z"
|
|
4666
|
+
}
|
|
4667
|
+
)
|
|
4668
|
+
);
|
|
4669
|
+
}
|
|
4670
|
+
);
|
|
4671
|
+
IconCorners[designSystemBaseIcon.iconSymbol] = true;
|
|
4672
|
+
|
|
4621
4673
|
const IconCounter = react.forwardRef(
|
|
4622
4674
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
4623
4675
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -10430,6 +10482,32 @@ const IconPlusCross = react.forwardRef(
|
|
|
10430
10482
|
);
|
|
10431
10483
|
IconPlusCross[designSystemBaseIcon.iconSymbol] = true;
|
|
10432
10484
|
|
|
10485
|
+
const IconPlusLinesBox = react.forwardRef(
|
|
10486
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
10487
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
10488
|
+
return react.createElement(
|
|
10489
|
+
StyledIcon,
|
|
10490
|
+
{
|
|
10491
|
+
...props,
|
|
10492
|
+
debug,
|
|
10493
|
+
"aria-hidden": true,
|
|
10494
|
+
size,
|
|
10495
|
+
viewBox: "0 0 24 24",
|
|
10496
|
+
fill: "none",
|
|
10497
|
+
ref: forwardRef2
|
|
10498
|
+
},
|
|
10499
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
10500
|
+
"path",
|
|
10501
|
+
{
|
|
10502
|
+
fill: "currentColor",
|
|
10503
|
+
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"
|
|
10504
|
+
}
|
|
10505
|
+
)
|
|
10506
|
+
);
|
|
10507
|
+
}
|
|
10508
|
+
);
|
|
10509
|
+
IconPlusLinesBox[designSystemBaseIcon.iconSymbol] = true;
|
|
10510
|
+
|
|
10433
10511
|
const IconPlusSquare = react.forwardRef(
|
|
10434
10512
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
10435
10513
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -16632,9 +16710,7 @@ const IconVideoPlayer = react.forwardRef(
|
|
|
16632
16710
|
"path",
|
|
16633
16711
|
{
|
|
16634
16712
|
fill: "currentColor",
|
|
16635
|
-
|
|
16636
|
-
d: "M8 17H6v-2h2v2Zm10 0h-8v-2h8v2Zm-3-6.929v.858L10.833 13.5 10 13.071V7.93l.833-.429L15 10.071ZM19 4a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V7a3 3 0 0 1 3-3h14ZM5 6a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1H5Z",
|
|
16637
|
-
clipRule: "evenodd"
|
|
16713
|
+
d: "M10.833 9 15 11.571v.858L10.833 15 10 14.571V9.43l.833-.43ZM19 4a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V7a3 3 0 0 1 3-3h14ZM5 6a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1H5Z"
|
|
16638
16714
|
}
|
|
16639
16715
|
)
|
|
16640
16716
|
);
|
|
@@ -17087,6 +17163,8 @@ exports.IconCompass = IconCompass;
|
|
|
17087
17163
|
exports.IconConeSerpentine = IconConeSerpentine;
|
|
17088
17164
|
exports.IconConnectionLineElbows = IconConnectionLineElbows;
|
|
17089
17165
|
exports.IconConnectionLineStraight = IconConnectionLineStraight;
|
|
17166
|
+
exports.IconCorners = IconCorners;
|
|
17167
|
+
exports.IconCornersInside = IconCornersInside;
|
|
17090
17168
|
exports.IconCornersThreeEyeOpen = IconCornersThreeEyeOpen;
|
|
17091
17169
|
exports.IconCounter = IconCounter;
|
|
17092
17170
|
exports.IconCreditCard = IconCreditCard;
|
|
@@ -17308,6 +17386,7 @@ exports.IconPlug = IconPlug;
|
|
|
17308
17386
|
exports.IconPlus = IconPlus;
|
|
17309
17387
|
exports.IconPlusBox = IconPlusBox;
|
|
17310
17388
|
exports.IconPlusCross = IconPlusCross;
|
|
17389
|
+
exports.IconPlusLinesBox = IconPlusLinesBox;
|
|
17311
17390
|
exports.IconPlusSquare = IconPlusSquare;
|
|
17312
17391
|
exports.IconPlusText = IconPlusText;
|
|
17313
17392
|
exports.IconPolling = IconPolling;
|