@mirohq/design-system-icons 0.39.4 → 0.40.1-combobox.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
@@ -382,6 +382,39 @@ const IconArrowArcRight = react.forwardRef(
382
382
  );
383
383
  IconArrowArcRight[designSystemBaseIcon.iconSymbol] = true;
384
384
 
385
+ const IconArrowBendUpLeft = react.forwardRef(
386
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => react.createElement(
387
+ StyledIcon,
388
+ {
389
+ ...props,
390
+ weight,
391
+ size,
392
+ viewBox: "0 0 24 24",
393
+ fill: "none",
394
+ ref: forwardRef2
395
+ },
396
+ /* @__PURE__ */ jsxRuntime.jsx(
397
+ "path",
398
+ {
399
+ stroke: "currentColor",
400
+ strokeLinecap: "round",
401
+ strokeLinejoin: "round",
402
+ strokeWidth: "var(--svg-stroke-width)",
403
+ d: "M20 19c0-7-3-9-7-9h-9m0 0 5-5m-5 5 5 5"
404
+ }
405
+ ),
406
+ /* @__PURE__ */ jsxRuntime.jsx(
407
+ "path",
408
+ {
409
+ stroke: "currentColor",
410
+ strokeWidth: "var(--svg-stroke-width)",
411
+ d: "M12 10v.0001"
412
+ }
413
+ )
414
+ )
415
+ );
416
+ IconArrowBendUpLeft[designSystemBaseIcon.iconSymbol] = true;
417
+
385
418
  const IconArrowBendUpRight = react.forwardRef(
386
419
  ({ size = "medium", weight = "normal", ...props }, forwardRef2) => react.createElement(
387
420
  StyledIcon,
@@ -4142,6 +4175,30 @@ const IconDistributeVertical = react.forwardRef(
4142
4175
  );
4143
4176
  IconDistributeVertical[designSystemBaseIcon.iconSymbol] = true;
4144
4177
 
4178
+ const IconDollarSignCurrency = react.forwardRef(
4179
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => react.createElement(
4180
+ StyledIcon,
4181
+ {
4182
+ ...props,
4183
+ weight,
4184
+ size,
4185
+ viewBox: "0 0 24 24",
4186
+ fill: "none",
4187
+ ref: forwardRef2
4188
+ },
4189
+ /* @__PURE__ */ jsxRuntime.jsx(
4190
+ "path",
4191
+ {
4192
+ stroke: "currentColor",
4193
+ strokeLinecap: "round",
4194
+ strokeWidth: "var(--svg-stroke-width)",
4195
+ d: "M17 8.6667c0-1.1111-1-3.3334-5-3.3334s-5 2.2223-5 3.3334c0 1.111 1 3.3333 5 3.3333m0 0c4 0 5 2.2222 5 3.3333s-1 3.3334-5 3.3334-5-2.2223-5-3.3334m5-3.3333v-8m0 8v8"
4196
+ }
4197
+ )
4198
+ )
4199
+ );
4200
+ IconDollarSignCurrency[designSystemBaseIcon.iconSymbol] = true;
4201
+
4145
4202
  const IconDotsNine = react.forwardRef(
4146
4203
  ({ size = "medium", weight = "normal", ...props }, forwardRef2) => react.createElement(
4147
4204
  StyledIcon,
@@ -8088,6 +8145,30 @@ const IconPlug = react.forwardRef(
8088
8145
  );
8089
8146
  IconPlug[designSystemBaseIcon.iconSymbol] = true;
8090
8147
 
8148
+ const IconPlusBox = react.forwardRef(
8149
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => react.createElement(
8150
+ StyledIcon,
8151
+ {
8152
+ ...props,
8153
+ weight,
8154
+ size,
8155
+ viewBox: "0 0 24 24",
8156
+ fill: "none",
8157
+ ref: forwardRef2
8158
+ },
8159
+ /* @__PURE__ */ jsxRuntime.jsx(
8160
+ "path",
8161
+ {
8162
+ stroke: "currentColor",
8163
+ strokeLinecap: "round",
8164
+ strokeWidth: "var(--svg-stroke-width)",
8165
+ d: "M17.9988 15v3c0 .5523-.4477 1-1 1h-11c-.5523 0-1-.4477-1-1v-11c0-.5523.4477-1 1-1h5.0012m3.9988 2h6m-2.9988-3v6"
8166
+ }
8167
+ )
8168
+ )
8169
+ );
8170
+ IconPlusBox[designSystemBaseIcon.iconSymbol] = true;
8171
+
8091
8172
  const IconPlusSquare = react.forwardRef(
8092
8173
  ({ size = "medium", weight = "normal", ...props }, forwardRef2) => react.createElement(
8093
8174
  StyledIcon,
@@ -13116,6 +13197,7 @@ exports.IconAlignRight = IconAlignRight;
13116
13197
  exports.IconAlignTop = IconAlignTop;
13117
13198
  exports.IconArrowArcLeft = IconArrowArcLeft;
13118
13199
  exports.IconArrowArcRight = IconArrowArcRight;
13200
+ exports.IconArrowBendUpLeft = IconArrowBendUpLeft;
13119
13201
  exports.IconArrowBendUpRight = IconArrowBendUpRight;
13120
13202
  exports.IconArrowBoxOut = IconArrowBoxOut;
13121
13203
  exports.IconArrowClockwiseDownRight = IconArrowClockwiseDownRight;
@@ -13242,6 +13324,7 @@ exports.IconDiagramCardTeam = IconDiagramCardTeam;
13242
13324
  exports.IconDiagramCardUser = IconDiagramCardUser;
13243
13325
  exports.IconDistributeHorizontal = IconDistributeHorizontal;
13244
13326
  exports.IconDistributeVertical = IconDistributeVertical;
13327
+ exports.IconDollarSignCurrency = IconDollarSignCurrency;
13245
13328
  exports.IconDotsNine = IconDotsNine;
13246
13329
  exports.IconDotsSixHorizontal = IconDotsSixHorizontal;
13247
13330
  exports.IconDotsSixVertical = IconDotsSixVertical;
@@ -13373,6 +13456,7 @@ exports.IconPlayCircle = IconPlayCircle;
13373
13456
  exports.IconPlaybackSpeedCircle = IconPlaybackSpeedCircle;
13374
13457
  exports.IconPlug = IconPlug;
13375
13458
  exports.IconPlus = IconPlus;
13459
+ exports.IconPlusBox = IconPlusBox;
13376
13460
  exports.IconPlusSquare = IconPlusSquare;
13377
13461
  exports.IconPlusText = IconPlusText;
13378
13462
  exports.IconPresentationArrow = IconPresentationArrow;