@mirohq/design-system-icons 0.17.0 → 0.18.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
@@ -7252,6 +7252,33 @@ const IconRssRectangle = React.forwardRef(
7252
7252
  )
7253
7253
  );
7254
7254
 
7255
+ const IconRss = React.forwardRef(
7256
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => React.createElement(
7257
+ StyledIcon,
7258
+ {
7259
+ ...props,
7260
+ weight,
7261
+ size,
7262
+ viewBox: "0 0 24 24",
7263
+ fill: "none",
7264
+ ref: forwardRef2
7265
+ },
7266
+ /* @__PURE__ */ React__default["default"].createElement("circle", {
7267
+ cx: 3.5,
7268
+ cy: 20.5,
7269
+ r: 1.5,
7270
+ fill: "currentColor"
7271
+ }),
7272
+ /* @__PURE__ */ React__default["default"].createElement("path", {
7273
+ stroke: "currentColor",
7274
+ strokeLinecap: "round",
7275
+ strokeWidth: "var(--svg-stroke-width)",
7276
+ d: "M3 12c5 0 9 3 9 9m-9-17c10 0 17 7 17 17",
7277
+ vectorEffect: "non-scaling-stroke"
7278
+ })
7279
+ )
7280
+ );
7281
+
7255
7282
  const IconScissors = React.forwardRef(
7256
7283
  ({ size = "medium", weight = "normal", ...props }, forwardRef2) => React.createElement(
7257
7284
  StyledIcon,
@@ -8357,6 +8384,32 @@ const IconStarFilled = React.forwardRef(
8357
8384
  )
8358
8385
  );
8359
8386
 
8387
+ const IconStarHalf = React.forwardRef(
8388
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => React.createElement(
8389
+ StyledIcon,
8390
+ {
8391
+ ...props,
8392
+ weight,
8393
+ size,
8394
+ viewBox: "0 0 24 24",
8395
+ fill: "none",
8396
+ ref: forwardRef2
8397
+ },
8398
+ /* @__PURE__ */ React__default["default"].createElement("path", {
8399
+ stroke: "currentColor",
8400
+ strokeLinecap: "round",
8401
+ strokeLinejoin: "round",
8402
+ strokeWidth: "var(--svg-stroke-width)",
8403
+ d: "m15 9-2.7764-5.5528c-.0921-.1843-.3551-.1843-.4472 0l-2.7764 5.5528-5.5535.9256c-.194.0323-.2765.2657-.1458.4127l3.6993 4.1617-.9265 6.0222c-.0308.2005.1774.3523.359.2616l5.5675-2.7838 5.5676 2.7838c.1815.0907.3897-.0611.3589-.2616l-.9265-6.0222 3.6993-4.1617c.1307-.147.0483-.3804-.1457-.4127l-5.5536-.9256Z",
8404
+ vectorEffect: "non-scaling-stroke"
8405
+ }),
8406
+ /* @__PURE__ */ React__default["default"].createElement("path", {
8407
+ fill: "currentColor",
8408
+ d: "m6.4324 20.7838 5.5676-2.7838v-13.941c0-.2638-.3556-.3477-.4736-.1118l-2.5264 5.0528-5.5535.9256c-.194.0323-.2765.2657-.1458.4127l3.6993 4.1617-.9265 6.0222c-.0308.2005.1774.3523.359.2616Z"
8409
+ })
8410
+ )
8411
+ );
8412
+
8360
8413
  const IconStar = React.forwardRef(
8361
8414
  ({ size = "medium", weight = "normal", ...props }, forwardRef2) => React.createElement(
8362
8415
  StyledIcon,
@@ -10354,6 +10407,7 @@ exports.IconRectanglesTwoPlus = IconRectanglesTwoPlus;
10354
10407
  exports.IconRectanglesTwoUser = IconRectanglesTwoUser;
10355
10408
  exports.IconRhombus = IconRhombus;
10356
10409
  exports.IconRocket = IconRocket;
10410
+ exports.IconRss = IconRss;
10357
10411
  exports.IconRssRectangle = IconRssRectangle;
10358
10412
  exports.IconScissors = IconScissors;
10359
10413
  exports.IconScrollbarXy = IconScrollbarXy;
@@ -10396,6 +10450,7 @@ exports.IconSquaresUnmerge = IconSquaresUnmerge;
10396
10450
  exports.IconStack = IconStack;
10397
10451
  exports.IconStar = IconStar;
10398
10452
  exports.IconStarFilled = IconStarFilled;
10453
+ exports.IconStarHalf = IconStarHalf;
10399
10454
  exports.IconStickyCorners = IconStickyCorners;
10400
10455
  exports.IconStickyEyeClosed = IconStickyEyeClosed;
10401
10456
  exports.IconStickyEyeOpen = IconStickyEyeOpen;