@mirohq/design-system-icons 0.16.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 +96 -36
- package/dist/main.js.map +1 -1
- package/dist/module.js +94 -37
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +7 -1
- package/package.json +2 -2
- package/react/chat-lines-dot.tsx +34 -0
- package/react/index.ts +3 -0
- package/react/rss.tsx +33 -0
- package/react/star-half.tsx +37 -0
- package/react/stroke-1.tsx +2 -6
- package/react/stroke-2.tsx +2 -6
- package/react/stroke-3.tsx +2 -6
- package/react/stroke-4.tsx +2 -6
- package/react/stroke-5.tsx +2 -6
- package/react/stroke-6.tsx +2 -6
- package/svg/24/chat-lines-dot.svg +2 -0
- package/svg/24/rss.svg +2 -0
- package/svg/24/star-half.svg +2 -0
- package/svg/24/stroke-1.svg +1 -1
- package/svg/24/stroke-2.svg +1 -1
- package/svg/24/stroke-3.svg +1 -1
- package/svg/24/stroke-4.svg +1 -1
- package/svg/24/stroke-5.svg +1 -1
- package/svg/24/stroke-6.svg +1 -1
- package/svg/meta.json +27 -1
package/dist/main.js
CHANGED
|
@@ -1713,6 +1713,34 @@ const IconChatLinesCross = React.forwardRef(
|
|
|
1713
1713
|
)
|
|
1714
1714
|
);
|
|
1715
1715
|
|
|
1716
|
+
const IconChatLinesDot = React.forwardRef(
|
|
1717
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => React.createElement(
|
|
1718
|
+
StyledIcon,
|
|
1719
|
+
{
|
|
1720
|
+
...props,
|
|
1721
|
+
weight,
|
|
1722
|
+
size,
|
|
1723
|
+
viewBox: "0 0 24 24",
|
|
1724
|
+
fill: "none",
|
|
1725
|
+
ref: forwardRef2
|
|
1726
|
+
},
|
|
1727
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1728
|
+
stroke: "currentColor",
|
|
1729
|
+
strokeLinecap: "round",
|
|
1730
|
+
strokeLinejoin: "round",
|
|
1731
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
1732
|
+
d: "M8 9h8m-8 4h8m-2-9h-10c-.5523 0-1 .4477-1 1v12c0 .5523.4477 1 1 1h5l2.9293 2.9293a.1.1 0 0 0 .1414 0l2.9293-2.9293h5c.5523 0 1-.4477 1-1v-7",
|
|
1733
|
+
vectorEffect: "non-scaling-stroke"
|
|
1734
|
+
}),
|
|
1735
|
+
/* @__PURE__ */ React__default["default"].createElement("circle", {
|
|
1736
|
+
cx: 20,
|
|
1737
|
+
cy: 4,
|
|
1738
|
+
r: 3,
|
|
1739
|
+
fill: "currentColor"
|
|
1740
|
+
})
|
|
1741
|
+
)
|
|
1742
|
+
);
|
|
1743
|
+
|
|
1716
1744
|
const IconChatLinesEyeOpen = React.forwardRef(
|
|
1717
1745
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => React.createElement(
|
|
1718
1746
|
StyledIcon,
|
|
@@ -7224,6 +7252,33 @@ const IconRssRectangle = React.forwardRef(
|
|
|
7224
7252
|
)
|
|
7225
7253
|
);
|
|
7226
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
|
+
|
|
7227
7282
|
const IconScissors = React.forwardRef(
|
|
7228
7283
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => React.createElement(
|
|
7229
7284
|
StyledIcon,
|
|
@@ -8329,6 +8384,32 @@ const IconStarFilled = React.forwardRef(
|
|
|
8329
8384
|
)
|
|
8330
8385
|
);
|
|
8331
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
|
+
|
|
8332
8413
|
const IconStar = React.forwardRef(
|
|
8333
8414
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => React.createElement(
|
|
8334
8415
|
StyledIcon,
|
|
@@ -8591,12 +8672,8 @@ const IconStroke1 = React.forwardRef(
|
|
|
8591
8672
|
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
8592
8673
|
clipPath: "url(#a)"
|
|
8593
8674
|
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
8594
|
-
|
|
8595
|
-
|
|
8596
|
-
strokeLinejoin: "round",
|
|
8597
|
-
strokeWidth: "var(--svg-stroke-width)",
|
|
8598
|
-
d: "m5.1056 17.8101 13.7888-11.5702",
|
|
8599
|
-
vectorEffect: "non-scaling-stroke"
|
|
8675
|
+
fill: "currentColor",
|
|
8676
|
+
d: "M4.3182 19.6818c-.4243-.4242-.4243-1.1121 0-1.5364l13.8272-13.8272c.4243-.4243 1.1122-.4243 1.5364 0 .4243.4242.4243 1.1121 0 1.5363l-13.8272 13.8273c-.4243.4243-1.1121.4243-1.5364 0Z"
|
|
8600
8677
|
})),
|
|
8601
8678
|
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
8602
8679
|
id: "a"
|
|
@@ -8621,12 +8698,8 @@ const IconStroke2 = React.forwardRef(
|
|
|
8621
8698
|
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
8622
8699
|
clipPath: "url(#a)"
|
|
8623
8700
|
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
8624
|
-
|
|
8625
|
-
|
|
8626
|
-
strokeLinejoin: "round",
|
|
8627
|
-
strokeWidth: "var(--svg-stroke-width)",
|
|
8628
|
-
d: "m5.8716 17.1672 12.2568-10.2845",
|
|
8629
|
-
vectorEffect: "non-scaling-stroke"
|
|
8701
|
+
fill: "currentColor",
|
|
8702
|
+
d: "M4.612 19.388c-.816-.8161-.816-2.1392 0-2.9552l11.8208-11.8208c.816-.816 2.1391-.816 2.9552 0 .816.816.816 2.1392 0 2.9552l-11.8208 11.8208c-.816.816-2.1391.816-2.9552 0Z"
|
|
8630
8703
|
})),
|
|
8631
8704
|
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
8632
8705
|
id: "a"
|
|
@@ -8651,12 +8724,8 @@ const IconStroke3 = React.forwardRef(
|
|
|
8651
8724
|
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
8652
8725
|
clipPath: "url(#a)"
|
|
8653
8726
|
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
8654
|
-
|
|
8655
|
-
|
|
8656
|
-
strokeLinejoin: "round",
|
|
8657
|
-
strokeWidth: "var(--svg-stroke-width)",
|
|
8658
|
-
d: "m6.6378 16.5244 10.7246-8.999",
|
|
8659
|
-
vectorEffect: "non-scaling-stroke"
|
|
8727
|
+
fill: "currentColor",
|
|
8728
|
+
d: "M4.8842 19.1158c-1.179-1.179-1.179-3.0905 0-4.2695l9.9621-9.962c1.179-1.179 3.0905-1.179 4.2695 0 1.1789 1.179 1.1789 3.0904 0 4.2694l-9.9621 9.9621c-1.179 1.1789-3.0905 1.1789-4.2695 0Z"
|
|
8660
8729
|
})),
|
|
8661
8730
|
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
8662
8731
|
id: "a"
|
|
@@ -8681,12 +8750,8 @@ const IconStroke4 = React.forwardRef(
|
|
|
8681
8750
|
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
8682
8751
|
clipPath: "url(#a)"
|
|
8683
8752
|
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
8684
|
-
|
|
8685
|
-
|
|
8686
|
-
strokeLinejoin: "round",
|
|
8687
|
-
strokeWidth: "var(--svg-stroke-width)",
|
|
8688
|
-
d: "m7.4037 15.8818 9.1926-7.7134",
|
|
8689
|
-
vectorEffect: "non-scaling-stroke"
|
|
8753
|
+
fill: "currentColor",
|
|
8754
|
+
d: "M5.137 18.8629c-1.516-1.5161-1.516-3.9742 0-5.4903l8.2356-8.2355c1.5161-1.5161 3.9742-1.5161 5.4903 0 1.5161 1.5161 1.5161 3.9742 0 5.4903l-8.2355 8.2355c-1.5161 1.5161-3.9742 1.5161-5.4903 0Z"
|
|
8690
8755
|
})),
|
|
8691
8756
|
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
8692
8757
|
id: "a"
|
|
@@ -8711,12 +8776,8 @@ const IconStroke5 = React.forwardRef(
|
|
|
8711
8776
|
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
8712
8777
|
clipPath: "url(#a)"
|
|
8713
8778
|
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
8714
|
-
|
|
8715
|
-
|
|
8716
|
-
strokeLinejoin: "round",
|
|
8717
|
-
strokeWidth: "var(--svg-stroke-width)",
|
|
8718
|
-
d: "m8.1697 15.239 7.6605-6.4278",
|
|
8719
|
-
vectorEffect: "non-scaling-stroke"
|
|
8779
|
+
fill: "currentColor",
|
|
8780
|
+
d: "M5.3726 18.6274c-1.8301-1.8301-1.8301-4.7973 0-6.6274l6.6274-6.6274c1.8301-1.8301 4.7973-1.8301 6.6274 0 1.8301 1.83 1.8301 4.7973 0 6.6274l-6.6274 6.6274c-1.8301 1.8301-4.7973 1.8301-6.6274 0Z"
|
|
8720
8781
|
})),
|
|
8721
8782
|
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
8722
8783
|
id: "a"
|
|
@@ -8741,12 +8802,8 @@ const IconStroke6 = React.forwardRef(
|
|
|
8741
8802
|
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
8742
8803
|
clipPath: "url(#a)"
|
|
8743
8804
|
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
8744
|
-
|
|
8745
|
-
|
|
8746
|
-
strokeLinejoin: "round",
|
|
8747
|
-
strokeWidth: "var(--svg-stroke-width)",
|
|
8748
|
-
d: "m8.9358 14.5959 6.1284-5.1422",
|
|
8749
|
-
vectorEffect: "non-scaling-stroke"
|
|
8805
|
+
fill: "currentColor",
|
|
8806
|
+
d: "M5.2574 18.6924c-2.3432-2.3432-2.3432-6.1421 0-8.4853l4.9497-4.9497c2.3432-2.3432 6.1421-2.3432 8.4853 0 2.3431 2.3431 2.3431 6.1421 0 8.4852l-4.9498 4.9498c-2.3431 2.3431-6.1421 2.3431-8.4852 0Z"
|
|
8750
8807
|
})),
|
|
8751
8808
|
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
8752
8809
|
id: "a"
|
|
@@ -10150,6 +10207,7 @@ exports.IconChartBarYSimple = IconChartBarYSimple;
|
|
|
10150
10207
|
exports.IconChat = IconChat;
|
|
10151
10208
|
exports.IconChatDashesLinesTwo = IconChatDashesLinesTwo;
|
|
10152
10209
|
exports.IconChatLinesCross = IconChatLinesCross;
|
|
10210
|
+
exports.IconChatLinesDot = IconChatLinesDot;
|
|
10153
10211
|
exports.IconChatLinesEyeOpen = IconChatLinesEyeOpen;
|
|
10154
10212
|
exports.IconChatLinesTwo = IconChatLinesTwo;
|
|
10155
10213
|
exports.IconChatLinesTwoStack = IconChatLinesTwoStack;
|
|
@@ -10349,6 +10407,7 @@ exports.IconRectanglesTwoPlus = IconRectanglesTwoPlus;
|
|
|
10349
10407
|
exports.IconRectanglesTwoUser = IconRectanglesTwoUser;
|
|
10350
10408
|
exports.IconRhombus = IconRhombus;
|
|
10351
10409
|
exports.IconRocket = IconRocket;
|
|
10410
|
+
exports.IconRss = IconRss;
|
|
10352
10411
|
exports.IconRssRectangle = IconRssRectangle;
|
|
10353
10412
|
exports.IconScissors = IconScissors;
|
|
10354
10413
|
exports.IconScrollbarXy = IconScrollbarXy;
|
|
@@ -10391,6 +10450,7 @@ exports.IconSquaresUnmerge = IconSquaresUnmerge;
|
|
|
10391
10450
|
exports.IconStack = IconStack;
|
|
10392
10451
|
exports.IconStar = IconStar;
|
|
10393
10452
|
exports.IconStarFilled = IconStarFilled;
|
|
10453
|
+
exports.IconStarHalf = IconStarHalf;
|
|
10394
10454
|
exports.IconStickyCorners = IconStickyCorners;
|
|
10395
10455
|
exports.IconStickyEyeClosed = IconStickyEyeClosed;
|
|
10396
10456
|
exports.IconStickyEyeOpen = IconStickyEyeOpen;
|