@mirohq/design-system-icons 0.50.1 → 0.51.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 +93 -0
- package/dist/main.js.map +1 -1
- package/dist/module.js +91 -1
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +7 -1
- package/package.json +4 -4
- package/react/index.ts +3 -0
- package/react/monitor.tsx +36 -0
- package/react/rectangle-line.tsx +37 -0
- package/react/social-looker.tsx +38 -0
- package/svg/24/monitor.svg +2 -0
- package/svg/24/rectangle-line.svg +2 -0
- package/svg/24/social-looker.svg +2 -0
- package/svg/meta.json +22 -2
package/dist/main.js
CHANGED
|
@@ -8745,6 +8745,34 @@ const IconMonitorStop = react.forwardRef(
|
|
|
8745
8745
|
);
|
|
8746
8746
|
IconMonitorStop[designSystemBaseIcon.iconSymbol] = true;
|
|
8747
8747
|
|
|
8748
|
+
const IconMonitor = react.forwardRef(
|
|
8749
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
8750
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
8751
|
+
return react.createElement(
|
|
8752
|
+
StyledIcon,
|
|
8753
|
+
{
|
|
8754
|
+
...props,
|
|
8755
|
+
weight,
|
|
8756
|
+
debug,
|
|
8757
|
+
size,
|
|
8758
|
+
viewBox: "0 0 24 24",
|
|
8759
|
+
fill: "none",
|
|
8760
|
+
ref: forwardRef2
|
|
8761
|
+
},
|
|
8762
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
8763
|
+
"path",
|
|
8764
|
+
{
|
|
8765
|
+
fill: "currentColor",
|
|
8766
|
+
fillRule: "evenodd",
|
|
8767
|
+
d: "M2 5c0-1.1046.8954-2 2-2h16c1.1046 0 2 .8954 2 2v12c0 1.1046-.8954 2-2 2h-16c-1.1046 0-2-.8954-2-2v-12Zm18 0h-16v12h16v-12Zm-12 16c0-.5523.4477-1 1-1h6c.5523 0 1 .4477 1 1s-.4477 1-1 1h-6c-.5523 0-1-.4477-1-1Z",
|
|
8768
|
+
clipRule: "evenodd"
|
|
8769
|
+
}
|
|
8770
|
+
)
|
|
8771
|
+
);
|
|
8772
|
+
}
|
|
8773
|
+
);
|
|
8774
|
+
IconMonitor[designSystemBaseIcon.iconSymbol] = true;
|
|
8775
|
+
|
|
8748
8776
|
const IconMoon = react.forwardRef(
|
|
8749
8777
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
8750
8778
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -11226,6 +11254,35 @@ const IconRectangleFrame2Lines = react.forwardRef(
|
|
|
11226
11254
|
);
|
|
11227
11255
|
IconRectangleFrame2Lines[designSystemBaseIcon.iconSymbol] = true;
|
|
11228
11256
|
|
|
11257
|
+
const IconRectangleLine = react.forwardRef(
|
|
11258
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
11259
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
11260
|
+
return react.createElement(
|
|
11261
|
+
StyledIcon,
|
|
11262
|
+
{
|
|
11263
|
+
...props,
|
|
11264
|
+
weight,
|
|
11265
|
+
debug,
|
|
11266
|
+
size,
|
|
11267
|
+
viewBox: "0 0 24 24",
|
|
11268
|
+
fill: "none",
|
|
11269
|
+
ref: forwardRef2
|
|
11270
|
+
},
|
|
11271
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
11272
|
+
"path",
|
|
11273
|
+
{
|
|
11274
|
+
fill: "currentColor",
|
|
11275
|
+
fillRule: "evenodd",
|
|
11276
|
+
d: "M5 4c0-.5523.4477-1 1-1h14c1.1046 0 2 .8954 2 2v10c0 .5523-.4477 1-1 1s-1-.4477-1-1v-10h-14c-.5523 0-1-.4477-1-1Zm-3 4c0-1.1046.8954-2 2-2h13c1.1046 0 2 .8954 2 2v11c0 1.1046-.8954 2-2 2h-13c-1.1046 0-2-.8954-2-2v-11Zm15 0h-13v11h13v-11Z",
|
|
11277
|
+
clipRule: "evenodd"
|
|
11278
|
+
}
|
|
11279
|
+
),
|
|
11280
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { fill: "currentColor", d: "M3 8h15v2h-15v-2Z" })
|
|
11281
|
+
);
|
|
11282
|
+
}
|
|
11283
|
+
);
|
|
11284
|
+
IconRectangleLine[designSystemBaseIcon.iconSymbol] = true;
|
|
11285
|
+
|
|
11229
11286
|
const IconRectanglePlayStack = react.forwardRef(
|
|
11230
11287
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
11231
11288
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -12894,6 +12951,39 @@ const IconSocialLinkedin = react.forwardRef(
|
|
|
12894
12951
|
);
|
|
12895
12952
|
IconSocialLinkedin[designSystemBaseIcon.iconSymbol] = true;
|
|
12896
12953
|
|
|
12954
|
+
const IconSocialLooker = react.forwardRef(
|
|
12955
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
12956
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
12957
|
+
return react.createElement(
|
|
12958
|
+
StyledIcon,
|
|
12959
|
+
{
|
|
12960
|
+
...props,
|
|
12961
|
+
weight,
|
|
12962
|
+
debug,
|
|
12963
|
+
size,
|
|
12964
|
+
viewBox: "0 0 24 24",
|
|
12965
|
+
fill: "none",
|
|
12966
|
+
ref: forwardRef2
|
|
12967
|
+
},
|
|
12968
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
12969
|
+
"path",
|
|
12970
|
+
{
|
|
12971
|
+
fill: "currentColor",
|
|
12972
|
+
d: "M12.1602 2a1.7488 1.7488 0 0 0-1.4506 2.7243l.7469-.7459a.7375.7375 0 1 1 .7006.5067.724.724 0 0 1-.2297-.0368l-.7458.7458a1.7476 1.7476 0 1 0 .9786-3.1941ZM11.4653 7.0932a2.7164 2.7164 0 0 0-.5446-1.637l-.9692.968a1.3896 1.3896 0 0 1-.2655 1.6772l.5268 1.2873a2.7316 2.7316 0 0 0 1.2525-2.2955Z"
|
|
12973
|
+
}
|
|
12974
|
+
),
|
|
12975
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
12976
|
+
"path",
|
|
12977
|
+
{
|
|
12978
|
+
fill: "currentColor",
|
|
12979
|
+
d: "M8.7565 8.4837h-.0253a1.3906 1.3906 0 1 1 .7638-2.5525l.9597-.9597a2.7327 2.7327 0 1 0-1.7235 4.8554 2.795 2.795 0 0 0 .552-.0548l-.5267-1.2884ZM12.1973 9.597a6.2014 6.2014 0 0 0-1.7909.2622l.7679 1.8763a4.2305 4.2305 0 0 1 1.0219-.1243c1.9957.0006 3.713 1.4107 4.1019 3.3681.3889 1.9574-.659 3.9169-2.5028 4.6803-1.8439.7635-3.9703.1181-5.0788-1.5413-1.1086-1.6594-.8907-3.8708.5205-5.2819a4.2245 4.2245 0 0 1 .9977-.7375l-.7596-1.8709c-2.8313 1.3866-4.1718 4.6766-3.1158 7.647 1.056 2.9705 4.1725 4.6761 7.2437 3.9643 3.0712-.7117 5.1197-3.6143 4.7614-6.7464-.3582-3.1322-3.0093-5.4972-6.1619-5.497l-.0052.001Z"
|
|
12980
|
+
}
|
|
12981
|
+
)
|
|
12982
|
+
);
|
|
12983
|
+
}
|
|
12984
|
+
);
|
|
12985
|
+
IconSocialLooker[designSystemBaseIcon.iconSymbol] = true;
|
|
12986
|
+
|
|
12897
12987
|
const IconSocialSlack = react.forwardRef(
|
|
12898
12988
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
12899
12989
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -16960,6 +17050,7 @@ exports.IconMicrophone = IconMicrophone;
|
|
|
16960
17050
|
exports.IconMicrophoneSlash = IconMicrophoneSlash;
|
|
16961
17051
|
exports.IconMinus = IconMinus;
|
|
16962
17052
|
exports.IconMobile = IconMobile;
|
|
17053
|
+
exports.IconMonitor = IconMonitor;
|
|
16963
17054
|
exports.IconMonitorArrow = IconMonitorArrow;
|
|
16964
17055
|
exports.IconMonitorPause = IconMonitorPause;
|
|
16965
17056
|
exports.IconMonitorPlay = IconMonitorPlay;
|
|
@@ -17038,6 +17129,7 @@ exports.IconRectangleDotLinePen = IconRectangleDotLinePen;
|
|
|
17038
17129
|
exports.IconRectangleDotMedium = IconRectangleDotMedium;
|
|
17039
17130
|
exports.IconRectangleDotSmall = IconRectangleDotSmall;
|
|
17040
17131
|
exports.IconRectangleFrame2Lines = IconRectangleFrame2Lines;
|
|
17132
|
+
exports.IconRectangleLine = IconRectangleLine;
|
|
17041
17133
|
exports.IconRectanglePlayStack = IconRectanglePlayStack;
|
|
17042
17134
|
exports.IconRectanglePortrait = IconRectanglePortrait;
|
|
17043
17135
|
exports.IconRectanglePortraitDash = IconRectanglePortraitDash;
|
|
@@ -17086,6 +17178,7 @@ exports.IconSocialFacebook = IconSocialFacebook;
|
|
|
17086
17178
|
exports.IconSocialInstagram = IconSocialInstagram;
|
|
17087
17179
|
exports.IconSocialJira = IconSocialJira;
|
|
17088
17180
|
exports.IconSocialLinkedin = IconSocialLinkedin;
|
|
17181
|
+
exports.IconSocialLooker = IconSocialLooker;
|
|
17089
17182
|
exports.IconSocialSlack = IconSocialSlack;
|
|
17090
17183
|
exports.IconSocialTwitter = IconSocialTwitter;
|
|
17091
17184
|
exports.IconSocialX = IconSocialX;
|