@mirohq/design-system-icons 0.56.0 → 0.57.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 +31 -0
- package/dist/main.js.map +1 -1
- package/dist/module.js +31 -1
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +3 -1
- package/package.json +3 -3
- package/react/index.ts +1 -0
- package/react/monitor-arrow-up.tsx +38 -0
- package/svg/24/monitor-arrow-up.svg +2 -0
- package/svg/meta.json +9 -0
package/dist/main.js
CHANGED
|
@@ -9482,6 +9482,36 @@ const IconMobile = react.forwardRef(
|
|
|
9482
9482
|
);
|
|
9483
9483
|
IconMobile[designSystemBaseIcon.iconSymbol] = true;
|
|
9484
9484
|
|
|
9485
|
+
const IconMonitorArrowUp = react.forwardRef(
|
|
9486
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
9487
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
9488
|
+
return react.createElement(
|
|
9489
|
+
StyledIcon,
|
|
9490
|
+
{
|
|
9491
|
+
...props,
|
|
9492
|
+
weight,
|
|
9493
|
+
debug,
|
|
9494
|
+
"aria-hidden": true,
|
|
9495
|
+
size,
|
|
9496
|
+
viewBox: "0 0 24 24",
|
|
9497
|
+
fill: "none",
|
|
9498
|
+
ref: forwardRef2
|
|
9499
|
+
},
|
|
9500
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
9501
|
+
"path",
|
|
9502
|
+
{
|
|
9503
|
+
stroke: "currentColor",
|
|
9504
|
+
strokeLinecap: "round",
|
|
9505
|
+
strokeLinejoin: "round",
|
|
9506
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
9507
|
+
d: "M9 21h6m-11-3h16c.5523 0 1-.4477 1-1v-12c0-.5523-.4477-1-1-1h-16c-.5523 0-1 .4477-1 1v12c0 .5523.4477 1 1 1ZM12.002 14.4634l-.002-6.999m0 0 3.5355 3.5356m-3.5355-3.5355-3.5355 3.5355"
|
|
9508
|
+
}
|
|
9509
|
+
)
|
|
9510
|
+
);
|
|
9511
|
+
}
|
|
9512
|
+
);
|
|
9513
|
+
IconMonitorArrowUp[designSystemBaseIcon.iconSymbol] = true;
|
|
9514
|
+
|
|
9485
9515
|
const IconMonitorArrow = react.forwardRef(
|
|
9486
9516
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
9487
9517
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -19178,6 +19208,7 @@ exports.IconMinus = IconMinus;
|
|
|
19178
19208
|
exports.IconMobile = IconMobile;
|
|
19179
19209
|
exports.IconMonitor = IconMonitor;
|
|
19180
19210
|
exports.IconMonitorArrow = IconMonitorArrow;
|
|
19211
|
+
exports.IconMonitorArrowUp = IconMonitorArrowUp;
|
|
19181
19212
|
exports.IconMonitorPause = IconMonitorPause;
|
|
19182
19213
|
exports.IconMonitorPlay = IconMonitorPlay;
|
|
19183
19214
|
exports.IconMonitorStop = IconMonitorStop;
|