@mirohq/design-system-icons 1.43.1 → 1.44.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
@@ -6428,6 +6428,32 @@ const IconFilledTopBox = react.forwardRef(
6428
6428
  );
6429
6429
  IconFilledTopBox[designSystemBaseIcon.iconSymbol] = true;
6430
6430
 
6431
+ const IconFlagPlus = react.forwardRef(
6432
+ ({ size = "medium", ...props }, forwardRef2) => {
6433
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
6434
+ return react.createElement(
6435
+ StyledIcon,
6436
+ {
6437
+ ...props,
6438
+ debug,
6439
+ "aria-hidden": true,
6440
+ size,
6441
+ viewBox: "0 0 24 24",
6442
+ fill: "none",
6443
+ ref: forwardRef2
6444
+ },
6445
+ /* @__PURE__ */ jsxRuntime.jsx(
6446
+ "path",
6447
+ {
6448
+ fill: "currentColor",
6449
+ d: "M12 3v2H5v7h7l.895.553.723 1.447H19v-2h2v3l-1 1h-7a1 1 0 0 1-.895-.553L11.382 14H5v8H3V4l1-1h8Zm7 2h3v2h-3v3h-2V7h-3V5h3V2h2v3Z"
6450
+ }
6451
+ )
6452
+ );
6453
+ }
6454
+ );
6455
+ IconFlagPlus[designSystemBaseIcon.iconSymbol] = true;
6456
+
6431
6457
  const IconFlag = react.forwardRef(
6432
6458
  ({ size = "medium", ...props }, forwardRef2) => {
6433
6459
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -16652,6 +16678,34 @@ const IconTrackpad = react.forwardRef(
16652
16678
  );
16653
16679
  IconTrackpad[designSystemBaseIcon.iconSymbol] = true;
16654
16680
 
16681
+ const IconTranslate = react.forwardRef(
16682
+ ({ size = "medium", ...props }, forwardRef2) => {
16683
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
16684
+ return react.createElement(
16685
+ StyledIcon,
16686
+ {
16687
+ ...props,
16688
+ debug,
16689
+ "aria-hidden": true,
16690
+ size,
16691
+ viewBox: "0 0 24 24",
16692
+ fill: "none",
16693
+ ref: forwardRef2
16694
+ },
16695
+ /* @__PURE__ */ jsxRuntime.jsx(
16696
+ "path",
16697
+ {
16698
+ fill: "currentColor",
16699
+ fillRule: "evenodd",
16700
+ d: "m4.941 17.79.01.205c.09 1.015.854 1.818 1.805 1.894l.146.006h2.94V22h-2.94l-.202-.006c-2.005-.109-3.613-1.835-3.715-3.988l-.005-.217v-2.104h1.961v2.104ZM22 22h-2.112l-1.178-3.158H14.7L13.524 22h-2.11l4.312-11.58h1.96L22 22Zm-6.517-5.263h2.444l-1.22-3.279-1.224 3.28Zm-7.6-12.632h3.92v7.369h-3.92v3.158H5.922v-3.158H2V4.105h3.922V2h1.96v2.105ZM3.96 9.368h1.96V6.211H3.96v3.157Zm3.922 0h1.96V6.211h-1.96v3.157ZM19.083 2A2.917 2.917 0 0 0 22 4.917v1.166A2.917 2.917 0 0 0 19.083 9h-1.166A2.917 2.917 0 0 0 15 6.083V4.917A2.917 2.917 0 0 0 17.917 2h1.166Z",
16701
+ clipRule: "evenodd"
16702
+ }
16703
+ )
16704
+ );
16705
+ }
16706
+ );
16707
+ IconTranslate[designSystemBaseIcon.iconSymbol] = true;
16708
+
16655
16709
  const IconTrapeze = react.forwardRef(
16656
16710
  ({ size = "medium", ...props }, forwardRef2) => {
16657
16711
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -18237,6 +18291,7 @@ exports.IconFileSpreadsheet = IconFileSpreadsheet;
18237
18291
  exports.IconFilledBottomBox = IconFilledBottomBox;
18238
18292
  exports.IconFilledTopBox = IconFilledTopBox;
18239
18293
  exports.IconFlag = IconFlag;
18294
+ exports.IconFlagPlus = IconFlagPlus;
18240
18295
  exports.IconFlask = IconFlask;
18241
18296
  exports.IconFlip = IconFlip;
18242
18297
  exports.IconFlipCard = IconFlipCard;
@@ -18621,6 +18676,7 @@ exports.IconTimer = IconTimer;
18621
18676
  exports.IconToolbar = IconToolbar;
18622
18677
  exports.IconTooltip = IconTooltip;
18623
18678
  exports.IconTrackpad = IconTrackpad;
18679
+ exports.IconTranslate = IconTranslate;
18624
18680
  exports.IconTrapeze = IconTrapeze;
18625
18681
  exports.IconTrash = IconTrash;
18626
18682
  exports.IconTrashSimple = IconTrashSimple;