@mirohq/design-system-icons 1.40.2 → 1.42.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
@@ -12938,6 +12938,32 @@ const IconScreenUser = react.forwardRef(
12938
12938
  );
12939
12939
  IconScreenUser[designSystemBaseIcon.iconSymbol] = true;
12940
12940
 
12941
+ const IconScreensTwoSparkle = react.forwardRef(
12942
+ ({ size = "medium", ...props }, forwardRef2) => {
12943
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
12944
+ return react.createElement(
12945
+ StyledIcon,
12946
+ {
12947
+ ...props,
12948
+ debug,
12949
+ "aria-hidden": true,
12950
+ size,
12951
+ viewBox: "0 0 24 24",
12952
+ fill: "none",
12953
+ ref: forwardRef2
12954
+ },
12955
+ /* @__PURE__ */ jsxRuntime.jsx(
12956
+ "path",
12957
+ {
12958
+ fill: "currentColor",
12959
+ d: "M5.976 12.995V6a3 3 0 0 1 3-3h2.956v2H8.975a1 1 0 0 0-1 1l.001 6.995a1 1 0 0 0 1 1h10.026a1 1 0 0 0 1-1v-.968h2v.969a3 3 0 0 1-3 3H8.976a3 3 0 0 1-3-3Zm10.154 8.003a3 3 0 0 0 3-3h-2a1 1 0 0 1-1 1H6.5c-1.5 0-2.5-1.243-2.5-2.5v-5.523a1 1 0 0 1 1-1v-2a3 3 0 0 0-3 3v5.523c0 2.5 1.426 4.5 4.5 4.5h9.63Zm3-3V17h-2v.998h2ZM19.25 1A3.75 3.75 0 0 0 23 4.75v1.5A3.75 3.75 0 0 0 19.25 10h-1.5A3.75 3.75 0 0 0 14 6.25v-1.5A3.75 3.75 0 0 0 17.75 1h1.5ZM16 11v2h-4.023v-2H16Z"
12960
+ }
12961
+ )
12962
+ );
12963
+ }
12964
+ );
12965
+ IconScreensTwoSparkle[designSystemBaseIcon.iconSymbol] = true;
12966
+
12941
12967
  const IconScrollbarXy = react.forwardRef(
12942
12968
  ({ size = "medium", ...props }, forwardRef2) => {
12943
12969
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -13072,6 +13098,34 @@ const IconShapeSparkle = react.forwardRef(
13072
13098
  );
13073
13099
  IconShapeSparkle[designSystemBaseIcon.iconSymbol] = true;
13074
13100
 
13101
+ const IconShapeSuggestion = react.forwardRef(
13102
+ ({ size = "medium", ...props }, forwardRef2) => {
13103
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
13104
+ return react.createElement(
13105
+ StyledIcon,
13106
+ {
13107
+ ...props,
13108
+ debug,
13109
+ "aria-hidden": true,
13110
+ size,
13111
+ viewBox: "0 0 24 24",
13112
+ fill: "none",
13113
+ ref: forwardRef2
13114
+ },
13115
+ /* @__PURE__ */ jsxRuntime.jsx(
13116
+ "path",
13117
+ {
13118
+ fill: "currentColor",
13119
+ fillRule: "evenodd",
13120
+ d: "M20 12a8 8 0 0 1-8 8 7.975 7.975 0 0 1-3.934-1.032l-.282-.167-.83-.104-2.43.77.763-2.456-.103-.822-.137-.23A8 8 0 0 1 12 4V2C6.477 2 2 6.477 2 12c0 1.753.452 3.402 1.246 4.836l-1.201 3.867 1.258 1.25 3.833-1.216A9.973 9.973 0 0 0 12 22c5.523 0 10-4.477 10-10h-2ZM17.536 1.202a3 3 0 0 1 4.242 0l1.172 1.172a3 3 0 0 1 0 4.242l-8.476 8.476-5.297 1.06L8 14.975l1.06-5.297 8.476-8.476Zm-6.635 9.462-.646 3.232 3.232-.646 5.255-5.256-2.586-2.586-5.255 5.256Zm9.463-8.048a1 1 0 0 0-1.414 0l-1.38 1.378 2.586 2.586 1.38-1.378a1 1 0 0 0 0-1.414l-1.172-1.172Z",
13121
+ clipRule: "evenodd"
13122
+ }
13123
+ )
13124
+ );
13125
+ }
13126
+ );
13127
+ IconShapeSuggestion[designSystemBaseIcon.iconSymbol] = true;
13128
+
13075
13129
  const IconShapesLinesStacked = react.forwardRef(
13076
13130
  ({ size = "medium", ...props }, forwardRef2) => {
13077
13131
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -18400,11 +18454,13 @@ exports.IconRubberDuck = IconRubberDuck;
18400
18454
  exports.IconScale = IconScale;
18401
18455
  exports.IconScissors = IconScissors;
18402
18456
  exports.IconScreenUser = IconScreenUser;
18457
+ exports.IconScreensTwoSparkle = IconScreensTwoSparkle;
18403
18458
  exports.IconScrollbarXy = IconScrollbarXy;
18404
18459
  exports.IconSelect = IconSelect;
18405
18460
  exports.IconSentiment = IconSentiment;
18406
18461
  exports.IconShadow = IconShadow;
18407
18462
  exports.IconShapeSparkle = IconShapeSparkle;
18463
+ exports.IconShapeSuggestion = IconShapeSuggestion;
18408
18464
  exports.IconShapes = IconShapes;
18409
18465
  exports.IconShapesLines = IconShapesLines;
18410
18466
  exports.IconShapesLinesStacked = IconShapesLinesStacked;