@mirohq/design-system-icons 1.21.0 → 1.22.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 +27 -0
- package/dist/main.js.map +1 -1
- package/dist/module.js +27 -1
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +3 -1
- package/package.json +4 -4
- package/react/index.ts +1 -0
- package/react/slide-cursor-box.tsx +34 -0
- package/svg/24/slide-cursor-box.svg +2 -0
- package/svg/meta.json +9 -0
package/dist/main.js
CHANGED
|
@@ -12352,6 +12352,32 @@ const IconSingleSparksFilled = react.forwardRef(
|
|
|
12352
12352
|
);
|
|
12353
12353
|
IconSingleSparksFilled[designSystemBaseIcon.iconSymbol] = true;
|
|
12354
12354
|
|
|
12355
|
+
const IconSlideCursorBox = react.forwardRef(
|
|
12356
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
12357
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
12358
|
+
return react.createElement(
|
|
12359
|
+
StyledIcon,
|
|
12360
|
+
{
|
|
12361
|
+
...props,
|
|
12362
|
+
debug,
|
|
12363
|
+
"aria-hidden": true,
|
|
12364
|
+
size,
|
|
12365
|
+
viewBox: "0 0 24 24",
|
|
12366
|
+
fill: "none",
|
|
12367
|
+
ref: forwardRef2
|
|
12368
|
+
},
|
|
12369
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
12370
|
+
"path",
|
|
12371
|
+
{
|
|
12372
|
+
fill: "currentColor",
|
|
12373
|
+
d: "M20 7a1 1 0 0 0-1-1H5a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h7v2H5a3 3 0 0 1-3-3V7a3 3 0 0 1 3-3h14a3 3 0 0 1 3 3v6h-2V7Zm-3.535 16h1.145c.654-2.672 2.743-4.783 5.39-5.446V16.35L13.923 13l-.923.93L16.465 23Zm2.836-5.884a9.486 9.486 0 0 0-2.126 2.139l-1.301-3.403 3.427 1.264ZM8 10v2h2v-2H8Zm-.75 4C6.56 14 6 13.44 6 12.75v-3.5C6 8.56 6.56 8 7.25 8h3.5c.69 0 1.25.56 1.25 1.25v3.5c0 .69-.56 1.25-1.25 1.25h-3.5ZM18 9v2h-4V9h4Z"
|
|
12374
|
+
}
|
|
12375
|
+
)
|
|
12376
|
+
);
|
|
12377
|
+
}
|
|
12378
|
+
);
|
|
12379
|
+
IconSlideCursorBox[designSystemBaseIcon.iconSymbol] = true;
|
|
12380
|
+
|
|
12355
12381
|
const IconSlideFormat = react.forwardRef(
|
|
12356
12382
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
12357
12383
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -16991,6 +17017,7 @@ exports.IconSidebarGlobalClosed = IconSidebarGlobalClosed;
|
|
|
16991
17017
|
exports.IconSidebarGlobalOpen = IconSidebarGlobalOpen;
|
|
16992
17018
|
exports.IconSidebarOpen = IconSidebarOpen;
|
|
16993
17019
|
exports.IconSingleSparksFilled = IconSingleSparksFilled;
|
|
17020
|
+
exports.IconSlideCursorBox = IconSlideCursorBox;
|
|
16994
17021
|
exports.IconSlideFormat = IconSlideFormat;
|
|
16995
17022
|
exports.IconSlidersX = IconSlidersX;
|
|
16996
17023
|
exports.IconSlidersY = IconSlidersY;
|