@mirohq/design-system-icons 1.10.3-sync-design-tokens.1 → 1.11.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 CHANGED
@@ -8130,6 +8130,32 @@ const IconNavigationUpRight = react.forwardRef(
8130
8130
  );
8131
8131
  IconNavigationUpRight[designSystemBaseIcon.iconSymbol] = true;
8132
8132
 
8133
+ const IconNesting = react.forwardRef(
8134
+ ({ size = "medium", ...props }, forwardRef2) => {
8135
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
8136
+ return react.createElement(
8137
+ StyledIcon,
8138
+ {
8139
+ ...props,
8140
+ debug,
8141
+ "aria-hidden": true,
8142
+ size,
8143
+ viewBox: "0 0 24 24",
8144
+ fill: "none",
8145
+ ref: forwardRef2
8146
+ },
8147
+ /* @__PURE__ */ jsxRuntime.jsx(
8148
+ "path",
8149
+ {
8150
+ fill: "currentColor",
8151
+ d: "M19 3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H7v5a2 2 0 0 0 2 2h2v-1a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2h-6a2 2 0 0 1-2-2H9a4 4 0 0 1-4-4v-5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14Zm-6 13v3h6v-3h-6ZM5 8h14V5H5v3Z"
8152
+ }
8153
+ )
8154
+ );
8155
+ }
8156
+ );
8157
+ IconNesting[designSystemBaseIcon.iconSymbol] = true;
8158
+
8133
8159
  const IconNext = react.forwardRef(
8134
8160
  ({ size = "medium", ...props }, forwardRef2) => {
8135
8161
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -13010,6 +13036,32 @@ const IconStroke6 = react.forwardRef(
13010
13036
  );
13011
13037
  IconStroke6[designSystemBaseIcon.iconSymbol] = true;
13012
13038
 
13039
+ const IconSwapHorizontal = react.forwardRef(
13040
+ ({ size = "medium", ...props }, forwardRef2) => {
13041
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
13042
+ return react.createElement(
13043
+ StyledIcon,
13044
+ {
13045
+ ...props,
13046
+ debug,
13047
+ "aria-hidden": true,
13048
+ size,
13049
+ viewBox: "0 0 24 24",
13050
+ fill: "none",
13051
+ ref: forwardRef2
13052
+ },
13053
+ /* @__PURE__ */ jsxRuntime.jsx(
13054
+ "path",
13055
+ {
13056
+ fill: "currentColor",
13057
+ d: "M15.583 6.707 17.876 9H7.29v2h13l.707-1.707-4-4-1.414 1.414ZM8.414 17.293 6.121 15h9.586v-2h-12L3 14.707l4 4 1.414-1.414Z"
13058
+ }
13059
+ )
13060
+ );
13061
+ }
13062
+ );
13063
+ IconSwapHorizontal[designSystemBaseIcon.iconSymbol] = true;
13064
+
13013
13065
  const IconSwitch = react.forwardRef(
13014
13066
  ({ size = "medium", ...props }, forwardRef2) => {
13015
13067
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -13246,7 +13298,7 @@ const IconTextAUnderline = react.forwardRef(
13246
13298
  "path",
13247
13299
  {
13248
13300
  fill: "currentColor",
13249
- d: "m12.923 3.615 5.385 12.923-1.846.77L15.083 14H8.917l-1.379 3.308-1.846-.77 5.385-12.923h1.846ZM9.75 12h4.5L12 6.6 9.75 12ZM21 19v2H3v-2h18Z"
13301
+ d: "M21 20v2H3v-2h18ZM12.923 3l5.935 14.248-1.846.77-1.929-4.633H8.917l-1.976 4.634-1.845-.77L11.077 3h1.846ZM9.75 11.385h4.5L12 5.985l-2.25 5.4Z"
13250
13302
  }
13251
13303
  )
13252
13304
  );
@@ -15436,6 +15488,7 @@ exports.IconNavigationArrowLines = IconNavigationArrowLines;
15436
15488
  exports.IconNavigationUpLeftFilled = IconNavigationUpLeftFilled;
15437
15489
  exports.IconNavigationUpLeftSlash = IconNavigationUpLeftSlash;
15438
15490
  exports.IconNavigationUpRight = IconNavigationUpRight;
15491
+ exports.IconNesting = IconNesting;
15439
15492
  exports.IconNext = IconNext;
15440
15493
  exports.IconNodeConnectedDot = IconNodeConnectedDot;
15441
15494
  exports.IconNodeLinesCurved = IconNodeLinesCurved;
@@ -15619,6 +15672,7 @@ exports.IconStroke3 = IconStroke3;
15619
15672
  exports.IconStroke4 = IconStroke4;
15620
15673
  exports.IconStroke5 = IconStroke5;
15621
15674
  exports.IconStroke6 = IconStroke6;
15675
+ exports.IconSwapHorizontal = IconSwapHorizontal;
15622
15676
  exports.IconSwitch = IconSwitch;
15623
15677
  exports.IconTable = IconTable;
15624
15678
  exports.IconTableFormat = IconTableFormat;