@mirohq/design-system-icons 1.40.1 → 1.41.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);
@@ -18400,6 +18426,7 @@ exports.IconRubberDuck = IconRubberDuck;
18400
18426
  exports.IconScale = IconScale;
18401
18427
  exports.IconScissors = IconScissors;
18402
18428
  exports.IconScreenUser = IconScreenUser;
18429
+ exports.IconScreensTwoSparkle = IconScreensTwoSparkle;
18403
18430
  exports.IconScrollbarXy = IconScrollbarXy;
18404
18431
  exports.IconSelect = IconSelect;
18405
18432
  exports.IconSentiment = IconSentiment;