@mirohq/design-system-icons 0.38.0 → 0.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
@@ -11471,6 +11471,40 @@ const IconTag = react.forwardRef(
11471
11471
  );
11472
11472
  IconTag[designSystemBaseIcon.iconSymbol] = true;
11473
11473
 
11474
+ const IconTasks = react.forwardRef(
11475
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => react.createElement(
11476
+ StyledIcon,
11477
+ {
11478
+ ...props,
11479
+ weight,
11480
+ size,
11481
+ viewBox: "0 0 24 24",
11482
+ fill: "none",
11483
+ ref: forwardRef2
11484
+ },
11485
+ /* @__PURE__ */ jsxRuntime.jsx(
11486
+ "path",
11487
+ {
11488
+ stroke: "currentColor",
11489
+ strokeMiterlimit: 10,
11490
+ strokeWidth: "var(--svg-stroke-width)",
11491
+ d: "M3 13.8h5.4v2.7h7.2v-2.7h5.4"
11492
+ }
11493
+ ),
11494
+ /* @__PURE__ */ jsxRuntime.jsx(
11495
+ "path",
11496
+ {
11497
+ stroke: "currentColor",
11498
+ strokeLinecap: "square",
11499
+ strokeMiterlimit: 10,
11500
+ strokeWidth: "var(--svg-stroke-width)",
11501
+ d: "M19.2 3h-14.4c-.9941 0-1.8.8059-1.8 1.8v14.4c0 .9941.8059 1.8 1.8 1.8h14.4c.9941 0 1.8-.8059 1.8-1.8v-14.4c0-.9941-.8059-1.8-1.8-1.8Z"
11502
+ }
11503
+ )
11504
+ )
11505
+ );
11506
+ IconTasks[designSystemBaseIcon.iconSymbol] = true;
11507
+
11474
11508
  const IconTextAUnderline = react.forwardRef(
11475
11509
  ({ size = "medium", weight = "normal", ...props }, forwardRef2) => react.createElement(
11476
11510
  StyledIcon,
@@ -13452,6 +13486,7 @@ exports.IconStroke5 = IconStroke5;
13452
13486
  exports.IconStroke6 = IconStroke6;
13453
13487
  exports.IconSwitch = IconSwitch;
13454
13488
  exports.IconTag = IconTag;
13489
+ exports.IconTasks = IconTasks;
13455
13490
  exports.IconTextAUnderline = IconTextAUnderline;
13456
13491
  exports.IconTextAa = IconTextAa;
13457
13492
  exports.IconTextAlignCenter = IconTextAlignCenter;