@mirohq/design-system-icons 1.36.5 → 1.37.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
@@ -6264,6 +6264,34 @@ const IconFactory = react.forwardRef(
6264
6264
  );
6265
6265
  IconFactory[designSystemBaseIcon.iconSymbol] = true;
6266
6266
 
6267
+ const IconFigmaOutline = react.forwardRef(
6268
+ ({ size = "medium", ...props }, forwardRef2) => {
6269
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
6270
+ return react.createElement(
6271
+ StyledIcon,
6272
+ {
6273
+ ...props,
6274
+ debug,
6275
+ "aria-hidden": true,
6276
+ size,
6277
+ viewBox: "0 0 24 24",
6278
+ fill: "none",
6279
+ ref: forwardRef2
6280
+ },
6281
+ /* @__PURE__ */ jsxRuntime.jsx(
6282
+ "path",
6283
+ {
6284
+ fill: "currentColor",
6285
+ fillRule: "evenodd",
6286
+ d: "M9.121 9.735a2.266 2.266 0 1 0 0 4.53h2.328v-4.53H9.12Zm5.758-1.102a2.266 2.266 0 1 0 0-4.531H12.55v4.53h2.328Zm1.847.55A3.368 3.368 0 0 0 14.879 3H9.12a3.368 3.368 0 0 0-1.847 6.185A3.364 3.364 0 0 0 5.753 12c0 1.178.605 2.214 1.521 2.816a3.364 3.364 0 0 0-1.521 2.817C5.753 19.496 7.28 21 9.137 21c1.873 0 3.414-1.517 3.414-3.398v-3.11a3.357 3.357 0 0 0 2.266.875h.062a3.368 3.368 0 0 0 1.847-6.183Zm-1.847.552h-.062a2.266 2.266 0 1 0 0 4.53h.062a2.266 2.266 0 1 0 0-4.53Zm-8.024 7.898a2.266 2.266 0 0 1 2.266-2.266h2.328v2.235a2.31 2.31 0 0 1-2.312 2.296 2.279 2.279 0 0 1-2.282-2.265Zm4.594-9H9.12a2.266 2.266 0 1 1 0-4.531h2.328v4.53Zm.653 8.969v-4.128l.752.684a2.908 2.908 0 0 0 1.963.759h.062a2.918 2.918 0 0 0 1.6-5.357l-.573-.376.572-.376a2.918 2.918 0 0 0-1.6-5.357H9.122a2.918 2.918 0 0 0-1.6 5.357l.573.376-.573.376A2.914 2.914 0 0 0 6.203 12c0 1.02.523 1.918 1.318 2.44l.573.376-.573.376a2.915 2.915 0 0 0-1.318 2.44c0 1.612 1.322 2.918 2.934 2.918 1.628 0 2.965-1.32 2.965-2.948Zm-1.103 0v-1.785H9.121a1.816 1.816 0 0 0-1.815 1.816c0 .995.82 1.815 1.83 1.815A1.86 1.86 0 0 0 11 17.602Zm.9-8.317v5.43H9.12a2.715 2.715 0 1 1 0-5.43h2.777ZM16.693 12a1.815 1.815 0 0 0-1.815-1.815h-.062a1.816 1.816 0 1 0 0 3.63h.062A1.815 1.815 0 0 0 16.694 12Zm-4.796-8.348v5.431H9.121a2.716 2.716 0 0 1 0-5.43h2.777Zm4.796 2.715a1.816 1.816 0 0 0-1.815-1.815H13v3.63h1.878a1.816 1.816 0 0 0 1.815-1.815Zm-4.796 11.235a2.759 2.759 0 0 1-2.761 2.746c-1.501 0-2.732-1.216-2.732-2.715 0-1.5 1.216-2.716 2.716-2.716h2.777v2.685ZM7.306 12c0 1.002.812 1.815 1.815 1.815H11v-3.63H9.121A1.816 1.816 0 0 0 7.306 12Zm10.289 0c0 1.5-1.216 2.715-2.716 2.715h-.062a2.715 2.715 0 1 1 0-5.43h.062c1.5 0 2.716 1.215 2.716 2.715ZM7.305 6.367c0 1.002.813 1.815 1.816 1.816H11V4.552H9.121a1.816 1.816 0 0 0-1.815 1.815Zm10.29 0c0 1.5-1.216 2.716-2.716 2.716h-2.777v-5.43h2.777c1.5 0 2.716 1.215 2.716 2.714Zm1.102 0a3.806 3.806 0 0 1-1.244 2.817A3.805 3.805 0 0 1 18.697 12a3.818 3.818 0 0 1-3.818 3.817h-.062a3.803 3.803 0 0 1-1.816-.46v2.245c0 2.132-1.746 3.848-3.864 3.848-2.102 0-3.834-1.702-3.834-3.817 0-1.116.48-2.12 1.243-2.818A3.805 3.805 0 0 1 5.303 12c0-1.116.48-2.119 1.243-2.816a3.806 3.806 0 0 1-1.243-2.817A3.818 3.818 0 0 1 9.12 2.55h5.758a3.818 3.818 0 0 1 3.818 3.817Z",
6287
+ clipRule: "evenodd"
6288
+ }
6289
+ )
6290
+ );
6291
+ }
6292
+ );
6293
+ IconFigmaOutline[designSystemBaseIcon.iconSymbol] = true;
6294
+
6267
6295
  const IconFigma = react.forwardRef(
6268
6296
  ({ size = "medium", ...props }, forwardRef2) => {
6269
6297
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -8902,6 +8930,34 @@ const IconMarginTop = react.forwardRef(
8902
8930
  );
8903
8931
  IconMarginTop[designSystemBaseIcon.iconSymbol] = true;
8904
8932
 
8933
+ const IconMcp = react.forwardRef(
8934
+ ({ size = "medium", ...props }, forwardRef2) => {
8935
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
8936
+ return react.createElement(
8937
+ StyledIcon,
8938
+ {
8939
+ ...props,
8940
+ debug,
8941
+ "aria-hidden": true,
8942
+ size,
8943
+ viewBox: "0 0 24 24",
8944
+ fill: "none",
8945
+ ref: forwardRef2
8946
+ },
8947
+ /* @__PURE__ */ jsxRuntime.jsx(
8948
+ "path",
8949
+ {
8950
+ fill: "currentColor",
8951
+ fillRule: "evenodd",
8952
+ d: "M15.027 4.223a2.138 2.138 0 0 0-1.482-.594c-.553 0-1.085.213-1.481.594l-7.9 7.649a.713.713 0 0 1-1.14-.219.66.66 0 0 1 .152-.737l7.9-7.649a3.564 3.564 0 0 1 2.47-.99c.921 0 1.807.355 2.468.99.383.367.671.819.843 1.317.172.499.222 1.03.145 1.551a3.573 3.573 0 0 1 1.594.138c.514.166.982.446 1.368.819l.041.04c.324.31.581.682.757 1.093a3.297 3.297 0 0 1-.757 3.688l-7.145 6.916a.222.222 0 0 0-.05.246.223.223 0 0 0 .05.073l1.467 1.421a.668.668 0 0 1 .205.478.66.66 0 0 1-.205.478.713.713 0 0 1-.987 0l-1.467-1.42a1.555 1.555 0 0 1-.478-1.116 1.539 1.539 0 0 1 .478-1.116l7.145-6.917a2.002 2.002 0 0 0 .613-1.435 1.98 1.98 0 0 0-.613-1.434l-.041-.04a2.138 2.138 0 0 0-1.48-.594c-.552 0-1.084.212-1.48.592l-5.887 5.7-.002.001-.08.079a.713.713 0 0 1-1.14-.219.66.66 0 0 1 .152-.738l5.97-5.779a2.001 2.001 0 0 0 .61-1.433 1.98 1.98 0 0 0-.613-1.433Zm-.988 1.912a.668.668 0 0 0 .205-.478.66.66 0 0 0-.205-.478.713.713 0 0 0-.988 0l-5.843 5.657a3.32 3.32 0 0 0-.756 1.093 3.297 3.297 0 0 0 .756 3.688c.661.634 1.547.99 2.469.99.922 0 1.808-.356 2.469-.99l5.844-5.658a.668.668 0 0 0 .204-.478.66.66 0 0 0-.204-.478.713.713 0 0 0-.989 0l-5.843 5.657a2.139 2.139 0 0 1-1.481.595 2.139 2.139 0 0 1-1.482-.595 2 2 0 0 1-.613-1.434 1.98 1.98 0 0 1 .613-1.434l5.844-5.657Zm6.719 3.387a3.027 3.027 0 0 0-.94-2.195l-.003-.003-.039-.038-.137-.125a3.275 3.275 0 0 0-2.6-.758l-.356.05.052-.357a3.025 3.025 0 0 0-.909-2.634 3.294 3.294 0 0 0-2.28-.915c-.853 0-1.672.329-2.282.915l-7.9 7.648h-.001a.397.397 0 0 0-.122.284.39.39 0 0 0 .122.283.444.444 0 0 0 .614 0l7.899-7.648a2.41 2.41 0 0 1 1.67-.67c.622 0 1.22.24 1.668.67a2.273 2.273 0 0 1 .696 1.626 2.253 2.253 0 0 1-.537 1.462l-.156.166-5.97 5.78a.398.398 0 0 0-.122.283.393.393 0 0 0 .121.284.444.444 0 0 0 .614 0l.08-.077.002-.002 5.887-5.7V7.85a2.41 2.41 0 0 1 3.16-.15l.176.153.04.04.157.165a2.252 2.252 0 0 1-.156 3.092h-.001l-7.145 6.917v.001a1.285 1.285 0 0 0-.396.921 1.271 1.271 0 0 0 .395.92l.001.002 1.467 1.42.066.051a.445.445 0 0 0 .548-.052.396.396 0 0 0 .09-.436.395.395 0 0 0-.09-.13l-.001-.001-1.468-1.421a.495.495 0 0 1-.11-.546l.047-.086a.492.492 0 0 1 .063-.075l7.146-6.917a3.029 3.029 0 0 0 .939-2.196Zm-2.834-.04a.393.393 0 0 0-.121-.284.443.443 0 0 0-.614 0l-5.843 5.657a2.41 2.41 0 0 1-3.338 0 2.251 2.251 0 0 1-.515-2.513c.12-.28.295-.534.515-.745l5.844-5.656V5.94a.397.397 0 0 0 .122-.283.393.393 0 0 0-.121-.284.444.444 0 0 0-.549-.051l-.065.051-5.843 5.657a3.028 3.028 0 0 0-.696 3.387c.16.377.397.719.695 1.004.61.587 1.429.915 2.282.915s1.671-.328 2.282-.915l5.843-5.656a.395.395 0 0 0 .122-.283Zm3.374.04a3.57 3.57 0 0 1-1.106 2.583l.001.002-7.11 6.881 1.432 1.387a.936.936 0 0 1 .212 1.038.937.937 0 0 1-.213.307.983.983 0 0 1-1.36 0l-.002-.001-1.467-1.42a1.83 1.83 0 0 1-.56-1.31 1.81 1.81 0 0 1 .56-1.31l7.145-6.918h.001a1.71 1.71 0 0 0 .393-1.91 1.733 1.733 0 0 0-.393-.569l-.042-.04a1.871 1.871 0 0 0-2.586-.002l-5.885 5.698v.001l-.08.08h-.003a.984.984 0 0 1-1.575-.307.932.932 0 0 1 .212-1.038l5.97-5.78a1.734 1.734 0 0 0 .528-1.238 1.713 1.713 0 0 0-.53-1.238 1.869 1.869 0 0 0-1.294-.518 1.87 1.87 0 0 0-1.295.517l-7.9 7.65a.986.986 0 0 1-1.362 0 .938.938 0 0 1-.288-.673.932.932 0 0 1 .287-.673l7.9-7.647.001-.001a3.836 3.836 0 0 1 2.657-1.066c.99 0 1.944.382 2.655 1.066a3.566 3.566 0 0 1 1.1 2.764 3.812 3.812 0 0 1 2.691.915l.16.145.04.04c.35.336.628.738.818 1.182.19.444.288.92.288 1.403Zm-6.784-3.865a.93.93 0 0 1-.288.671l-5.843 5.658v.001a1.709 1.709 0 0 0-.392 1.91c.09.214.223.407.391.569.346.332.81.519 1.295.519a1.87 1.87 0 0 0 1.294-.52l5.843-5.655a.985.985 0 0 1 1.363-.001.937.937 0 0 1 .212 1.038.935.935 0 0 1-.148.24l-.064.067-5.844 5.657a3.835 3.835 0 0 1-2.656 1.065 3.835 3.835 0 0 1-2.656-1.064 3.569 3.569 0 0 1-.819-3.989c.19-.444.47-.846.82-1.182l5.841-5.656h.001a.984.984 0 0 1 1.362 0l.064.068a.935.935 0 0 1 .224.604Z",
8953
+ clipRule: "evenodd"
8954
+ }
8955
+ )
8956
+ );
8957
+ }
8958
+ );
8959
+ IconMcp[designSystemBaseIcon.iconSymbol] = true;
8960
+
8905
8961
  const IconMeasurePencil = react.forwardRef(
8906
8962
  ({ size = "medium", ...props }, forwardRef2) => {
8907
8963
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -9104,7 +9160,7 @@ const IconMinus = react.forwardRef(
9104
9160
  fill: "none",
9105
9161
  ref: forwardRef2
9106
9162
  },
9107
- /* @__PURE__ */ jsxRuntime.jsx("path", { fill: "currentColor", d: "M18 11v2H6v-2h12Z" })
9163
+ /* @__PURE__ */ jsxRuntime.jsx("path", { fill: "currentColor", d: "M20 11v2H4v-2h16Z" })
9108
9164
  );
9109
9165
  }
9110
9166
  );
@@ -11098,13 +11154,7 @@ const IconPlus = react.forwardRef(
11098
11154
  fill: "none",
11099
11155
  ref: forwardRef2
11100
11156
  },
11101
- /* @__PURE__ */ jsxRuntime.jsx(
11102
- "path",
11103
- {
11104
- fill: "currentColor",
11105
- d: "M12.75 6v5.25H18v1.5h-5.25V18h-1.5v-5.25H6v-1.5h5.25V6h1.5Z"
11106
- }
11107
- )
11157
+ /* @__PURE__ */ jsxRuntime.jsx("path", { fill: "currentColor", d: "M13 4v7h7v2h-7v7h-2v-7H4v-2h7V4h2Z" })
11108
11158
  );
11109
11159
  }
11110
11160
  );
@@ -16146,6 +16196,32 @@ const IconTextUUnderlined = react.forwardRef(
16146
16196
  );
16147
16197
  IconTextUUnderlined[designSystemBaseIcon.iconSymbol] = true;
16148
16198
 
16199
+ const IconThreeCircles = react.forwardRef(
16200
+ ({ size = "medium", ...props }, forwardRef2) => {
16201
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
16202
+ return react.createElement(
16203
+ StyledIcon,
16204
+ {
16205
+ ...props,
16206
+ debug,
16207
+ "aria-hidden": true,
16208
+ size,
16209
+ viewBox: "0 0 24 24",
16210
+ fill: "none",
16211
+ ref: forwardRef2
16212
+ },
16213
+ /* @__PURE__ */ jsxRuntime.jsx(
16214
+ "path",
16215
+ {
16216
+ fill: "currentColor",
16217
+ d: "M16.5 13a4.5 4.5 0 1 1 0 9 4.5 4.5 0 0 1 0-9Zm0 2a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5Zm-10-8a4.5 4.5 0 1 1 0 9 4.5 4.5 0 0 1 0-9Zm0 2a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5Zm10-7a4.5 4.5 0 1 1 0 9 4.5 4.5 0 0 1 0-9Zm0 2a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5Z"
16218
+ }
16219
+ )
16220
+ );
16221
+ }
16222
+ );
16223
+ IconThreeCircles[designSystemBaseIcon.iconSymbol] = true;
16224
+
16149
16225
  const IconThreeColumnsVertical = react.forwardRef(
16150
16226
  ({ size = "medium", ...props }, forwardRef2) => {
16151
16227
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -17939,6 +18015,7 @@ exports.IconEyedropper = IconEyedropper;
17939
18015
  exports.IconFactory = IconFactory;
17940
18016
  exports.IconFactoryHouse = IconFactoryHouse;
17941
18017
  exports.IconFigma = IconFigma;
18018
+ exports.IconFigmaOutline = IconFigmaOutline;
17942
18019
  exports.IconFileSpreadsheet = IconFileSpreadsheet;
17943
18020
  exports.IconFilledBottomBox = IconFilledBottomBox;
17944
18021
  exports.IconFilledTopBox = IconFilledTopBox;
@@ -18038,6 +18115,7 @@ exports.IconMarginLeftRight = IconMarginLeftRight;
18038
18115
  exports.IconMarginRight = IconMarginRight;
18039
18116
  exports.IconMarginTop = IconMarginTop;
18040
18117
  exports.IconMarginTopBottom = IconMarginTopBottom;
18118
+ exports.IconMcp = IconMcp;
18041
18119
  exports.IconMeasurePencil = IconMeasurePencil;
18042
18120
  exports.IconMegaphone = IconMegaphone;
18043
18121
  exports.IconMermaid = IconMermaid;
@@ -18310,6 +18388,7 @@ exports.IconTextSStrikethrough = IconTextSStrikethrough;
18310
18388
  exports.IconTextStyles = IconTextStyles;
18311
18389
  exports.IconTextT = IconTextT;
18312
18390
  exports.IconTextUUnderlined = IconTextUUnderlined;
18391
+ exports.IconThreeCircles = IconThreeCircles;
18313
18392
  exports.IconThreeColumnsVertical = IconThreeColumnsVertical;
18314
18393
  exports.IconThumbsUp = IconThumbsUp;
18315
18394
  exports.IconTickCircle = IconTickCircle;