@mirohq/design-system-icons 1.38.2 → 1.39.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
@@ -10902,6 +10902,32 @@ const IconPlayCircle = react.forwardRef(
10902
10902
  );
10903
10903
  IconPlayCircle[designSystemBaseIcon.iconSymbol] = true;
10904
10904
 
10905
+ const IconPlayOutline = react.forwardRef(
10906
+ ({ size = "medium", ...props }, forwardRef2) => {
10907
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
10908
+ return react.createElement(
10909
+ StyledIcon,
10910
+ {
10911
+ ...props,
10912
+ debug,
10913
+ "aria-hidden": true,
10914
+ size,
10915
+ viewBox: "0 0 24 24",
10916
+ fill: "none",
10917
+ ref: forwardRef2
10918
+ },
10919
+ /* @__PURE__ */ jsxRuntime.jsx(
10920
+ "path",
10921
+ {
10922
+ fill: "currentColor",
10923
+ d: "M19 10.857v2.286L7.333 20 5 18.857V5.143L7.333 4 19 10.857ZM7 6.39v11.22l.247.12 9.75-5.73-9.75-5.731-.247.12Z"
10924
+ }
10925
+ )
10926
+ );
10927
+ }
10928
+ );
10929
+ IconPlayOutline[designSystemBaseIcon.iconSymbol] = true;
10930
+
10905
10931
  const IconPlay = react.forwardRef(
10906
10932
  ({ size = "medium", ...props }, forwardRef2) => {
10907
10933
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -18218,6 +18244,7 @@ exports.IconPlaceholder = IconPlaceholder;
18218
18244
  exports.IconPlanet = IconPlanet;
18219
18245
  exports.IconPlay = IconPlay;
18220
18246
  exports.IconPlayCircle = IconPlayCircle;
18247
+ exports.IconPlayOutline = IconPlayOutline;
18221
18248
  exports.IconPlaybackSpeedCircle = IconPlaybackSpeedCircle;
18222
18249
  exports.IconPlug = IconPlug;
18223
18250
  exports.IconPlugSlash = IconPlugSlash;