@mirohq/design-system-icons 1.7.1 → 1.8.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 +87 -0
- package/dist/main.js.map +1 -1
- package/dist/module.js +85 -1
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +7 -1
- package/package.json +2 -2
- package/react/filled-bottom-box.tsx +36 -0
- package/react/filled-top-box.tsx +36 -0
- package/react/index.ts +3 -0
- package/react/video-player.tsx +36 -0
- package/svg/24/filled-bottom-box.svg +2 -0
- package/svg/24/filled-top-box.svg +2 -0
- package/svg/24/video-player.svg +2 -0
- package/svg/meta.json +27 -0
package/dist/main.js
CHANGED
|
@@ -5430,6 +5430,62 @@ const IconFileSpreadsheet = react.forwardRef(
|
|
|
5430
5430
|
);
|
|
5431
5431
|
IconFileSpreadsheet[designSystemBaseIcon.iconSymbol] = true;
|
|
5432
5432
|
|
|
5433
|
+
const IconFilledBottomBox = react.forwardRef(
|
|
5434
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
5435
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
5436
|
+
return react.createElement(
|
|
5437
|
+
StyledIcon,
|
|
5438
|
+
{
|
|
5439
|
+
...props,
|
|
5440
|
+
debug,
|
|
5441
|
+
"aria-hidden": true,
|
|
5442
|
+
size,
|
|
5443
|
+
viewBox: "0 0 24 24",
|
|
5444
|
+
fill: "none",
|
|
5445
|
+
ref: forwardRef2
|
|
5446
|
+
},
|
|
5447
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
5448
|
+
"path",
|
|
5449
|
+
{
|
|
5450
|
+
fill: "currentColor",
|
|
5451
|
+
fillRule: "evenodd",
|
|
5452
|
+
d: "M5 10a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H7v5a2 2 0 0 0 2 2h2v-1a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2h-6a2 2 0 0 1-2-2H9a4 4 0 0 1-4-4v-5Zm0-2h14V5H5v3Z",
|
|
5453
|
+
clipRule: "evenodd"
|
|
5454
|
+
}
|
|
5455
|
+
)
|
|
5456
|
+
);
|
|
5457
|
+
}
|
|
5458
|
+
);
|
|
5459
|
+
IconFilledBottomBox[designSystemBaseIcon.iconSymbol] = true;
|
|
5460
|
+
|
|
5461
|
+
const IconFilledTopBox = react.forwardRef(
|
|
5462
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
5463
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
5464
|
+
return react.createElement(
|
|
5465
|
+
StyledIcon,
|
|
5466
|
+
{
|
|
5467
|
+
...props,
|
|
5468
|
+
debug,
|
|
5469
|
+
"aria-hidden": true,
|
|
5470
|
+
size,
|
|
5471
|
+
viewBox: "0 0 24 24",
|
|
5472
|
+
fill: "none",
|
|
5473
|
+
ref: forwardRef2
|
|
5474
|
+
},
|
|
5475
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
5476
|
+
"path",
|
|
5477
|
+
{
|
|
5478
|
+
fill: "currentColor",
|
|
5479
|
+
fillRule: "evenodd",
|
|
5480
|
+
d: "M5 10a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H7v5a2 2 0 0 0 2 2h2v-1a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2h-6a2 2 0 0 1-2-2H9a4 4 0 0 1-4-4v-5Zm8 9h6v-3h-6v3Z",
|
|
5481
|
+
clipRule: "evenodd"
|
|
5482
|
+
}
|
|
5483
|
+
)
|
|
5484
|
+
);
|
|
5485
|
+
}
|
|
5486
|
+
);
|
|
5487
|
+
IconFilledTopBox[designSystemBaseIcon.iconSymbol] = true;
|
|
5488
|
+
|
|
5433
5489
|
const IconFlag = react.forwardRef(
|
|
5434
5490
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
5435
5491
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -14700,6 +14756,34 @@ const IconVideoCamera = react.forwardRef(
|
|
|
14700
14756
|
);
|
|
14701
14757
|
IconVideoCamera[designSystemBaseIcon.iconSymbol] = true;
|
|
14702
14758
|
|
|
14759
|
+
const IconVideoPlayer = react.forwardRef(
|
|
14760
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
14761
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
14762
|
+
return react.createElement(
|
|
14763
|
+
StyledIcon,
|
|
14764
|
+
{
|
|
14765
|
+
...props,
|
|
14766
|
+
debug,
|
|
14767
|
+
"aria-hidden": true,
|
|
14768
|
+
size,
|
|
14769
|
+
viewBox: "0 0 24 24",
|
|
14770
|
+
fill: "none",
|
|
14771
|
+
ref: forwardRef2
|
|
14772
|
+
},
|
|
14773
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
14774
|
+
"path",
|
|
14775
|
+
{
|
|
14776
|
+
fill: "currentColor",
|
|
14777
|
+
fillRule: "evenodd",
|
|
14778
|
+
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",
|
|
14779
|
+
clipRule: "evenodd"
|
|
14780
|
+
}
|
|
14781
|
+
)
|
|
14782
|
+
);
|
|
14783
|
+
}
|
|
14784
|
+
);
|
|
14785
|
+
IconVideoPlayer[designSystemBaseIcon.iconSymbol] = true;
|
|
14786
|
+
|
|
14703
14787
|
const IconViewCenter = react.forwardRef(
|
|
14704
14788
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
14705
14789
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -15122,6 +15206,8 @@ exports.IconEyedropper = IconEyedropper;
|
|
|
15122
15206
|
exports.IconFactory = IconFactory;
|
|
15123
15207
|
exports.IconFactoryHouse = IconFactoryHouse;
|
|
15124
15208
|
exports.IconFileSpreadsheet = IconFileSpreadsheet;
|
|
15209
|
+
exports.IconFilledBottomBox = IconFilledBottomBox;
|
|
15210
|
+
exports.IconFilledTopBox = IconFilledTopBox;
|
|
15125
15211
|
exports.IconFlag = IconFlag;
|
|
15126
15212
|
exports.IconFlip = IconFlip;
|
|
15127
15213
|
exports.IconFlipCard = IconFlipCard;
|
|
@@ -15470,6 +15556,7 @@ exports.IconVideoCameraLinesDot = IconVideoCameraLinesDot;
|
|
|
15470
15556
|
exports.IconVideoCameraSimple = IconVideoCameraSimple;
|
|
15471
15557
|
exports.IconVideoCameraSimpleError = IconVideoCameraSimpleError;
|
|
15472
15558
|
exports.IconVideoCameraSimpleSlash = IconVideoCameraSimpleSlash;
|
|
15559
|
+
exports.IconVideoPlayer = IconVideoPlayer;
|
|
15473
15560
|
exports.IconViewCenter = IconViewCenter;
|
|
15474
15561
|
exports.IconViewSideLeft = IconViewSideLeft;
|
|
15475
15562
|
exports.IconViewSideRight = IconViewSideRight;
|