@mirohq/design-system-icons 1.45.1 → 1.46.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 +21 -0
- package/dist/main.js.map +1 -1
- package/dist/module.js +21 -1
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +3 -1
- package/package.json +4 -4
- package/react/angle-slash.tsx +31 -0
- package/react/index.ts +1 -0
- package/svg/24/angle-slash.svg +2 -0
- package/svg/meta.json +18 -1
package/dist/main.js
CHANGED
|
@@ -630,6 +630,26 @@ const IconAndroidShare = react.forwardRef(
|
|
|
630
630
|
);
|
|
631
631
|
IconAndroidShare[designSystemBaseIcon.iconSymbol] = true;
|
|
632
632
|
|
|
633
|
+
const IconAngleSlash = react.forwardRef(
|
|
634
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
635
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
636
|
+
return react.createElement(
|
|
637
|
+
StyledIcon,
|
|
638
|
+
{
|
|
639
|
+
...props,
|
|
640
|
+
debug,
|
|
641
|
+
"aria-hidden": true,
|
|
642
|
+
size,
|
|
643
|
+
viewBox: "0 0 24 24",
|
|
644
|
+
fill: "none",
|
|
645
|
+
ref: forwardRef2
|
|
646
|
+
},
|
|
647
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { fill: "currentColor", d: "M15.032 4 11 20H9l4-16h2.032Z" })
|
|
648
|
+
);
|
|
649
|
+
}
|
|
650
|
+
);
|
|
651
|
+
IconAngleSlash[designSystemBaseIcon.iconSymbol] = true;
|
|
652
|
+
|
|
633
653
|
const IconArrowArcLeft = react.forwardRef(
|
|
634
654
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
635
655
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -18124,6 +18144,7 @@ exports.IconAlignmentScale = IconAlignmentScale;
|
|
|
18124
18144
|
exports.IconAltText = IconAltText;
|
|
18125
18145
|
exports.IconAltTextUnderline = IconAltTextUnderline;
|
|
18126
18146
|
exports.IconAndroidShare = IconAndroidShare;
|
|
18147
|
+
exports.IconAngleSlash = IconAngleSlash;
|
|
18127
18148
|
exports.IconArrowArcLeft = IconArrowArcLeft;
|
|
18128
18149
|
exports.IconArrowArcRight = IconArrowArcRight;
|
|
18129
18150
|
exports.IconArrowBendUpLeft = IconArrowBendUpLeft;
|