@mirohq/design-system-icons 1.46.3-reactdismissablelayer.0 → 1.47.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 CHANGED
@@ -9744,6 +9744,34 @@ const IconNavigationUpRight = react.forwardRef(
9744
9744
  );
9745
9745
  IconNavigationUpRight[designSystemBaseIcon.iconSymbol] = true;
9746
9746
 
9747
+ const IconNestingSlash = react.forwardRef(
9748
+ ({ size = "medium", ...props }, forwardRef2) => {
9749
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
9750
+ return react.createElement(
9751
+ StyledIcon,
9752
+ {
9753
+ ...props,
9754
+ debug,
9755
+ "aria-hidden": true,
9756
+ size,
9757
+ viewBox: "0 0 24 24",
9758
+ fill: "none",
9759
+ ref: forwardRef2
9760
+ },
9761
+ /* @__PURE__ */ jsxRuntime.jsx(
9762
+ "path",
9763
+ {
9764
+ fill: "currentColor",
9765
+ fillRule: "evenodd",
9766
+ d: "M19 14a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2h-6a2 2 0 0 1-2-2H7.5l2-2H11v-1a2 2 0 0 1 2-2h6Zm-6 5h6v-3h-6v3Zm7.5-15.5-17 17-1.414-1.414 3.049-3.05A4.01 4.01 0 0 1 5 15v-5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h13.172l.914-.914L20.5 3.5ZM7 10v4.172L11.172 10H7ZM5 5v3h8.172l3-3H5Zm16 3a2 2 0 0 1-2 2h-2.5l2-2h.5v-.5l2-2V8Z",
9767
+ clipRule: "evenodd"
9768
+ }
9769
+ )
9770
+ );
9771
+ }
9772
+ );
9773
+ IconNestingSlash[designSystemBaseIcon.iconSymbol] = true;
9774
+
9747
9775
  const IconNesting = react.forwardRef(
9748
9776
  ({ size = "medium", ...props }, forwardRef2) => {
9749
9777
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -18490,6 +18518,7 @@ exports.IconNavigationUpLeftFilled = IconNavigationUpLeftFilled;
18490
18518
  exports.IconNavigationUpLeftSlash = IconNavigationUpLeftSlash;
18491
18519
  exports.IconNavigationUpRight = IconNavigationUpRight;
18492
18520
  exports.IconNesting = IconNesting;
18521
+ exports.IconNestingSlash = IconNestingSlash;
18493
18522
  exports.IconNext = IconNext;
18494
18523
  exports.IconNodeConnectedDot = IconNodeConnectedDot;
18495
18524
  exports.IconNodeLinesCurved = IconNodeLinesCurved;