@mirohq/design-system-icons 0.22.0 → 0.23.1-dropdown.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 +158 -0
- package/dist/main.js.map +1 -1
- package/dist/module.js +153 -1
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +19 -7
- package/package.json +5 -5
- package/react/arrows-square-counter-clockwise-y.tsx +33 -0
- package/react/index.ts +6 -0
- package/react/magnifying-glass-plus.tsx +33 -0
- package/react/mobile.tsx +33 -0
- package/react/planet.tsx +32 -0
- package/react/social-jira.tsx +45 -0
- package/react/social-slack.tsx +37 -0
- package/svg/24/arrows-square-counter-clockwise-y.svg +2 -0
- package/svg/24/magnifying-glass-plus.svg +2 -0
- package/svg/24/mobile.svg +2 -0
- package/svg/24/planet.svg +2 -0
- package/svg/24/social-jira.svg +2 -0
- package/svg/24/social-slack.svg +2 -0
- package/svg/meta.json +64 -6
package/dist/main.js
CHANGED
|
@@ -1039,6 +1039,28 @@ const IconArrowsOutSimple = React.forwardRef(
|
|
|
1039
1039
|
);
|
|
1040
1040
|
IconArrowsOutSimple[designSystemBaseIcon.iconSymbol] = true;
|
|
1041
1041
|
|
|
1042
|
+
const IconArrowsSquareCounterClockwiseY = React.forwardRef(
|
|
1043
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => React.createElement(
|
|
1044
|
+
StyledIcon,
|
|
1045
|
+
{
|
|
1046
|
+
...props,
|
|
1047
|
+
weight,
|
|
1048
|
+
size,
|
|
1049
|
+
viewBox: "0 0 24 24",
|
|
1050
|
+
fill: "none",
|
|
1051
|
+
ref: forwardRef2
|
|
1052
|
+
},
|
|
1053
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1054
|
+
stroke: "currentColor",
|
|
1055
|
+
strokeLinecap: "round",
|
|
1056
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
1057
|
+
d: "M13 19h4.5a.5.5 0 0 0 .5-.5v-13.5m0 0-3.5 3.5m3.5-3.5 3.5 3.5m-10.5-3.5h-4.5a.5.5 0 0 0-.5.5v13.5m0 0 3.5-3.5m-3.5 3.5-3.5-3.5",
|
|
1058
|
+
vectorEffect: "non-scaling-stroke"
|
|
1059
|
+
})
|
|
1060
|
+
)
|
|
1061
|
+
);
|
|
1062
|
+
IconArrowsSquareCounterClockwiseY[designSystemBaseIcon.iconSymbol] = true;
|
|
1063
|
+
|
|
1042
1064
|
const IconArticle = React.forwardRef(
|
|
1043
1065
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => React.createElement(
|
|
1044
1066
|
StyledIcon,
|
|
@@ -5354,6 +5376,28 @@ const IconMagnifyingGlassLightning = React.forwardRef(
|
|
|
5354
5376
|
);
|
|
5355
5377
|
IconMagnifyingGlassLightning[designSystemBaseIcon.iconSymbol] = true;
|
|
5356
5378
|
|
|
5379
|
+
const IconMagnifyingGlassPlus = React.forwardRef(
|
|
5380
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => React.createElement(
|
|
5381
|
+
StyledIcon,
|
|
5382
|
+
{
|
|
5383
|
+
...props,
|
|
5384
|
+
weight,
|
|
5385
|
+
size,
|
|
5386
|
+
viewBox: "0 0 24 24",
|
|
5387
|
+
fill: "none",
|
|
5388
|
+
ref: forwardRef2
|
|
5389
|
+
},
|
|
5390
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
5391
|
+
stroke: "currentColor",
|
|
5392
|
+
strokeLinecap: "round",
|
|
5393
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
5394
|
+
d: "m20 20-5.7574-5.7574m-4.2426-6.2426v2m0 0v2m0-2h-2m2 0h2m4 0c0 3.3137-2.6863 6-6 6s-6-2.6863-6-6 2.6863-6 6-6 6 2.6863 6 6Z",
|
|
5395
|
+
vectorEffect: "non-scaling-stroke"
|
|
5396
|
+
})
|
|
5397
|
+
)
|
|
5398
|
+
);
|
|
5399
|
+
IconMagnifyingGlassPlus[designSystemBaseIcon.iconSymbol] = true;
|
|
5400
|
+
|
|
5357
5401
|
const IconMagnifyingGlass = React.forwardRef(
|
|
5358
5402
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => React.createElement(
|
|
5359
5403
|
StyledIcon,
|
|
@@ -5513,6 +5557,33 @@ const IconMinus = React.forwardRef(
|
|
|
5513
5557
|
);
|
|
5514
5558
|
IconMinus[designSystemBaseIcon.iconSymbol] = true;
|
|
5515
5559
|
|
|
5560
|
+
const IconMobile = React.forwardRef(
|
|
5561
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => React.createElement(
|
|
5562
|
+
StyledIcon,
|
|
5563
|
+
{
|
|
5564
|
+
...props,
|
|
5565
|
+
weight,
|
|
5566
|
+
size,
|
|
5567
|
+
viewBox: "0 0 24 24",
|
|
5568
|
+
fill: "none",
|
|
5569
|
+
ref: forwardRef2
|
|
5570
|
+
},
|
|
5571
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
5572
|
+
stroke: "currentColor",
|
|
5573
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
5574
|
+
d: "M16.5 3h-9a.5.5 0 0 0-.5.5v17a.5.5 0 0 0 .5.5h9a.5.5 0 0 0 .5-.5v-17a.5.5 0 0 0-.5-.5Z",
|
|
5575
|
+
vectorEffect: "non-scaling-stroke"
|
|
5576
|
+
}),
|
|
5577
|
+
/* @__PURE__ */ React__default["default"].createElement("circle", {
|
|
5578
|
+
cx: 12,
|
|
5579
|
+
cy: 18,
|
|
5580
|
+
r: 1,
|
|
5581
|
+
fill: "currentColor"
|
|
5582
|
+
})
|
|
5583
|
+
)
|
|
5584
|
+
);
|
|
5585
|
+
IconMobile[designSystemBaseIcon.iconSymbol] = true;
|
|
5586
|
+
|
|
5516
5587
|
const IconMonitorArrow = React.forwardRef(
|
|
5517
5588
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => React.createElement(
|
|
5518
5589
|
StyledIcon,
|
|
@@ -6430,6 +6501,27 @@ const IconPlaceholder = React.forwardRef(
|
|
|
6430
6501
|
);
|
|
6431
6502
|
IconPlaceholder[designSystemBaseIcon.iconSymbol] = true;
|
|
6432
6503
|
|
|
6504
|
+
const IconPlanet = React.forwardRef(
|
|
6505
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => React.createElement(
|
|
6506
|
+
StyledIcon,
|
|
6507
|
+
{
|
|
6508
|
+
...props,
|
|
6509
|
+
weight,
|
|
6510
|
+
size,
|
|
6511
|
+
viewBox: "0 0 24 24",
|
|
6512
|
+
fill: "none",
|
|
6513
|
+
ref: forwardRef2
|
|
6514
|
+
},
|
|
6515
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
6516
|
+
stroke: "currentColor",
|
|
6517
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
6518
|
+
d: "M17.1369 5.8669c2.5677-.6563 4.2362-.9527 4.8631.1331 1.0797 1.8701-2.8831 6.3495-8.0836 9.352-5.2005 3.0026-10.8367 4.5181-11.9164 2.648-.6283-1.0882.201-3.0997 2.0619-5m15.9381-1c0 4.4183-3.5817 8-8 8s-8-3.5817-8-8 3.5817-8 8-8 8 3.5817 8 8Z",
|
|
6519
|
+
vectorEffect: "non-scaling-stroke"
|
|
6520
|
+
})
|
|
6521
|
+
)
|
|
6522
|
+
);
|
|
6523
|
+
IconPlanet[designSystemBaseIcon.iconSymbol] = true;
|
|
6524
|
+
|
|
6433
6525
|
const IconPlayCircle = React.forwardRef(
|
|
6434
6526
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => React.createElement(
|
|
6435
6527
|
StyledIcon,
|
|
@@ -7971,6 +8063,40 @@ const IconSocialInstagram = React.forwardRef(
|
|
|
7971
8063
|
);
|
|
7972
8064
|
IconSocialInstagram[designSystemBaseIcon.iconSymbol] = true;
|
|
7973
8065
|
|
|
8066
|
+
const IconSocialJira = React.forwardRef(
|
|
8067
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => React.createElement(
|
|
8068
|
+
StyledIcon,
|
|
8069
|
+
{
|
|
8070
|
+
...props,
|
|
8071
|
+
weight,
|
|
8072
|
+
size,
|
|
8073
|
+
viewBox: "0 0 24 24",
|
|
8074
|
+
fill: "none",
|
|
8075
|
+
ref: forwardRef2
|
|
8076
|
+
},
|
|
8077
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
8078
|
+
fill: "currentColor",
|
|
8079
|
+
d: "M21.202 2h-9.202a4.1899 4.1899 0 0 0 1.217 2.954 4.1415 4.1415 0 0 0 2.937 1.224h1.695v1.646c.001 2.306 1.859 4.176 4.151 4.176v-9.197a.8.8 0 0 0-.798-.803Z"
|
|
8080
|
+
}),
|
|
8081
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
8082
|
+
fill: "currentColor",
|
|
8083
|
+
d: "M16.202 7h-9.202a4.19 4.19 0 0 0 1.217 2.954 4.1419 4.1419 0 0 0 2.937 1.224h1.695v1.646c.001 2.306 1.859 4.176 4.151 4.176v-9.197a.8.8 0 0 0-.798-.803Z"
|
|
8084
|
+
}),
|
|
8085
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
8086
|
+
fill: "currentColor",
|
|
8087
|
+
d: "M11.202 12h-9.202a4.19 4.19 0 0 0 1.217 2.954 4.1419 4.1419 0 0 0 2.937 1.224h1.695v1.646c.001 2.306 1.859 4.176 4.151 4.176v-9.197a.8001.8001 0 0 0-.798-.803Z"
|
|
8088
|
+
}),
|
|
8089
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
8090
|
+
stroke: "currentColor",
|
|
8091
|
+
strokeLinejoin: "round",
|
|
8092
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
8093
|
+
d: "M12 12h.0007",
|
|
8094
|
+
vectorEffect: "non-scaling-stroke"
|
|
8095
|
+
})
|
|
8096
|
+
)
|
|
8097
|
+
);
|
|
8098
|
+
IconSocialJira[designSystemBaseIcon.iconSymbol] = true;
|
|
8099
|
+
|
|
7974
8100
|
const IconSocialLinkedin = React.forwardRef(
|
|
7975
8101
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => React.createElement(
|
|
7976
8102
|
StyledIcon,
|
|
@@ -7997,6 +8123,32 @@ const IconSocialLinkedin = React.forwardRef(
|
|
|
7997
8123
|
);
|
|
7998
8124
|
IconSocialLinkedin[designSystemBaseIcon.iconSymbol] = true;
|
|
7999
8125
|
|
|
8126
|
+
const IconSocialSlack = React.forwardRef(
|
|
8127
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => React.createElement(
|
|
8128
|
+
StyledIcon,
|
|
8129
|
+
{
|
|
8130
|
+
...props,
|
|
8131
|
+
weight,
|
|
8132
|
+
size,
|
|
8133
|
+
viewBox: "0 0 24 24",
|
|
8134
|
+
fill: "none",
|
|
8135
|
+
ref: forwardRef2
|
|
8136
|
+
},
|
|
8137
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
8138
|
+
fill: "currentColor",
|
|
8139
|
+
d: "M6.202 14.6384c0 1.1564-.9447 2.101-2.101 2.101-1.1564 0-2.101-.9446-2.101-2.101 0-1.1563.9446-2.1009 2.101-2.1009h2.101v2.1009ZM7.2606 14.6384c0-1.1563.9446-2.101 2.101-2.101 1.1563 0 2.1009.9447 2.1009 2.101v5.2606c0 1.1564-.9446 2.101-2.101 2.101-1.1563 0-2.101-.9446-2.101-2.101v-5.2606ZM9.3616 6.202c-1.1564 0-2.101-.9447-2.101-2.101 0-1.1564.9446-2.101 2.101-2.101 1.1563 0 2.1009.9446 2.1009 2.101v2.101h-2.101ZM9.3616 7.2606c1.1563 0 2.1009.9446 2.1009 2.101 0 1.1563-.9446 2.1009-2.101 2.1009h-5.2605c-1.1564 0-2.101-.9446-2.101-2.101 0-1.1563.9446-2.101 2.101-2.101h5.2606ZM17.798 9.3616c0-1.1564.9447-2.101 2.101-2.101 1.1564 0 2.101.9446 2.101 2.101 0 1.1563-.9446 2.1009-2.101 2.1009h-2.101v-2.101ZM16.7394 9.3616c0 1.1563-.9446 2.1009-2.101 2.1009-1.1563 0-2.1009-.9446-2.1009-2.101v-5.2605c0-1.1564.9446-2.101 2.1009-2.101 1.1564 0 2.101.9446 2.101 2.101v5.2606ZM14.6384 17.798c1.1564 0 2.101.9447 2.101 2.101 0 1.1564-.9446 2.101-2.101 2.101-1.1563 0-2.101-.9446-2.101-2.101v-2.101h2.101ZM14.6384 16.7394c-1.1563 0-2.1009-.9446-2.1009-2.101 0-1.1563.9446-2.1009 2.1009-2.1009h5.2606c1.1564 0 2.101.9446 2.101 2.1009 0 1.1564-.9446 2.101-2.101 2.101h-5.2606Z"
|
|
8140
|
+
}),
|
|
8141
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
8142
|
+
stroke: "currentColor",
|
|
8143
|
+
strokeLinejoin: "round",
|
|
8144
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
8145
|
+
d: "M12 12h.0007",
|
|
8146
|
+
vectorEffect: "non-scaling-stroke"
|
|
8147
|
+
})
|
|
8148
|
+
)
|
|
8149
|
+
);
|
|
8150
|
+
IconSocialSlack[designSystemBaseIcon.iconSymbol] = true;
|
|
8151
|
+
|
|
8000
8152
|
const IconSocialTwitter = React.forwardRef(
|
|
8001
8153
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => React.createElement(
|
|
8002
8154
|
StyledIcon,
|
|
@@ -10578,6 +10730,7 @@ exports.IconArrowsInSimple = IconArrowsInSimple;
|
|
|
10578
10730
|
exports.IconArrowsOutCardinal = IconArrowsOutCardinal;
|
|
10579
10731
|
exports.IconArrowsOutLinesHorizontal = IconArrowsOutLinesHorizontal;
|
|
10580
10732
|
exports.IconArrowsOutSimple = IconArrowsOutSimple;
|
|
10733
|
+
exports.IconArrowsSquareCounterClockwiseY = IconArrowsSquareCounterClockwiseY;
|
|
10581
10734
|
exports.IconArticle = IconArticle;
|
|
10582
10735
|
exports.IconAt = IconAt;
|
|
10583
10736
|
exports.IconBadge = IconBadge;
|
|
@@ -10730,11 +10883,13 @@ exports.IconLogout = IconLogout;
|
|
|
10730
10883
|
exports.IconMagnet = IconMagnet;
|
|
10731
10884
|
exports.IconMagnifyingGlass = IconMagnifyingGlass;
|
|
10732
10885
|
exports.IconMagnifyingGlassLightning = IconMagnifyingGlassLightning;
|
|
10886
|
+
exports.IconMagnifyingGlassPlus = IconMagnifyingGlassPlus;
|
|
10733
10887
|
exports.IconMap = IconMap;
|
|
10734
10888
|
exports.IconMegaphone = IconMegaphone;
|
|
10735
10889
|
exports.IconMicrophone = IconMicrophone;
|
|
10736
10890
|
exports.IconMicrophoneSlash = IconMicrophoneSlash;
|
|
10737
10891
|
exports.IconMinus = IconMinus;
|
|
10892
|
+
exports.IconMobile = IconMobile;
|
|
10738
10893
|
exports.IconMonitorArrow = IconMonitorArrow;
|
|
10739
10894
|
exports.IconMonitorPause = IconMonitorPause;
|
|
10740
10895
|
exports.IconMonitorPlay = IconMonitorPlay;
|
|
@@ -10767,6 +10922,7 @@ exports.IconPen = IconPen;
|
|
|
10767
10922
|
exports.IconPenTip = IconPenTip;
|
|
10768
10923
|
exports.IconPentagon = IconPentagon;
|
|
10769
10924
|
exports.IconPlaceholder = IconPlaceholder;
|
|
10925
|
+
exports.IconPlanet = IconPlanet;
|
|
10770
10926
|
exports.IconPlay = IconPlay;
|
|
10771
10927
|
exports.IconPlayCircle = IconPlayCircle;
|
|
10772
10928
|
exports.IconPlaybackSpeedCircle = IconPlaybackSpeedCircle;
|
|
@@ -10821,7 +10977,9 @@ exports.IconSmileyPlus = IconSmileyPlus;
|
|
|
10821
10977
|
exports.IconSmileySticker = IconSmileySticker;
|
|
10822
10978
|
exports.IconSocialFacebook = IconSocialFacebook;
|
|
10823
10979
|
exports.IconSocialInstagram = IconSocialInstagram;
|
|
10980
|
+
exports.IconSocialJira = IconSocialJira;
|
|
10824
10981
|
exports.IconSocialLinkedin = IconSocialLinkedin;
|
|
10982
|
+
exports.IconSocialSlack = IconSocialSlack;
|
|
10825
10983
|
exports.IconSocialTwitter = IconSocialTwitter;
|
|
10826
10984
|
exports.IconSocialYoutube = IconSocialYoutube;
|
|
10827
10985
|
exports.IconSparks = IconSparks;
|