@mirohq/design-system-icons 0.69.0 → 0.70.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
@@ -1140,6 +1140,43 @@ const IconAlignmentScale = react.forwardRef(
1140
1140
  );
1141
1141
  IconAlignmentScale[designSystemBaseIcon.iconSymbol] = true;
1142
1142
 
1143
+ const IconAltText = react.forwardRef(
1144
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
1145
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
1146
+ return react.createElement(
1147
+ StyledIcon,
1148
+ {
1149
+ ...props,
1150
+ weight,
1151
+ debug,
1152
+ "aria-hidden": true,
1153
+ size,
1154
+ viewBox: "0 0 24 24",
1155
+ fill: "none",
1156
+ ref: forwardRef2
1157
+ },
1158
+ /* @__PURE__ */ jsxRuntime.jsx(
1159
+ "path",
1160
+ {
1161
+ stroke: "currentColor",
1162
+ strokeWidth: "var(--svg-stroke-width)",
1163
+ d: "M12 8v7h4M16 9h6M19 9v7"
1164
+ }
1165
+ ),
1166
+ /* @__PURE__ */ jsxRuntime.jsx(
1167
+ "path",
1168
+ {
1169
+ fill: "currentColor",
1170
+ fillRule: "evenodd",
1171
+ d: "m4.077 16 .6-1.5h2.6459l.6 1.5h2.154l-3.1485-7.8714h-1.857l-3.1485 7.8714h2.154Zm2.4459-3.5h-1.046l.523-1.3074.523 1.3074Z",
1172
+ clipRule: "evenodd"
1173
+ }
1174
+ )
1175
+ );
1176
+ }
1177
+ );
1178
+ IconAltText[designSystemBaseIcon.iconSymbol] = true;
1179
+
1143
1180
  const IconArrowArcLeftNew = react.forwardRef(
1144
1181
  (props, forwardRef2) => {
1145
1182
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -2516,6 +2553,59 @@ const IconArrowFatUpRight = react.forwardRef(
2516
2553
  );
2517
2554
  IconArrowFatUpRight[designSystemBaseIcon.iconSymbol] = true;
2518
2555
 
2556
+ const IconArrowLeftRightDotted = react.forwardRef(
2557
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
2558
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
2559
+ return react.createElement(
2560
+ StyledIcon,
2561
+ {
2562
+ ...props,
2563
+ weight,
2564
+ debug,
2565
+ "aria-hidden": true,
2566
+ size,
2567
+ viewBox: "0 0 24 24",
2568
+ fill: "none",
2569
+ ref: forwardRef2
2570
+ },
2571
+ /* @__PURE__ */ jsxRuntime.jsx(
2572
+ "path",
2573
+ {
2574
+ fill: "currentColor",
2575
+ d: "m18 12 .7593.6508v-1.3016l-.7593.6508Zm-.7593-.6508-3 3.5 1.5186 1.3016 3-3.5-1.5186-1.3016Zm1.5186 0-3-3.5-1.5186 1.3016 3 3.5 1.5186-1.3016Zm-6.2593 1.6508h2.5v-2h-2.5v2Zm2.5 0h3v-2h-3v2Z"
2576
+ }
2577
+ ),
2578
+ /* @__PURE__ */ jsxRuntime.jsx(
2579
+ "path",
2580
+ {
2581
+ stroke: "currentColor",
2582
+ strokeLinejoin: "bevel",
2583
+ strokeWidth: "var(--svg-stroke-width)",
2584
+ d: "m9 15.5-3-3.5 3-3.5"
2585
+ }
2586
+ ),
2587
+ /* @__PURE__ */ jsxRuntime.jsx(
2588
+ "path",
2589
+ {
2590
+ stroke: "currentColor",
2591
+ strokeWidth: "var(--svg-stroke-width)",
2592
+ d: "M11.5 12h-5"
2593
+ }
2594
+ ),
2595
+ /* @__PURE__ */ jsxRuntime.jsx(
2596
+ "path",
2597
+ {
2598
+ fill: "currentColor",
2599
+ fillRule: "evenodd",
2600
+ d: "M5.3333 4.2222c-.6136 0-1.111.4975-1.111 1.1111v2.2223h-2.2223v-2.2223c0-1.841 1.4924-3.3333 3.3333-3.3333h2.2223v2.2222h-2.2223Zm8.8889 0h-4.4444v-2.2222h4.4444v2.2222Zm4.4445 0h-2.2223v-2.2222h2.2223c1.8409 0 3.3333 1.4924 3.3333 3.3333v2.2223h-2.2222v-2.2223c0-.6136-.4975-1.111-1.1111-1.111Zm-14.4445 5.5556v4.4444h-2.2222v-4.4444h2.2222Zm15.5556 4.4444v-4.4444h2.2222v4.4444h-2.2222Zm-15.5556 2.2222v2.2223c0 .6136.4975 1.1111 1.1111 1.1111h2.2223v2.2222h-2.2223c-1.841 0-3.3333-1.4924-3.3333-3.3333v-2.2223h2.2222Zm15.5556 2.2223v-2.2223h2.2222v2.2223c0 1.8409-1.4924 3.3333-3.3333 3.3333h-2.2223v-2.2222h2.2223c.6136 0 1.1111-.4975 1.1111-1.1111Zm-10 1.1111h4.4444v2.2222h-4.4444v-2.2222Z",
2601
+ clipRule: "evenodd"
2602
+ }
2603
+ )
2604
+ );
2605
+ }
2606
+ );
2607
+ IconArrowLeftRightDotted[designSystemBaseIcon.iconSymbol] = true;
2608
+
2519
2609
  const IconArrowLeftNew = react.forwardRef(
2520
2610
  (props, forwardRef2) => {
2521
2611
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -40917,6 +41007,7 @@ exports.IconAlignRight = IconAlignRight;
40917
41007
  exports.IconAlignTop = IconAlignTop;
40918
41008
  exports.IconAlignTopGroup = IconAlignTopGroup;
40919
41009
  exports.IconAlignmentScale = IconAlignmentScale;
41010
+ exports.IconAltText = IconAltText;
40920
41011
  exports.IconArrowArcLeft = IconArrowArcLeft;
40921
41012
  exports.IconArrowArcRight = IconArrowArcRight;
40922
41013
  exports.IconArrowBendUpLeft = IconArrowBendUpLeft;
@@ -40936,6 +41027,7 @@ exports.IconArrowFatLeftRight = IconArrowFatLeftRight;
40936
41027
  exports.IconArrowFatRight = IconArrowFatRight;
40937
41028
  exports.IconArrowFatUpRight = IconArrowFatUpRight;
40938
41029
  exports.IconArrowLeft = IconArrowLeft;
41030
+ exports.IconArrowLeftRightDotted = IconArrowLeftRightDotted;
40939
41031
  exports.IconArrowRight = IconArrowRight;
40940
41032
  exports.IconArrowUp = IconArrowUp;
40941
41033
  exports.IconArrowUpCircle = IconArrowUpCircle;