@mirohq/design-system-icons 1.37.5 → 1.38.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
@@ -12778,6 +12778,34 @@ const IconRss = react.forwardRef(
12778
12778
  );
12779
12779
  IconRss[designSystemBaseIcon.iconSymbol] = true;
12780
12780
 
12781
+ const IconRubberDuck = react.forwardRef(
12782
+ ({ size = "medium", ...props }, forwardRef2) => {
12783
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
12784
+ return react.createElement(
12785
+ StyledIcon,
12786
+ {
12787
+ ...props,
12788
+ debug,
12789
+ "aria-hidden": true,
12790
+ size,
12791
+ viewBox: "0 0 24 24",
12792
+ fill: "none",
12793
+ ref: forwardRef2
12794
+ },
12795
+ /* @__PURE__ */ jsxRuntime.jsx(
12796
+ "path",
12797
+ {
12798
+ fill: "currentColor",
12799
+ fillRule: "evenodd",
12800
+ d: "M10.5 7.5H9V6h1.5v1.5Zm.133-4.742a4.595 4.595 0 0 1 4.272 4.203 4.607 4.607 0 0 1-1.388 3.698c.407.367.922.595 1.471.648a2.791 2.791 0 0 0 2.703-1.948l.003-.009a.896.896 0 0 1 .707-.58.894.894 0 0 1 .768.257l.078.09.001.002a9.816 9.816 0 0 1 1.932 5.844 9.747 9.747 0 0 1-1.399 4.99l.001.002a2.648 2.648 0 0 1-2.29 1.292H7.437a2.644 2.644 0 0 1-1.717-.581 6.382 6.382 0 0 1-2.427-4.687v-.01a6.294 6.294 0 0 1 2.196-4.844 5.569 5.569 0 0 1-1.36-.616h-.001a5.326 5.326 0 0 1-.768-.594 2.104 2.104 0 0 1-.525-2.344 2.18 2.18 0 0 1 2.03-1.41h1.027A4.602 4.602 0 0 1 8.51 3.125a4.592 4.592 0 0 1 2.123-.367Zm-.191 1.812a2.813 2.813 0 0 0-2.904 2.557v.055a.243.243 0 0 0 0 .047v.31a2.46 2.46 0 0 0 0 .272c.028.15.065.296.114.44l.055.145.002.005c.18.477.491.89.896 1.194l.18.124.007.005.122.084a.89.89 0 0 1 .43.758v.006a.893.893 0 0 1-.189.534c-.119.153-.468.272-.655.322a4.526 4.526 0 0 0-.688.277l-.01.004a4.643 4.643 0 0 0-2.725 4.208 4.597 4.597 0 0 0 1.584 3.178l.189.155.008.006.128.09c.136.077.29.116.448.115h10.06a.88.88 0 0 0 .437-.112.88.88 0 0 0 .288-.262v-.012l.036-.06a7.887 7.887 0 0 0 .309-7.629 4.476 4.476 0 0 1-3.684 1.709h-.015a4.52 4.52 0 0 1-3.302-1.97.797.797 0 0 1-.197-.354c0-.003 0-.006-.002-.009v-.003a.895.895 0 0 1 .396-.997l.005-.004a2.765 2.765 0 0 0 1.39-2.422l-.017-.269a2.814 2.814 0 0 0-2.696-2.497ZM4.896 7.954a.394.394 0 0 0-.393.26l-.004.01a.332.332 0 0 0 .046.328l.034.038h.001c.148.14.31.266.48.376.37.23.774.397 1.193.504l-.014-.024a5.431 5.431 0 0 1-.206-.447v-.001a4.905 4.905 0 0 1-.271-1.003l-.003-.02v-.021h-.863Z",
12801
+ clipRule: "evenodd"
12802
+ }
12803
+ )
12804
+ );
12805
+ }
12806
+ );
12807
+ IconRubberDuck[designSystemBaseIcon.iconSymbol] = true;
12808
+
12781
12809
  const IconScale = react.forwardRef(
12782
12810
  ({ size = "medium", ...props }, forwardRef2) => {
12783
12811
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -18260,6 +18288,7 @@ exports.IconRhombus = IconRhombus;
18260
18288
  exports.IconRocket = IconRocket;
18261
18289
  exports.IconRss = IconRss;
18262
18290
  exports.IconRssRectangle = IconRssRectangle;
18291
+ exports.IconRubberDuck = IconRubberDuck;
18263
18292
  exports.IconScale = IconScale;
18264
18293
  exports.IconScissors = IconScissors;
18265
18294
  exports.IconScreenUser = IconScreenUser;