mx-icons 1.0.8 → 1.0.13
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/README.md +193 -127
- package/dist/components/cancel-circle/CancelCircleBold.js +30 -0
- package/dist/components/cancel-circle/CancelCircleLinear.js +45 -0
- package/dist/components/cancel-circle/index.js +21 -0
- package/dist/components/checkmark-circle-02/CheckmarkCircle02Bold.js +32 -0
- package/dist/components/checkmark-circle-02/CheckmarkCircle02Linear.js +34 -0
- package/dist/components/checkmark-circle-02/index.js +21 -0
- package/dist/components/discord/DiscordBold.js +32 -0
- package/dist/components/discord/DiscordLinear.js +59 -0
- package/dist/components/discord/index.js +21 -0
- package/dist/components/facebook/FacebookBold.js +25 -0
- package/dist/components/facebook/FacebookLinear.js +24 -0
- package/dist/components/facebook/index.js +21 -0
- package/dist/components/github/GithubBold.js +32 -0
- package/dist/components/github/GithubBulk.js +53 -0
- package/dist/components/github/GithubLinear.js +45 -0
- package/dist/components/github/index.js +29 -0
- package/dist/components/linkedin/LinkedInBold.js +25 -0
- package/dist/components/linkedin/LinkedInLinear.js +24 -0
- package/dist/components/linkedin/index.js +21 -0
- package/dist/components/mail-02/Mail02Bold.js +32 -0
- package/dist/components/mail-02/Mail02Linear.js +44 -0
- package/dist/components/mail-02/index.js +21 -0
- package/dist/components/new-twitter/NewTwitterBulk.js +43 -0
- package/dist/components/new-twitter/NewTwitterLinear.js +33 -0
- package/dist/components/new-twitter/index.js +21 -0
- package/dist/components/twitch/TwitchBold.js +32 -0
- package/dist/components/twitch/TwitchLinear.js +42 -0
- package/dist/components/twitch/index.js +21 -0
- package/dist/components/twitter/TwitterBold.js +32 -0
- package/dist/components/twitter/TwitterLinear.js +32 -0
- package/dist/components/twitter/index.js +21 -0
- package/dist/components/youtube/YoutubeBold.js +32 -0
- package/dist/components/youtube/YoutubeLinear.js +42 -0
- package/dist/components/youtube/index.js +21 -0
- package/dist/favicon.ico +0 -0
- package/dist/index.js +112 -0
- package/dist/manifest.json +24 -0
- package/dist/maskable_icon.png +0 -0
- package/dist/mx-icons-bg.png +0 -0
- package/package.json +3 -2
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
import Icon from "../../Icon.js";
|
|
4
|
+
function FacebookLinear({
|
|
5
|
+
size = 24,
|
|
6
|
+
color = "#292D32",
|
|
7
|
+
className = "",
|
|
8
|
+
...props
|
|
9
|
+
}) {
|
|
10
|
+
return /* @__PURE__ */ jsx(
|
|
11
|
+
Icon,
|
|
12
|
+
{
|
|
13
|
+
size,
|
|
14
|
+
color,
|
|
15
|
+
fill: "currentColor",
|
|
16
|
+
className,
|
|
17
|
+
...props,
|
|
18
|
+
children: /* @__PURE__ */ jsx("path", { d: "M13 19.938A8.001 8.001 0 0 0 12 4a8 8 0 0 0-1 15.938V14H9v-2h2v-1.654c0-1.337.14-1.822.4-2.311A2.726 2.726 0 0 1 12.536 6.9c.382-.205.857-.328 1.687-.381.329-.021.755.005 1.278.08v1.9H15c-.917 0-1.296.043-1.522.164a.727.727 0 0 0-.314.314c-.12.226-.164.45-.164 1.368V12h2.5l-.5 2h-2v5.938zM12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10z", fill: "currentColor" })
|
|
19
|
+
}
|
|
20
|
+
);
|
|
21
|
+
}
|
|
22
|
+
export {
|
|
23
|
+
FacebookLinear as default
|
|
24
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import FacebookBold from "./FacebookBold.js";
|
|
2
|
+
import FacebookLinear from "./FacebookLinear.js";
|
|
3
|
+
const variants = [
|
|
4
|
+
{
|
|
5
|
+
variant: "bold",
|
|
6
|
+
slug: "bold",
|
|
7
|
+
Component: FacebookBold,
|
|
8
|
+
componentName: "FacebookBold"
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
variant: "linear",
|
|
12
|
+
slug: "linear",
|
|
13
|
+
Component: FacebookLinear,
|
|
14
|
+
componentName: "FacebookLinear"
|
|
15
|
+
}
|
|
16
|
+
];
|
|
17
|
+
export {
|
|
18
|
+
FacebookBold,
|
|
19
|
+
FacebookLinear,
|
|
20
|
+
variants
|
|
21
|
+
};
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
import Icon from "../../Icon.js";
|
|
4
|
+
function GithubBold({
|
|
5
|
+
size = 24,
|
|
6
|
+
color = "#292D32",
|
|
7
|
+
className = "",
|
|
8
|
+
...props
|
|
9
|
+
}) {
|
|
10
|
+
return /* @__PURE__ */ jsx(
|
|
11
|
+
Icon,
|
|
12
|
+
{
|
|
13
|
+
size,
|
|
14
|
+
color,
|
|
15
|
+
fill: "none",
|
|
16
|
+
className,
|
|
17
|
+
...props,
|
|
18
|
+
children: /* @__PURE__ */ jsx(
|
|
19
|
+
"path",
|
|
20
|
+
{
|
|
21
|
+
fillRule: "evenodd",
|
|
22
|
+
clipRule: "evenodd",
|
|
23
|
+
d: "M6.5 1.25C6.21592 1.25 5.95622 1.4105 5.82918 1.66459L5.82866 1.66563L5.82805 1.66686L5.82656 1.66987L5.82252 1.67814L5.81044 1.70342C5.80069 1.72411 5.78767 1.75243 5.77207 1.78789C5.7409 1.85874 5.69929 1.95846 5.65299 2.0831C5.56066 2.33166 5.44811 2.68348 5.3631 3.10631C5.21391 3.84838 5.14273 4.84483 5.44792 5.89115C5.12844 6.32469 4.84982 6.79949 4.64268 7.37522C4.38286 8.09734 4.25 8.93735 4.25 10C4.25 11.6701 4.78721 13.1773 5.8315 14.422C6.72886 15.4916 7.97729 16.3406 9.52218 16.9468C9.3879 17.3684 9.24902 17.9493 9.24742 18.5701L9.24741 18.5721V19.7537C9.24303 19.7549 9.23865 19.756 9.23427 19.7572C7.81808 20.148 6.60733 20.0559 5.59605 19.565C4.57799 19.0708 3.64565 18.1156 2.90157 16.5671C2.66236 16.0693 2.0649 15.8597 1.56711 16.0989C1.06932 16.3381 0.859689 16.9356 1.09889 17.4334C1.98506 19.2775 3.19975 20.625 4.72265 21.3643C6.10397 22.0348 7.64384 22.1587 9.24741 21.8128V22C9.24741 22.4142 9.5832 22.75 9.99741 22.75L17.0028 22.75C17.2017 22.75 17.3925 22.671 17.5331 22.5303C17.6738 22.3897 17.7528 22.1989 17.7528 22L17.7528 18.5721L17.7528 18.5701C17.7512 17.9493 17.6123 17.3684 17.478 16.9468C19.0229 16.3406 20.2713 15.4916 21.1687 14.422C22.213 13.1773 22.7502 11.6701 22.7502 10C22.7502 8.93735 22.6173 8.09735 22.3575 7.37522C22.1504 6.79948 21.8717 6.32467 21.5522 5.89113C21.8574 4.84481 21.7861 3.84836 21.6369 3.10629C21.5519 2.68347 21.4393 2.33165 21.347 2.08309C21.3007 1.95845 21.2591 1.85873 21.2279 1.78788C21.2123 1.75243 21.1993 1.72411 21.1896 1.70342L21.1775 1.67813L21.1734 1.66987L21.1719 1.66686L21.1713 1.66563L21.1708 1.66459C21.0438 1.4105 20.7841 1.25 20.5 1.25C18.9722 1.25 17.5766 1.74449 16.3864 2.6325C15.5268 2.30364 14.4938 2.15404 13.5 2.15404C12.5062 2.15404 11.4732 2.30364 10.6136 2.63249C9.42342 1.74449 8.02776 1.25 6.5 1.25Z",
|
|
24
|
+
fill: "currentColor"
|
|
25
|
+
}
|
|
26
|
+
)
|
|
27
|
+
}
|
|
28
|
+
);
|
|
29
|
+
}
|
|
30
|
+
export {
|
|
31
|
+
GithubBold as default
|
|
32
|
+
};
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
import Icon from "../../Icon.js";
|
|
4
|
+
function GithubBulk({
|
|
5
|
+
size = 24,
|
|
6
|
+
color = "#292D32",
|
|
7
|
+
className = "",
|
|
8
|
+
...props
|
|
9
|
+
}) {
|
|
10
|
+
return /* @__PURE__ */ jsxs(
|
|
11
|
+
Icon,
|
|
12
|
+
{
|
|
13
|
+
size,
|
|
14
|
+
color,
|
|
15
|
+
fill: "none",
|
|
16
|
+
className,
|
|
17
|
+
...props,
|
|
18
|
+
children: [
|
|
19
|
+
/* @__PURE__ */ jsx(
|
|
20
|
+
"path",
|
|
21
|
+
{
|
|
22
|
+
opacity: "0.4",
|
|
23
|
+
d: "M9.99741 18.5955V22.0234L17.0028 22.0234V18.5955C17 17.5234 16.5 16.5234 16.5 16.5234C20.0841 15.3634 22.0002 13.0234 22.0002 10.0234C22.0002 8.02344 21.5002 7.02344 20.7131 6.05653C21.5 4.02344 20.5 2.02344 20.5 2.02344C19 2.02344 17.6412 2.55722 16.5 3.52344C14.9108 2.72882 12.0892 2.72882 10.5 3.52344C9.35877 2.55722 8.00019 2.02344 6.50019 2.02344C6.50019 2.02344 5.50019 4.02344 6.2871 6.05653C5.5 7.02344 5 8.02344 5 10.0234C5 13.0234 6.91613 15.3634 10.5002 16.5234C10.5002 16.5234 10.0002 17.5234 9.99741 18.5955Z",
|
|
24
|
+
fill: "currentColor"
|
|
25
|
+
}
|
|
26
|
+
),
|
|
27
|
+
/* @__PURE__ */ jsx(
|
|
28
|
+
"path",
|
|
29
|
+
{
|
|
30
|
+
d: "M2 17.0234C3.63025 20.416 6.29407 21.6289 9.5 20.7444",
|
|
31
|
+
stroke: "currentColor",
|
|
32
|
+
strokeWidth: "1.5",
|
|
33
|
+
strokeLinecap: "round",
|
|
34
|
+
strokeLinejoin: "round"
|
|
35
|
+
}
|
|
36
|
+
),
|
|
37
|
+
/* @__PURE__ */ jsx(
|
|
38
|
+
"path",
|
|
39
|
+
{
|
|
40
|
+
d: "M9.99741 22.0234V18.5955C10.0002 17.5234 10.5002 16.5234 10.5002 16.5234C6.91613 15.3634 5 13.0234 5 10.0234C5 8.02344 5.5 7.02344 6.2871 6.05653C5.50019 4.02344 6.50019 2.02344 6.50019 2.02344C8.00019 2.02344 9.35877 2.55722 10.5 3.52344C12.0892 2.72882 14.9108 2.72882 16.5 3.52344C17.6412 2.55722 19 2.02344 20.5 2.02344C20.5 2.02344 21.5 4.02344 20.7131 6.05653C21.5002 7.02344 22.0002 8.02344 22.0002 10.0234C22.0002 13.0234 20.0841 15.3634 16.5 16.5234C16.5 16.5234 17 17.5234 17.0028 18.5955V22.0234",
|
|
41
|
+
stroke: "currentColor",
|
|
42
|
+
strokeWidth: "1.5",
|
|
43
|
+
strokeLinecap: "round",
|
|
44
|
+
strokeLinejoin: "round"
|
|
45
|
+
}
|
|
46
|
+
)
|
|
47
|
+
]
|
|
48
|
+
}
|
|
49
|
+
);
|
|
50
|
+
}
|
|
51
|
+
export {
|
|
52
|
+
GithubBulk as default
|
|
53
|
+
};
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
import Icon from "../../Icon.js";
|
|
4
|
+
function GithubLinear({
|
|
5
|
+
size = 24,
|
|
6
|
+
color = "#292D32",
|
|
7
|
+
className = "",
|
|
8
|
+
...props
|
|
9
|
+
}) {
|
|
10
|
+
return /* @__PURE__ */ jsxs(
|
|
11
|
+
Icon,
|
|
12
|
+
{
|
|
13
|
+
size,
|
|
14
|
+
color,
|
|
15
|
+
fill: "none",
|
|
16
|
+
className,
|
|
17
|
+
...props,
|
|
18
|
+
children: [
|
|
19
|
+
/* @__PURE__ */ jsx(
|
|
20
|
+
"path",
|
|
21
|
+
{
|
|
22
|
+
d: "M10 20.5675C6.57143 21.7248 3.71429 20.5675 2 17",
|
|
23
|
+
stroke: "currentColor",
|
|
24
|
+
strokeWidth: "1.5",
|
|
25
|
+
strokeLinecap: "round",
|
|
26
|
+
strokeLinejoin: "round"
|
|
27
|
+
}
|
|
28
|
+
),
|
|
29
|
+
/* @__PURE__ */ jsx(
|
|
30
|
+
"path",
|
|
31
|
+
{
|
|
32
|
+
d: "M10 22V18.7579C10 18.1596 10.1839 17.6396 10.4804 17.1699C10.6838 16.8476 10.5445 16.3904 10.1771 16.2894C7.13394 15.4528 5 14.1077 5 9.64606C5 8.48611 5.38005 7.39556 6.04811 6.4464C6.21437 6.21018 6.29749 6.09208 6.31748 5.9851C6.33746 5.87813 6.30272 5.73852 6.23322 5.45932C5.95038 4.32292 5.96871 3.11619 6.39322 2.02823C6.39322 2.02823 7.27042 1.74242 9.26698 2.98969C9.72282 3.27447 9.95075 3.41686 10.1515 3.44871C10.3522 3.48056 10.6206 3.41384 11.1573 3.28041C11.8913 3.09795 12.6476 3 13.5 3C14.3524 3 15.1087 3.09795 15.8427 3.28041C16.3794 3.41384 16.6478 3.48056 16.8485 3.44871C17.0493 3.41686 17.2772 3.27447 17.733 2.98969C19.7296 1.74242 20.6068 2.02823 20.6068 2.02823C21.0313 3.11619 21.0496 4.32292 20.7668 5.45932C20.6973 5.73852 20.6625 5.87813 20.6825 5.9851C20.7025 6.09207 20.7856 6.21019 20.9519 6.4464C21.6199 7.39556 22 8.48611 22 9.64606C22 14.1077 19.8661 15.4528 16.8229 16.2894C16.4555 16.3904 16.3162 16.8476 16.5196 17.1699C16.8161 17.6396 17 18.1596 17 18.7579V22",
|
|
33
|
+
stroke: "currentColor",
|
|
34
|
+
strokeWidth: "1.5",
|
|
35
|
+
strokeLinecap: "round",
|
|
36
|
+
strokeLinejoin: "round"
|
|
37
|
+
}
|
|
38
|
+
)
|
|
39
|
+
]
|
|
40
|
+
}
|
|
41
|
+
);
|
|
42
|
+
}
|
|
43
|
+
export {
|
|
44
|
+
GithubLinear as default
|
|
45
|
+
};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import GithubLinear from "./GithubLinear.js";
|
|
2
|
+
import GithubBold from "./GithubBold.js";
|
|
3
|
+
import GithubBulk from "./GithubBulk.js";
|
|
4
|
+
const variants = [
|
|
5
|
+
{
|
|
6
|
+
variant: "linear",
|
|
7
|
+
slug: "github-linear",
|
|
8
|
+
Component: GithubLinear,
|
|
9
|
+
componentName: "GithubLinear"
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
variant: "bold",
|
|
13
|
+
slug: "github-bold",
|
|
14
|
+
Component: GithubBold,
|
|
15
|
+
componentName: "GithubBold"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
variant: "bulk",
|
|
19
|
+
slug: "github-bulk",
|
|
20
|
+
Component: GithubBulk,
|
|
21
|
+
componentName: "GithubBulk"
|
|
22
|
+
}
|
|
23
|
+
];
|
|
24
|
+
export {
|
|
25
|
+
GithubBold,
|
|
26
|
+
GithubBulk,
|
|
27
|
+
GithubLinear,
|
|
28
|
+
variants
|
|
29
|
+
};
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
import Icon from "../../Icon.js";
|
|
4
|
+
function LinkedInBold({
|
|
5
|
+
size = 24,
|
|
6
|
+
color = "#292D32",
|
|
7
|
+
className = "",
|
|
8
|
+
...props
|
|
9
|
+
}) {
|
|
10
|
+
return /* @__PURE__ */ jsx(
|
|
11
|
+
Icon,
|
|
12
|
+
{
|
|
13
|
+
size,
|
|
14
|
+
color,
|
|
15
|
+
fill: "currentColor",
|
|
16
|
+
viewBox: "0 0 448 512",
|
|
17
|
+
className,
|
|
18
|
+
...props,
|
|
19
|
+
children: /* @__PURE__ */ jsx("path", { d: "M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z", fill: "currentColor" })
|
|
20
|
+
}
|
|
21
|
+
);
|
|
22
|
+
}
|
|
23
|
+
export {
|
|
24
|
+
LinkedInBold as default
|
|
25
|
+
};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
import Icon from "../../Icon.js";
|
|
4
|
+
function LinkedInLinear({
|
|
5
|
+
size = 24,
|
|
6
|
+
color = "#292D32",
|
|
7
|
+
className = "",
|
|
8
|
+
...props
|
|
9
|
+
}) {
|
|
10
|
+
return /* @__PURE__ */ jsx(
|
|
11
|
+
Icon,
|
|
12
|
+
{
|
|
13
|
+
size,
|
|
14
|
+
color,
|
|
15
|
+
fill: "currentColor",
|
|
16
|
+
className,
|
|
17
|
+
...props,
|
|
18
|
+
children: /* @__PURE__ */ jsx("path", { d: "M4 3h16a1 1 0 0 1 1 1v16a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1zm1 2v14h14V5H5zm2.5 4a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3zm-1 1h2v7.5h-2V10zm5.5.43c.584-.565 1.266-.93 2-.93 2.071 0 3.5 1.679 3.5 3.75v4.25h-2v-4.25a1.75 1.75 0 0 0-3.5 0v4.25h-2V10h2v.43z", fill: "currentColor" })
|
|
19
|
+
}
|
|
20
|
+
);
|
|
21
|
+
}
|
|
22
|
+
export {
|
|
23
|
+
LinkedInLinear as default
|
|
24
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import LinkedInLinear from "./LinkedInLinear.js";
|
|
2
|
+
import LinkedInBold from "./LinkedInBold.js";
|
|
3
|
+
const variants = [
|
|
4
|
+
{
|
|
5
|
+
variant: "bold",
|
|
6
|
+
slug: "bold",
|
|
7
|
+
Component: LinkedInBold,
|
|
8
|
+
componentName: "LinkedInBold"
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
variant: "linear",
|
|
12
|
+
slug: "linear",
|
|
13
|
+
Component: LinkedInLinear,
|
|
14
|
+
componentName: "LinkedInLinear"
|
|
15
|
+
}
|
|
16
|
+
];
|
|
17
|
+
export {
|
|
18
|
+
LinkedInBold,
|
|
19
|
+
LinkedInLinear,
|
|
20
|
+
variants
|
|
21
|
+
};
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
import Icon from "../../Icon.js";
|
|
4
|
+
function Mail02Bold({
|
|
5
|
+
size = 24,
|
|
6
|
+
color = "#292D32",
|
|
7
|
+
className = "",
|
|
8
|
+
...props
|
|
9
|
+
}) {
|
|
10
|
+
return /* @__PURE__ */ jsx(
|
|
11
|
+
Icon,
|
|
12
|
+
{
|
|
13
|
+
size,
|
|
14
|
+
color,
|
|
15
|
+
fill: "none",
|
|
16
|
+
className,
|
|
17
|
+
...props,
|
|
18
|
+
children: /* @__PURE__ */ jsx(
|
|
19
|
+
"path",
|
|
20
|
+
{
|
|
21
|
+
fillRule: "evenodd",
|
|
22
|
+
clipRule: "evenodd",
|
|
23
|
+
d: "M14.92 2.78681C12.967 2.73773 11.033 2.73773 9.07999 2.7868L9.02182 2.78826C7.497 2.82655 6.27002 2.85735 5.2867 3.0286C4.2572 3.20789 3.42048 3.55177 2.71362 4.26132C2.00971 4.9679 1.66764 5.7926 1.49176 6.8054C1.32429 7.76978 1.29878 8.9668 1.26719 10.4496L1.26593 10.5084C1.24469 11.5047 1.24469 12.4953 1.26594 13.4916L1.26719 13.5504C1.29879 15.0332 1.32429 16.2302 1.49176 17.1946C1.66764 18.2074 2.00972 19.0321 2.71362 19.7387C3.42048 20.4482 4.2572 20.7921 5.2867 20.9714C6.27001 21.1426 7.49697 21.1735 9.02177 21.2117L9.07999 21.2132C11.033 21.2623 12.967 21.2623 14.92 21.2132L14.9782 21.2117C16.503 21.1735 17.73 21.1426 18.7133 20.9714C19.7428 20.7921 20.5795 20.4482 21.2864 19.7387C21.9903 19.0321 22.3324 18.2074 22.5082 17.1946C22.6757 16.2302 22.7012 15.0332 22.7328 13.5503L22.7341 13.4916C22.7553 12.4953 22.7553 11.5047 22.7341 10.5084L22.7328 10.4497C22.7012 8.96683 22.6757 7.76979 22.5082 6.80542C22.3324 5.79261 21.9903 4.96792 21.2864 4.26134C20.5795 3.55179 19.7428 3.20791 18.7133 3.02862C17.73 2.85737 16.503 2.82656 14.9782 2.78827L14.92 2.78681ZM7.38182 7.85452C7.02527 7.64371 6.56533 7.76186 6.35452 8.11841C6.14371 8.47497 6.26186 8.93491 6.61841 9.14572L9.56043 10.8851C10.4313 11.4 11.1827 11.7501 12.0001 11.7501C12.8175 11.7501 13.569 11.4 14.4398 10.8851L17.3818 9.14572C17.7384 8.93491 17.8565 8.47497 17.6457 8.11841C17.4349 7.76186 16.975 7.64371 16.6184 7.85452L13.6764 9.59395C12.832 10.0932 12.3831 10.2501 12.0001 10.2501C11.6171 10.2501 11.1682 10.0932 10.3238 9.59395L7.38182 7.85452Z",
|
|
24
|
+
fill: "currentColor"
|
|
25
|
+
}
|
|
26
|
+
)
|
|
27
|
+
}
|
|
28
|
+
);
|
|
29
|
+
}
|
|
30
|
+
export {
|
|
31
|
+
Mail02Bold as default
|
|
32
|
+
};
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
import Icon from "../../Icon.js";
|
|
4
|
+
function Mail02Linear({
|
|
5
|
+
size = 24,
|
|
6
|
+
color = "#292D32",
|
|
7
|
+
className = "",
|
|
8
|
+
...props
|
|
9
|
+
}) {
|
|
10
|
+
return /* @__PURE__ */ jsxs(
|
|
11
|
+
Icon,
|
|
12
|
+
{
|
|
13
|
+
size,
|
|
14
|
+
color,
|
|
15
|
+
fill: "none",
|
|
16
|
+
className,
|
|
17
|
+
...props,
|
|
18
|
+
children: [
|
|
19
|
+
/* @__PURE__ */ jsx(
|
|
20
|
+
"path",
|
|
21
|
+
{
|
|
22
|
+
d: "M7 8.5L9.94202 10.2394C11.6572 11.2535 12.3428 11.2535 14.058 10.2394L17 8.5",
|
|
23
|
+
stroke: "currentColor",
|
|
24
|
+
strokeWidth: "1.5",
|
|
25
|
+
strokeLinecap: "round",
|
|
26
|
+
strokeLinejoin: "round"
|
|
27
|
+
}
|
|
28
|
+
),
|
|
29
|
+
/* @__PURE__ */ jsx(
|
|
30
|
+
"path",
|
|
31
|
+
{
|
|
32
|
+
d: "M2.01577 13.4756C2.08114 16.5412 2.11383 18.0739 3.24496 19.2094C4.37608 20.3448 5.95033 20.3843 9.09883 20.4634C11.0393 20.5122 12.9607 20.5122 14.9012 20.4634C18.0497 20.3843 19.6239 20.3448 20.7551 19.2094C21.8862 18.0739 21.9189 16.5412 21.9842 13.4756C22.0053 12.4899 22.0053 11.5101 21.9842 10.5244C21.9189 7.45886 21.8862 5.92609 20.7551 4.79066C19.6239 3.65523 18.0497 3.61568 14.9012 3.53657C12.9607 3.48781 11.0393 3.48781 9.09882 3.53656C5.95033 3.61566 4.37608 3.65521 3.24495 4.79065C2.11382 5.92608 2.08114 7.45885 2.01576 10.5244C1.99474 11.5101 1.99475 12.4899 2.01577 13.4756Z",
|
|
33
|
+
stroke: "currentColor",
|
|
34
|
+
strokeWidth: "1.5",
|
|
35
|
+
strokeLinejoin: "round"
|
|
36
|
+
}
|
|
37
|
+
)
|
|
38
|
+
]
|
|
39
|
+
}
|
|
40
|
+
);
|
|
41
|
+
}
|
|
42
|
+
export {
|
|
43
|
+
Mail02Linear as default
|
|
44
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import Mail02Linear from "./Mail02Linear.js";
|
|
2
|
+
import Mail02Bold from "./Mail02Bold.js";
|
|
3
|
+
const variants = [
|
|
4
|
+
{
|
|
5
|
+
variant: "linear",
|
|
6
|
+
slug: "mail-02-linear",
|
|
7
|
+
Component: Mail02Linear,
|
|
8
|
+
componentName: "Mail02Linear"
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
variant: "bold",
|
|
12
|
+
slug: "mail-02-bold",
|
|
13
|
+
Component: Mail02Bold,
|
|
14
|
+
componentName: "Mail02Bold"
|
|
15
|
+
}
|
|
16
|
+
];
|
|
17
|
+
export {
|
|
18
|
+
Mail02Bold,
|
|
19
|
+
Mail02Linear,
|
|
20
|
+
variants
|
|
21
|
+
};
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
import Icon from "../../Icon.js";
|
|
4
|
+
function NewTwitterBulk({
|
|
5
|
+
size = 24,
|
|
6
|
+
color = "#292D32",
|
|
7
|
+
className = "",
|
|
8
|
+
...props
|
|
9
|
+
}) {
|
|
10
|
+
return /* @__PURE__ */ jsxs(
|
|
11
|
+
Icon,
|
|
12
|
+
{
|
|
13
|
+
size,
|
|
14
|
+
color,
|
|
15
|
+
fill: "none",
|
|
16
|
+
className,
|
|
17
|
+
...props,
|
|
18
|
+
children: [
|
|
19
|
+
/* @__PURE__ */ jsx(
|
|
20
|
+
"path",
|
|
21
|
+
{
|
|
22
|
+
opacity: "0.4",
|
|
23
|
+
d: "M8 3H3L10.5484 13.4516L16 21H21L13.4516 10.5484L8 3Z",
|
|
24
|
+
fill: "currentColor"
|
|
25
|
+
}
|
|
26
|
+
),
|
|
27
|
+
/* @__PURE__ */ jsx(
|
|
28
|
+
"path",
|
|
29
|
+
{
|
|
30
|
+
d: "M3 21L10.5484 13.4516M21 3L13.4516 10.5484M13.4516 10.5484L8 3H3L10.5484 13.4516M13.4516 10.5484L21 21H16L10.5484 13.4516",
|
|
31
|
+
stroke: "currentColor",
|
|
32
|
+
strokeWidth: "1.5",
|
|
33
|
+
strokeLinecap: "round",
|
|
34
|
+
strokeLinejoin: "round"
|
|
35
|
+
}
|
|
36
|
+
)
|
|
37
|
+
]
|
|
38
|
+
}
|
|
39
|
+
);
|
|
40
|
+
}
|
|
41
|
+
export {
|
|
42
|
+
NewTwitterBulk as default
|
|
43
|
+
};
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
import Icon from "../../Icon.js";
|
|
4
|
+
function NewTwitterLinear({
|
|
5
|
+
size = 24,
|
|
6
|
+
color = "#292D32",
|
|
7
|
+
className = "",
|
|
8
|
+
...props
|
|
9
|
+
}) {
|
|
10
|
+
return /* @__PURE__ */ jsx(
|
|
11
|
+
Icon,
|
|
12
|
+
{
|
|
13
|
+
size,
|
|
14
|
+
color,
|
|
15
|
+
fill: "none",
|
|
16
|
+
className,
|
|
17
|
+
...props,
|
|
18
|
+
children: /* @__PURE__ */ jsx(
|
|
19
|
+
"path",
|
|
20
|
+
{
|
|
21
|
+
d: "M3 21L10.5484 13.4516M21 3L13.4516 10.5484M13.4516 10.5484L8 3H3L10.5484 13.4516M13.4516 10.5484L21 21H16L10.5484 13.4516",
|
|
22
|
+
stroke: "currentColor",
|
|
23
|
+
strokeWidth: "1.5",
|
|
24
|
+
strokeLinecap: "round",
|
|
25
|
+
strokeLinejoin: "round"
|
|
26
|
+
}
|
|
27
|
+
)
|
|
28
|
+
}
|
|
29
|
+
);
|
|
30
|
+
}
|
|
31
|
+
export {
|
|
32
|
+
NewTwitterLinear as default
|
|
33
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import NewTwitterLinear from "./NewTwitterLinear.js";
|
|
2
|
+
import NewTwitterBulk from "./NewTwitterBulk.js";
|
|
3
|
+
const variants = [
|
|
4
|
+
{
|
|
5
|
+
variant: "linear",
|
|
6
|
+
slug: "new-twitter-linear",
|
|
7
|
+
Component: NewTwitterLinear,
|
|
8
|
+
componentName: "NewTwitterLinear"
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
variant: "bulk",
|
|
12
|
+
slug: "new-twitter-bulk",
|
|
13
|
+
Component: NewTwitterBulk,
|
|
14
|
+
componentName: "NewTwitterBulk"
|
|
15
|
+
}
|
|
16
|
+
];
|
|
17
|
+
export {
|
|
18
|
+
NewTwitterBulk,
|
|
19
|
+
NewTwitterLinear,
|
|
20
|
+
variants
|
|
21
|
+
};
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
import Icon from "../../Icon.js";
|
|
4
|
+
function TwitchBold({
|
|
5
|
+
size = 24,
|
|
6
|
+
color = "#292D32",
|
|
7
|
+
className = "",
|
|
8
|
+
...props
|
|
9
|
+
}) {
|
|
10
|
+
return /* @__PURE__ */ jsx(
|
|
11
|
+
Icon,
|
|
12
|
+
{
|
|
13
|
+
size,
|
|
14
|
+
color,
|
|
15
|
+
fill: "none",
|
|
16
|
+
className,
|
|
17
|
+
...props,
|
|
18
|
+
children: /* @__PURE__ */ jsx(
|
|
19
|
+
"path",
|
|
20
|
+
{
|
|
21
|
+
fillRule: "evenodd",
|
|
22
|
+
clipRule: "evenodd",
|
|
23
|
+
d: "M4 2.74998C3.80108 2.74998 3.61032 2.829 3.46966 2.96965C3.32901 3.11031 3.24999 3.30108 3.25 3.5L3.25035 16.5002C3.25035 16.6991 3.32938 16.8898 3.47004 17.0305C3.6107 17.1711 3.80147 17.2501 4.00039 17.2501L6.23309 17.25L6.25001 20.5039C6.25159 20.8068 6.43519 21.079 6.71542 21.1939C6.99565 21.3088 7.31751 21.2439 7.53129 21.0293L11.2968 17.2501L17.3049 17.25L20.75 13.811L20.75 3.49998C20.75 3.08576 20.4142 2.74998 20 2.74998L4 2.74998ZM11 7.49998L11 12.5H13V7.49998H11ZM15 7.49998V12.5H17V7.49998H15Z",
|
|
24
|
+
fill: "currentColor"
|
|
25
|
+
}
|
|
26
|
+
)
|
|
27
|
+
}
|
|
28
|
+
);
|
|
29
|
+
}
|
|
30
|
+
export {
|
|
31
|
+
TwitchBold as default
|
|
32
|
+
};
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
import Icon from "../../Icon.js";
|
|
4
|
+
function TwitchLinear({
|
|
5
|
+
size = 24,
|
|
6
|
+
color = "#292D32",
|
|
7
|
+
className = "",
|
|
8
|
+
...props
|
|
9
|
+
}) {
|
|
10
|
+
return /* @__PURE__ */ jsxs(
|
|
11
|
+
Icon,
|
|
12
|
+
{
|
|
13
|
+
size,
|
|
14
|
+
color,
|
|
15
|
+
fill: "none",
|
|
16
|
+
className,
|
|
17
|
+
...props,
|
|
18
|
+
children: [
|
|
19
|
+
/* @__PURE__ */ jsx(
|
|
20
|
+
"path",
|
|
21
|
+
{
|
|
22
|
+
d: "M15.9796 7.49512V12.4951M11.9796 7.49512V12.4951",
|
|
23
|
+
stroke: "currentColor",
|
|
24
|
+
strokeWidth: "1.5",
|
|
25
|
+
strokeLinejoin: "round"
|
|
26
|
+
}
|
|
27
|
+
),
|
|
28
|
+
/* @__PURE__ */ jsx(
|
|
29
|
+
"path",
|
|
30
|
+
{
|
|
31
|
+
d: "M19.9909 3.49902H4.00915C4.00364 3.49902 3.99918 3.50351 3.99918 3.50904V16.5076C3.99918 16.5132 4.00373 16.5177 4.00929 16.5176L7.02167 16.4738V20.4909C7.02167 20.4999 7.03239 20.5043 7.03868 20.498L11.0141 16.5178H16.988L20.0008 13.5152V3.50904C20.0008 3.50351 19.9964 3.49902 19.9909 3.49902Z",
|
|
32
|
+
stroke: "currentColor",
|
|
33
|
+
strokeWidth: "1.5"
|
|
34
|
+
}
|
|
35
|
+
)
|
|
36
|
+
]
|
|
37
|
+
}
|
|
38
|
+
);
|
|
39
|
+
}
|
|
40
|
+
export {
|
|
41
|
+
TwitchLinear as default
|
|
42
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import TwitchLinear from "./TwitchLinear.js";
|
|
2
|
+
import TwitchBold from "./TwitchBold.js";
|
|
3
|
+
const variants = [
|
|
4
|
+
{
|
|
5
|
+
variant: "linear",
|
|
6
|
+
slug: "twitch-linear",
|
|
7
|
+
Component: TwitchLinear,
|
|
8
|
+
componentName: "TwitchLinear"
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
variant: "bold",
|
|
12
|
+
slug: "twitch-bold",
|
|
13
|
+
Component: TwitchBold,
|
|
14
|
+
componentName: "TwitchBold"
|
|
15
|
+
}
|
|
16
|
+
];
|
|
17
|
+
export {
|
|
18
|
+
TwitchBold,
|
|
19
|
+
TwitchLinear,
|
|
20
|
+
variants
|
|
21
|
+
};
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
import Icon from "../../Icon.js";
|
|
4
|
+
function TwitterBold({
|
|
5
|
+
size = 24,
|
|
6
|
+
color = "#292D32",
|
|
7
|
+
className = "",
|
|
8
|
+
...props
|
|
9
|
+
}) {
|
|
10
|
+
return /* @__PURE__ */ jsx(
|
|
11
|
+
Icon,
|
|
12
|
+
{
|
|
13
|
+
size,
|
|
14
|
+
color,
|
|
15
|
+
fill: "none",
|
|
16
|
+
className,
|
|
17
|
+
...props,
|
|
18
|
+
children: /* @__PURE__ */ jsx(
|
|
19
|
+
"path",
|
|
20
|
+
{
|
|
21
|
+
fillRule: "evenodd",
|
|
22
|
+
clipRule: "evenodd",
|
|
23
|
+
d: "M18.8249 4.22816C17.7811 3.53111 16.7547 3.22334 15.7874 3.2518C14.7406 3.28261 13.8379 3.70519 13.1317 4.31942C12.0006 5.30323 11.3078 6.83984 11.2932 8.258C9.78475 8.20194 8.33288 7.62291 7.09193 6.81598C5.63795 5.87054 4.55538 4.66502 4.07653 3.79204C3.90717 3.48327 3.57527 3.36096 3.28859 3.40763C3.01178 3.4527 2.75755 3.6551 2.67582 3.96334C1.4882 8.44278 2.60777 13.434 5.40064 16.3905C4.79328 16.9466 3.64749 17.7426 2.00461 17.7529C1.62517 17.7553 1.35969 18.0214 1.2787 18.3033C1.19629 18.5901 1.28485 18.9725 1.62918 19.1712C5.64559 21.4887 10.4297 21.0998 14.182 19.0134C17.8875 16.953 20.6815 13.1831 20.7539 8.57253L22.6577 4.85746C22.9405 4.30542 22.4787 3.66527 21.8656 3.75972L18.8249 4.22816Z",
|
|
24
|
+
fill: "currentColor"
|
|
25
|
+
}
|
|
26
|
+
)
|
|
27
|
+
}
|
|
28
|
+
);
|
|
29
|
+
}
|
|
30
|
+
export {
|
|
31
|
+
TwitterBold as default
|
|
32
|
+
};
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
import Icon from "../../Icon.js";
|
|
4
|
+
function TwitterLinear({
|
|
5
|
+
size = 24,
|
|
6
|
+
color = "#292D32",
|
|
7
|
+
className = "",
|
|
8
|
+
...props
|
|
9
|
+
}) {
|
|
10
|
+
return /* @__PURE__ */ jsx(
|
|
11
|
+
Icon,
|
|
12
|
+
{
|
|
13
|
+
size,
|
|
14
|
+
color,
|
|
15
|
+
fill: "none",
|
|
16
|
+
className,
|
|
17
|
+
...props,
|
|
18
|
+
children: /* @__PURE__ */ jsx(
|
|
19
|
+
"path",
|
|
20
|
+
{
|
|
21
|
+
d: "M2 18.5C3.76504 19.521 5.81428 20 8 20C14.4808 20 19.7617 14.8625 19.9922 8.43797L22 4.5L18.6458 5C17.9407 4.37764 17.0144 4 16 4C13.4276 4 11.5007 6.51734 12.1209 8.98003C8.56784 9.20927 5.34867 7.0213 3.48693 4.10523C2.25147 8.30185 3.39629 13.3561 6.5 16.4705C6.5 17.647 3.5 18.3488 2 18.5Z",
|
|
22
|
+
stroke: "currentColor",
|
|
23
|
+
strokeWidth: "1.5",
|
|
24
|
+
strokeLinejoin: "round"
|
|
25
|
+
}
|
|
26
|
+
)
|
|
27
|
+
}
|
|
28
|
+
);
|
|
29
|
+
}
|
|
30
|
+
export {
|
|
31
|
+
TwitterLinear as default
|
|
32
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import TwitterLinear from "./TwitterLinear.js";
|
|
2
|
+
import TwitterBold from "./TwitterBold.js";
|
|
3
|
+
const variants = [
|
|
4
|
+
{
|
|
5
|
+
variant: "linear",
|
|
6
|
+
slug: "twitter-linear",
|
|
7
|
+
Component: TwitterLinear,
|
|
8
|
+
componentName: "TwitterLinear"
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
variant: "bold",
|
|
12
|
+
slug: "twitter-bold",
|
|
13
|
+
Component: TwitterBold,
|
|
14
|
+
componentName: "TwitterBold"
|
|
15
|
+
}
|
|
16
|
+
];
|
|
17
|
+
export {
|
|
18
|
+
TwitterBold,
|
|
19
|
+
TwitterLinear,
|
|
20
|
+
variants
|
|
21
|
+
};
|