@iguanads/icons 1.12.0 → 2.0.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/README.md +13 -9
- package/dist/filled/index.d.mts +14 -14
- package/dist/filled/index.d.ts +14 -14
- package/dist/filled/index.js +66 -379
- package/dist/filled/index.mjs +54 -367
- package/dist/one-color/index.d.mts +73 -61
- package/dist/one-color/index.d.ts +73 -61
- package/dist/one-color/index.js +365 -1610
- package/dist/one-color/index.mjs +300 -1551
- package/dist/social-media/index.d.mts +5 -5
- package/dist/social-media/index.d.ts +5 -5
- package/dist/social-media/index.js +13 -85
- package/dist/social-media/index.mjs +10 -82
- package/dist/two-colors/index.d.mts +31 -31
- package/dist/two-colors/index.d.ts +31 -31
- package/dist/two-colors/index.js +197 -1067
- package/dist/two-colors/index.mjs +168 -1038
- package/package.json +16 -12
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react from 'react';
|
|
2
2
|
import { SVGProps } from 'react';
|
|
3
3
|
|
|
4
|
-
declare const SvgFacebook: (props: SVGProps<SVGSVGElement>) =>
|
|
4
|
+
declare const SvgFacebook: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
5
5
|
|
|
6
|
-
declare const SvgInstagram: (props: SVGProps<SVGSVGElement>) =>
|
|
6
|
+
declare const SvgInstagram: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
7
7
|
|
|
8
|
-
declare const SvgLinkedin: (props: SVGProps<SVGSVGElement>) =>
|
|
8
|
+
declare const SvgLinkedin: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
9
9
|
|
|
10
|
-
export { SvgFacebook as
|
|
10
|
+
export { SvgFacebook as FacebookIcon, SvgInstagram as InstagramIcon, SvgLinkedin as LinkedinIcon };
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react from 'react';
|
|
2
2
|
import { SVGProps } from 'react';
|
|
3
3
|
|
|
4
|
-
declare const SvgFacebook: (props: SVGProps<SVGSVGElement>) =>
|
|
4
|
+
declare const SvgFacebook: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
5
5
|
|
|
6
|
-
declare const SvgInstagram: (props: SVGProps<SVGSVGElement>) =>
|
|
6
|
+
declare const SvgInstagram: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
7
7
|
|
|
8
|
-
declare const SvgLinkedin: (props: SVGProps<SVGSVGElement>) =>
|
|
8
|
+
declare const SvgLinkedin: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
9
9
|
|
|
10
|
-
export { SvgFacebook as
|
|
10
|
+
export { SvgFacebook as FacebookIcon, SvgInstagram as InstagramIcon, SvgLinkedin as LinkedinIcon };
|
|
@@ -20,105 +20,33 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
|
20
20
|
// src/social-media/index.ts
|
|
21
21
|
var social_media_exports = {};
|
|
22
22
|
__export(social_media_exports, {
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
23
|
+
FacebookIcon: () => Facebook_default,
|
|
24
|
+
InstagramIcon: () => Instagram_default,
|
|
25
|
+
LinkedinIcon: () => Linkedin_default
|
|
26
26
|
});
|
|
27
27
|
module.exports = __toCommonJS(social_media_exports);
|
|
28
28
|
|
|
29
29
|
// src/social-media/Facebook.tsx
|
|
30
30
|
var import_jsx_runtime = require("react/jsx-runtime");
|
|
31
|
-
var SvgFacebook = (props) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
32
|
-
"svg",
|
|
33
|
-
{
|
|
34
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
35
|
-
fill: "none",
|
|
36
|
-
viewBox: "0 0 24 24",
|
|
37
|
-
width: props.width || 24,
|
|
38
|
-
height: props.height || 24,
|
|
39
|
-
className: props.className,
|
|
40
|
-
...props,
|
|
41
|
-
children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
42
|
-
"path",
|
|
43
|
-
{
|
|
44
|
-
fill: props.color || "currentColor",
|
|
45
|
-
d: "M24 12c0-6.628-5.372-12-12-12S0 5.372 0 12s5.372 12 12 12q.105.001.21-.005v-9.337H9.634v-3.005h2.578V9.441c0-2.564 1.566-3.961 3.853-3.961 1.097 0 2.04.08 2.311.117v2.681H16.8c-1.242 0-1.486.59-1.486 1.458v1.912h2.977l-.39 3.005h-2.587v8.883C20.33 22.096 24 17.48 24 12"
|
|
46
|
-
}
|
|
47
|
-
)
|
|
48
|
-
}
|
|
49
|
-
);
|
|
31
|
+
var SvgFacebook = (props) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", width: props.width || 24, height: props.height || 24, className: props.className, ...props, children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { fill: props.color || "currentColor", d: "M24 12c0-6.628-5.372-12-12-12S0 5.372 0 12s5.372 12 12 12q.105.001.21-.005v-9.337H9.634v-3.005h2.578V9.441c0-2.564 1.566-3.961 3.853-3.961 1.097 0 2.04.08 2.311.117v2.681H16.8c-1.242 0-1.486.59-1.486 1.458v1.912h2.977l-.39 3.005h-2.587v8.883C20.33 22.096 24 17.48 24 12" }) });
|
|
50
32
|
var Facebook_default = SvgFacebook;
|
|
51
33
|
|
|
52
34
|
// src/social-media/Instagram.tsx
|
|
53
35
|
var import_jsx_runtime2 = require("react/jsx-runtime");
|
|
54
|
-
var SvgInstagram = (props) => /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(
|
|
55
|
-
"
|
|
56
|
-
{
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
viewBox: "0 0 24 24",
|
|
60
|
-
width: props.width || 24,
|
|
61
|
-
height: props.height || 24,
|
|
62
|
-
className: props.className,
|
|
63
|
-
...props,
|
|
64
|
-
children: [
|
|
65
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
|
|
66
|
-
"path",
|
|
67
|
-
{
|
|
68
|
-
fill: props.color || "currentColor",
|
|
69
|
-
d: "M14.297 12a2.297 2.297 0 1 1-4.594 0 2.297 2.297 0 0 1 4.594 0"
|
|
70
|
-
}
|
|
71
|
-
),
|
|
72
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
|
|
73
|
-
"path",
|
|
74
|
-
{
|
|
75
|
-
fill: props.color || "currentColor",
|
|
76
|
-
fillRule: "evenodd",
|
|
77
|
-
d: "M17.372 7.936a2.1 2.1 0 0 0-.516-.792 2.1 2.1 0 0 0-.792-.516c-.243-.094-.608-.206-1.28-.237-.726-.033-.944-.04-2.784-.04s-2.058.007-2.784.04c-.672.03-1.037.143-1.28.237-.3.11-.57.287-.792.516a2.1 2.1 0 0 0-.516.792c-.094.243-.206.608-.237 1.28-.033.726-.04.944-.04 2.784s.007 2.058.04 2.785c.03.672.143 1.036.237 1.279.11.3.287.57.516.792.222.23.493.405.792.516.243.094.608.206 1.28.237.726.033.944.04 2.784.04s2.058-.007 2.784-.04c.672-.03 1.037-.143 1.28-.237a2.28 2.28 0 0 0 1.308-1.308c.094-.243.206-.607.237-1.28.033-.726.04-.944.04-2.784s-.007-2.058-.04-2.784c-.03-.672-.143-1.037-.237-1.28M12 15.538a3.538 3.538 0 1 1 0-7.076 3.538 3.538 0 0 1 0 7.076m2.851-7.216a.827.827 0 1 0 1.654 0 .827.827 0 0 0-1.654 0",
|
|
78
|
-
clipRule: "evenodd"
|
|
79
|
-
}
|
|
80
|
-
),
|
|
81
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
|
|
82
|
-
"path",
|
|
83
|
-
{
|
|
84
|
-
fill: props.color || "currentColor",
|
|
85
|
-
fillRule: "evenodd",
|
|
86
|
-
d: "M0 12C0 5.374 5.374 0 12 0s12 5.374 12 12-5.374 12-12 12S0 18.626 0 12m18.529 4.514c.17-.439.287-.94.32-1.673.034-.735.042-.97.042-2.841s-.008-2.106-.042-2.84c-.033-.734-.15-1.235-.32-1.674a3.4 3.4 0 0 0-.795-1.22 3.4 3.4 0 0 0-1.22-.795c-.439-.17-.94-.287-1.673-.32-.735-.034-.97-.042-2.841-.042s-2.106.008-2.84.042c-.734.033-1.235.15-1.674.32-.46.173-.876.444-1.22.795a3.4 3.4 0 0 0-.795 1.22c-.17.439-.287.94-.32 1.673-.034.735-.042.97-.042 2.841s.008 2.106.042 2.841c.033.733.15 1.234.32 1.673.173.46.445.876.795 1.22.344.35.76.622 1.22.795.439.17.94.287 1.673.32.735.034.97.042 2.841.042s2.106-.008 2.841-.042c.733-.033 1.234-.15 1.673-.32a3.52 3.52 0 0 0 2.015-2.015",
|
|
87
|
-
clipRule: "evenodd"
|
|
88
|
-
}
|
|
89
|
-
)
|
|
90
|
-
]
|
|
91
|
-
}
|
|
92
|
-
);
|
|
36
|
+
var SvgInstagram = (props) => /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", width: props.width || 24, height: props.height || 24, className: props.className, ...props, children: [
|
|
37
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { fill: props.color || "currentColor", d: "M14.297 12a2.297 2.297 0 1 1-4.594 0 2.297 2.297 0 0 1 4.594 0" }),
|
|
38
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { fill: props.color || "currentColor", fillRule: "evenodd", d: "M17.372 7.936a2.1 2.1 0 0 0-.516-.792 2.1 2.1 0 0 0-.792-.516c-.243-.094-.608-.206-1.28-.237-.726-.033-.944-.04-2.784-.04s-2.058.007-2.784.04c-.672.03-1.037.143-1.28.237-.3.11-.57.287-.792.516a2.1 2.1 0 0 0-.516.792c-.094.243-.206.608-.237 1.28-.033.726-.04.944-.04 2.784s.007 2.058.04 2.785c.03.672.143 1.036.237 1.279.11.3.287.57.516.792.222.23.493.405.792.516.243.094.608.206 1.28.237.726.033.944.04 2.784.04s2.058-.007 2.784-.04c.672-.03 1.037-.143 1.28-.237a2.28 2.28 0 0 0 1.308-1.308c.094-.243.206-.607.237-1.28.033-.726.04-.944.04-2.784s-.007-2.058-.04-2.784c-.03-.672-.143-1.037-.237-1.28M12 15.538a3.538 3.538 0 1 1 0-7.076 3.538 3.538 0 0 1 0 7.076m2.851-7.216a.827.827 0 1 0 1.654 0 .827.827 0 0 0-1.654 0", clipRule: "evenodd" }),
|
|
39
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { fill: props.color || "currentColor", fillRule: "evenodd", d: "M0 12C0 5.374 5.374 0 12 0s12 5.374 12 12-5.374 12-12 12S0 18.626 0 12m18.529 4.514c.17-.439.287-.94.32-1.673.034-.735.042-.97.042-2.841s-.008-2.106-.042-2.84c-.033-.734-.15-1.235-.32-1.674a3.4 3.4 0 0 0-.795-1.22 3.4 3.4 0 0 0-1.22-.795c-.439-.17-.94-.287-1.673-.32-.735-.034-.97-.042-2.841-.042s-2.106.008-2.84.042c-.734.033-1.235.15-1.674.32-.46.173-.876.444-1.22.795a3.4 3.4 0 0 0-.795 1.22c-.17.439-.287.94-.32 1.673-.034.735-.042.97-.042 2.841s.008 2.106.042 2.841c.033.733.15 1.234.32 1.673.173.46.445.876.795 1.22.344.35.76.622 1.22.795.439.17.94.287 1.673.32.735.034.97.042 2.841.042s2.106-.008 2.841-.042c.733-.033 1.234-.15 1.673-.32a3.52 3.52 0 0 0 2.015-2.015", clipRule: "evenodd" })
|
|
40
|
+
] });
|
|
93
41
|
var Instagram_default = SvgInstagram;
|
|
94
42
|
|
|
95
43
|
// src/social-media/Linkedin.tsx
|
|
96
44
|
var import_jsx_runtime3 = require("react/jsx-runtime");
|
|
97
|
-
var SvgLinkedin = (props) => /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
98
|
-
"svg",
|
|
99
|
-
{
|
|
100
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
101
|
-
fill: "none",
|
|
102
|
-
viewBox: "0 0 24 24",
|
|
103
|
-
width: props.width || 24,
|
|
104
|
-
height: props.height || 24,
|
|
105
|
-
className: props.className,
|
|
106
|
-
...props,
|
|
107
|
-
children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
108
|
-
"path",
|
|
109
|
-
{
|
|
110
|
-
fill: props.color || "currentColor",
|
|
111
|
-
fillRule: "evenodd",
|
|
112
|
-
d: "M0 12C0 5.374 5.374 0 12 0s12 5.374 12 12-5.374 12-12 12S0 18.626 0 12m5.59 6.14h2.923V9.349H5.59zm1.462-9.993h-.02c-.98 0-1.614-.675-1.614-1.518 0-.863.653-1.52 1.653-1.52s1.615.657 1.634 1.52c0 .843-.634 1.518-1.653 1.518m9.077 9.994h2.922v-5.042c0-2.7-1.442-3.957-3.364-3.957-1.551 0-2.246.852-2.634 1.451V9.348H10.13c.039.825 0 8.793 0 8.793h2.923v-4.91c0-.263.018-.526.096-.714.211-.525.692-1.069 1.5-1.069 1.057 0 1.48.807 1.48 1.989z",
|
|
113
|
-
clipRule: "evenodd"
|
|
114
|
-
}
|
|
115
|
-
)
|
|
116
|
-
}
|
|
117
|
-
);
|
|
45
|
+
var SvgLinkedin = (props) => /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", width: props.width || 24, height: props.height || 24, className: props.className, ...props, children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { fill: props.color || "currentColor", fillRule: "evenodd", d: "M0 12C0 5.374 5.374 0 12 0s12 5.374 12 12-5.374 12-12 12S0 18.626 0 12m5.59 6.14h2.923V9.349H5.59zm1.462-9.993h-.02c-.98 0-1.614-.675-1.614-1.518 0-.863.653-1.52 1.653-1.52s1.615.657 1.634 1.52c0 .843-.634 1.518-1.653 1.518m9.077 9.994h2.922v-5.042c0-2.7-1.442-3.957-3.364-3.957-1.551 0-2.246.852-2.634 1.451V9.348H10.13c.039.825 0 8.793 0 8.793h2.923v-4.91c0-.263.018-.526.096-.714.211-.525.692-1.069 1.5-1.069 1.057 0 1.48.807 1.48 1.989z", clipRule: "evenodd" }) });
|
|
118
46
|
var Linkedin_default = SvgLinkedin;
|
|
119
47
|
// Annotate the CommonJS export names for ESM import in node:
|
|
120
48
|
0 && (module.exports = {
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
49
|
+
FacebookIcon,
|
|
50
|
+
InstagramIcon,
|
|
51
|
+
LinkedinIcon
|
|
124
52
|
});
|
|
@@ -1,95 +1,23 @@
|
|
|
1
1
|
// src/social-media/Facebook.tsx
|
|
2
2
|
import { jsx } from "react/jsx-runtime";
|
|
3
|
-
var SvgFacebook = (props) => /* @__PURE__ */ jsx(
|
|
4
|
-
"svg",
|
|
5
|
-
{
|
|
6
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
-
fill: "none",
|
|
8
|
-
viewBox: "0 0 24 24",
|
|
9
|
-
width: props.width || 24,
|
|
10
|
-
height: props.height || 24,
|
|
11
|
-
className: props.className,
|
|
12
|
-
...props,
|
|
13
|
-
children: /* @__PURE__ */ jsx(
|
|
14
|
-
"path",
|
|
15
|
-
{
|
|
16
|
-
fill: props.color || "currentColor",
|
|
17
|
-
d: "M24 12c0-6.628-5.372-12-12-12S0 5.372 0 12s5.372 12 12 12q.105.001.21-.005v-9.337H9.634v-3.005h2.578V9.441c0-2.564 1.566-3.961 3.853-3.961 1.097 0 2.04.08 2.311.117v2.681H16.8c-1.242 0-1.486.59-1.486 1.458v1.912h2.977l-.39 3.005h-2.587v8.883C20.33 22.096 24 17.48 24 12"
|
|
18
|
-
}
|
|
19
|
-
)
|
|
20
|
-
}
|
|
21
|
-
);
|
|
3
|
+
var SvgFacebook = (props) => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", width: props.width || 24, height: props.height || 24, className: props.className, ...props, children: /* @__PURE__ */ jsx("path", { fill: props.color || "currentColor", d: "M24 12c0-6.628-5.372-12-12-12S0 5.372 0 12s5.372 12 12 12q.105.001.21-.005v-9.337H9.634v-3.005h2.578V9.441c0-2.564 1.566-3.961 3.853-3.961 1.097 0 2.04.08 2.311.117v2.681H16.8c-1.242 0-1.486.59-1.486 1.458v1.912h2.977l-.39 3.005h-2.587v8.883C20.33 22.096 24 17.48 24 12" }) });
|
|
22
4
|
var Facebook_default = SvgFacebook;
|
|
23
5
|
|
|
24
6
|
// src/social-media/Instagram.tsx
|
|
25
7
|
import { jsx as jsx2, jsxs } from "react/jsx-runtime";
|
|
26
|
-
var SvgInstagram = (props) => /* @__PURE__ */ jsxs(
|
|
27
|
-
"
|
|
28
|
-
{
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
viewBox: "0 0 24 24",
|
|
32
|
-
width: props.width || 24,
|
|
33
|
-
height: props.height || 24,
|
|
34
|
-
className: props.className,
|
|
35
|
-
...props,
|
|
36
|
-
children: [
|
|
37
|
-
/* @__PURE__ */ jsx2(
|
|
38
|
-
"path",
|
|
39
|
-
{
|
|
40
|
-
fill: props.color || "currentColor",
|
|
41
|
-
d: "M14.297 12a2.297 2.297 0 1 1-4.594 0 2.297 2.297 0 0 1 4.594 0"
|
|
42
|
-
}
|
|
43
|
-
),
|
|
44
|
-
/* @__PURE__ */ jsx2(
|
|
45
|
-
"path",
|
|
46
|
-
{
|
|
47
|
-
fill: props.color || "currentColor",
|
|
48
|
-
fillRule: "evenodd",
|
|
49
|
-
d: "M17.372 7.936a2.1 2.1 0 0 0-.516-.792 2.1 2.1 0 0 0-.792-.516c-.243-.094-.608-.206-1.28-.237-.726-.033-.944-.04-2.784-.04s-2.058.007-2.784.04c-.672.03-1.037.143-1.28.237-.3.11-.57.287-.792.516a2.1 2.1 0 0 0-.516.792c-.094.243-.206.608-.237 1.28-.033.726-.04.944-.04 2.784s.007 2.058.04 2.785c.03.672.143 1.036.237 1.279.11.3.287.57.516.792.222.23.493.405.792.516.243.094.608.206 1.28.237.726.033.944.04 2.784.04s2.058-.007 2.784-.04c.672-.03 1.037-.143 1.28-.237a2.28 2.28 0 0 0 1.308-1.308c.094-.243.206-.607.237-1.28.033-.726.04-.944.04-2.784s-.007-2.058-.04-2.784c-.03-.672-.143-1.037-.237-1.28M12 15.538a3.538 3.538 0 1 1 0-7.076 3.538 3.538 0 0 1 0 7.076m2.851-7.216a.827.827 0 1 0 1.654 0 .827.827 0 0 0-1.654 0",
|
|
50
|
-
clipRule: "evenodd"
|
|
51
|
-
}
|
|
52
|
-
),
|
|
53
|
-
/* @__PURE__ */ jsx2(
|
|
54
|
-
"path",
|
|
55
|
-
{
|
|
56
|
-
fill: props.color || "currentColor",
|
|
57
|
-
fillRule: "evenodd",
|
|
58
|
-
d: "M0 12C0 5.374 5.374 0 12 0s12 5.374 12 12-5.374 12-12 12S0 18.626 0 12m18.529 4.514c.17-.439.287-.94.32-1.673.034-.735.042-.97.042-2.841s-.008-2.106-.042-2.84c-.033-.734-.15-1.235-.32-1.674a3.4 3.4 0 0 0-.795-1.22 3.4 3.4 0 0 0-1.22-.795c-.439-.17-.94-.287-1.673-.32-.735-.034-.97-.042-2.841-.042s-2.106.008-2.84.042c-.734.033-1.235.15-1.674.32-.46.173-.876.444-1.22.795a3.4 3.4 0 0 0-.795 1.22c-.17.439-.287.94-.32 1.673-.034.735-.042.97-.042 2.841s.008 2.106.042 2.841c.033.733.15 1.234.32 1.673.173.46.445.876.795 1.22.344.35.76.622 1.22.795.439.17.94.287 1.673.32.735.034.97.042 2.841.042s2.106-.008 2.841-.042c.733-.033 1.234-.15 1.673-.32a3.52 3.52 0 0 0 2.015-2.015",
|
|
59
|
-
clipRule: "evenodd"
|
|
60
|
-
}
|
|
61
|
-
)
|
|
62
|
-
]
|
|
63
|
-
}
|
|
64
|
-
);
|
|
8
|
+
var SvgInstagram = (props) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", width: props.width || 24, height: props.height || 24, className: props.className, ...props, children: [
|
|
9
|
+
/* @__PURE__ */ jsx2("path", { fill: props.color || "currentColor", d: "M14.297 12a2.297 2.297 0 1 1-4.594 0 2.297 2.297 0 0 1 4.594 0" }),
|
|
10
|
+
/* @__PURE__ */ jsx2("path", { fill: props.color || "currentColor", fillRule: "evenodd", d: "M17.372 7.936a2.1 2.1 0 0 0-.516-.792 2.1 2.1 0 0 0-.792-.516c-.243-.094-.608-.206-1.28-.237-.726-.033-.944-.04-2.784-.04s-2.058.007-2.784.04c-.672.03-1.037.143-1.28.237-.3.11-.57.287-.792.516a2.1 2.1 0 0 0-.516.792c-.094.243-.206.608-.237 1.28-.033.726-.04.944-.04 2.784s.007 2.058.04 2.785c.03.672.143 1.036.237 1.279.11.3.287.57.516.792.222.23.493.405.792.516.243.094.608.206 1.28.237.726.033.944.04 2.784.04s2.058-.007 2.784-.04c.672-.03 1.037-.143 1.28-.237a2.28 2.28 0 0 0 1.308-1.308c.094-.243.206-.607.237-1.28.033-.726.04-.944.04-2.784s-.007-2.058-.04-2.784c-.03-.672-.143-1.037-.237-1.28M12 15.538a3.538 3.538 0 1 1 0-7.076 3.538 3.538 0 0 1 0 7.076m2.851-7.216a.827.827 0 1 0 1.654 0 .827.827 0 0 0-1.654 0", clipRule: "evenodd" }),
|
|
11
|
+
/* @__PURE__ */ jsx2("path", { fill: props.color || "currentColor", fillRule: "evenodd", d: "M0 12C0 5.374 5.374 0 12 0s12 5.374 12 12-5.374 12-12 12S0 18.626 0 12m18.529 4.514c.17-.439.287-.94.32-1.673.034-.735.042-.97.042-2.841s-.008-2.106-.042-2.84c-.033-.734-.15-1.235-.32-1.674a3.4 3.4 0 0 0-.795-1.22 3.4 3.4 0 0 0-1.22-.795c-.439-.17-.94-.287-1.673-.32-.735-.034-.97-.042-2.841-.042s-2.106.008-2.84.042c-.734.033-1.235.15-1.674.32-.46.173-.876.444-1.22.795a3.4 3.4 0 0 0-.795 1.22c-.17.439-.287.94-.32 1.673-.034.735-.042.97-.042 2.841s.008 2.106.042 2.841c.033.733.15 1.234.32 1.673.173.46.445.876.795 1.22.344.35.76.622 1.22.795.439.17.94.287 1.673.32.735.034.97.042 2.841.042s2.106-.008 2.841-.042c.733-.033 1.234-.15 1.673-.32a3.52 3.52 0 0 0 2.015-2.015", clipRule: "evenodd" })
|
|
12
|
+
] });
|
|
65
13
|
var Instagram_default = SvgInstagram;
|
|
66
14
|
|
|
67
15
|
// src/social-media/Linkedin.tsx
|
|
68
16
|
import { jsx as jsx3 } from "react/jsx-runtime";
|
|
69
|
-
var SvgLinkedin = (props) => /* @__PURE__ */ jsx3(
|
|
70
|
-
"svg",
|
|
71
|
-
{
|
|
72
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
73
|
-
fill: "none",
|
|
74
|
-
viewBox: "0 0 24 24",
|
|
75
|
-
width: props.width || 24,
|
|
76
|
-
height: props.height || 24,
|
|
77
|
-
className: props.className,
|
|
78
|
-
...props,
|
|
79
|
-
children: /* @__PURE__ */ jsx3(
|
|
80
|
-
"path",
|
|
81
|
-
{
|
|
82
|
-
fill: props.color || "currentColor",
|
|
83
|
-
fillRule: "evenodd",
|
|
84
|
-
d: "M0 12C0 5.374 5.374 0 12 0s12 5.374 12 12-5.374 12-12 12S0 18.626 0 12m5.59 6.14h2.923V9.349H5.59zm1.462-9.993h-.02c-.98 0-1.614-.675-1.614-1.518 0-.863.653-1.52 1.653-1.52s1.615.657 1.634 1.52c0 .843-.634 1.518-1.653 1.518m9.077 9.994h2.922v-5.042c0-2.7-1.442-3.957-3.364-3.957-1.551 0-2.246.852-2.634 1.451V9.348H10.13c.039.825 0 8.793 0 8.793h2.923v-4.91c0-.263.018-.526.096-.714.211-.525.692-1.069 1.5-1.069 1.057 0 1.48.807 1.48 1.989z",
|
|
85
|
-
clipRule: "evenodd"
|
|
86
|
-
}
|
|
87
|
-
)
|
|
88
|
-
}
|
|
89
|
-
);
|
|
17
|
+
var SvgLinkedin = (props) => /* @__PURE__ */ jsx3("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", width: props.width || 24, height: props.height || 24, className: props.className, ...props, children: /* @__PURE__ */ jsx3("path", { fill: props.color || "currentColor", fillRule: "evenodd", d: "M0 12C0 5.374 5.374 0 12 0s12 5.374 12 12-5.374 12-12 12S0 18.626 0 12m5.59 6.14h2.923V9.349H5.59zm1.462-9.993h-.02c-.98 0-1.614-.675-1.614-1.518 0-.863.653-1.52 1.653-1.52s1.615.657 1.634 1.52c0 .843-.634 1.518-1.653 1.518m9.077 9.994h2.922v-5.042c0-2.7-1.442-3.957-3.364-3.957-1.551 0-2.246.852-2.634 1.451V9.348H10.13c.039.825 0 8.793 0 8.793h2.923v-4.91c0-.263.018-.526.096-.714.211-.525.692-1.069 1.5-1.069 1.057 0 1.48.807 1.48 1.989z", clipRule: "evenodd" }) });
|
|
90
18
|
var Linkedin_default = SvgLinkedin;
|
|
91
19
|
export {
|
|
92
|
-
Facebook_default as
|
|
93
|
-
Instagram_default as
|
|
94
|
-
Linkedin_default as
|
|
20
|
+
Facebook_default as FacebookIcon,
|
|
21
|
+
Instagram_default as InstagramIcon,
|
|
22
|
+
Linkedin_default as LinkedinIcon
|
|
95
23
|
};
|
|
@@ -1,62 +1,62 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react from 'react';
|
|
2
2
|
import { SVGProps } from 'react';
|
|
3
3
|
|
|
4
|
-
declare const SvgAdditionsDeductions: (props: SVGProps<SVGSVGElement>) =>
|
|
4
|
+
declare const SvgAdditionsDeductions: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
5
5
|
|
|
6
|
-
declare const SvgBag: (props: SVGProps<SVGSVGElement>) =>
|
|
6
|
+
declare const SvgBag: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
7
7
|
|
|
8
|
-
declare const SvgBarcodeError: (props: SVGProps<SVGSVGElement>) =>
|
|
8
|
+
declare const SvgBarcodeError: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
9
9
|
|
|
10
|
-
declare const SvgCalendar: (props: SVGProps<SVGSVGElement>) =>
|
|
10
|
+
declare const SvgCalendar: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
11
11
|
|
|
12
|
-
declare const SvgCart: (props: SVGProps<SVGSVGElement>) =>
|
|
12
|
+
declare const SvgCart: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
13
13
|
|
|
14
|
-
declare const SvgDeliver: (props: SVGProps<SVGSVGElement>) =>
|
|
14
|
+
declare const SvgDeliver: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
15
15
|
|
|
16
|
-
declare const SvgDocumentSuccess: (props: SVGProps<SVGSVGElement>) =>
|
|
16
|
+
declare const SvgDocumentSuccess: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
17
17
|
|
|
18
|
-
declare const SvgError: (props: SVGProps<SVGSVGElement>) =>
|
|
18
|
+
declare const SvgError: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
19
19
|
|
|
20
|
-
declare const SvgFavorite: (props: SVGProps<SVGSVGElement>) =>
|
|
20
|
+
declare const SvgFavorite: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
21
21
|
|
|
22
|
-
declare const SvgHelp: (props: SVGProps<SVGSVGElement>) =>
|
|
22
|
+
declare const SvgHelp: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
23
23
|
|
|
24
|
-
declare const SvgLoyalty: (props: SVGProps<SVGSVGElement>) =>
|
|
24
|
+
declare const SvgLoyalty: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
25
25
|
|
|
26
|
-
declare const SvgMagic: (props: SVGProps<SVGSVGElement>) =>
|
|
26
|
+
declare const SvgMagic: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
27
27
|
|
|
28
|
-
declare const SvgMatches: (props: SVGProps<SVGSVGElement>) =>
|
|
28
|
+
declare const SvgMatches: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
29
29
|
|
|
30
|
-
declare const SvgMessages: (props: SVGProps<SVGSVGElement>) =>
|
|
30
|
+
declare const SvgMessages: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
31
31
|
|
|
32
|
-
declare const SvgMoney: (props: SVGProps<SVGSVGElement>) =>
|
|
32
|
+
declare const SvgMoney: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
33
33
|
|
|
34
|
-
declare const SvgNotification: (props: SVGProps<SVGSVGElement>) =>
|
|
34
|
+
declare const SvgNotification: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
35
35
|
|
|
36
|
-
declare const
|
|
36
|
+
declare const SvgOrderEdit: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
37
37
|
|
|
38
|
-
declare const
|
|
38
|
+
declare const SvgOrder: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
39
39
|
|
|
40
|
-
declare const SvgPay: (props: SVGProps<SVGSVGElement>) =>
|
|
40
|
+
declare const SvgPay: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
41
41
|
|
|
42
|
-
declare const SvgPin: (props: SVGProps<SVGSVGElement>) =>
|
|
42
|
+
declare const SvgPin: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
43
43
|
|
|
44
|
-
declare const SvgQrCode: (props: SVGProps<SVGSVGElement>) =>
|
|
44
|
+
declare const SvgQrCode: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
45
45
|
|
|
46
|
-
declare const SvgRate: (props: SVGProps<SVGSVGElement>) =>
|
|
46
|
+
declare const SvgRate: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
47
47
|
|
|
48
|
-
declare const SvgSearch: (props: SVGProps<SVGSVGElement>) =>
|
|
48
|
+
declare const SvgSearch: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
49
49
|
|
|
50
|
-
declare const SvgSignOut: (props: SVGProps<SVGSVGElement>) =>
|
|
50
|
+
declare const SvgSignOut: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
51
51
|
|
|
52
|
-
declare const SvgSupport: (props: SVGProps<SVGSVGElement>) =>
|
|
52
|
+
declare const SvgSupport: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
53
53
|
|
|
54
|
-
declare const SvgTimesheet: (props: SVGProps<SVGSVGElement>) =>
|
|
54
|
+
declare const SvgTimesheet: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
55
55
|
|
|
56
|
-
declare const SvgTrash: (props: SVGProps<SVGSVGElement>) =>
|
|
56
|
+
declare const SvgTrash: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
57
57
|
|
|
58
|
-
declare const SvgUser: (props: SVGProps<SVGSVGElement>) =>
|
|
58
|
+
declare const SvgUser: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
59
59
|
|
|
60
|
-
declare const SvgVoucher: (props: SVGProps<SVGSVGElement>) =>
|
|
60
|
+
declare const SvgVoucher: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
61
61
|
|
|
62
|
-
export { SvgAdditionsDeductions as
|
|
62
|
+
export { SvgAdditionsDeductions as AdditionsDeductionsIcon, SvgBag as BagIcon, SvgBarcodeError as BarcodeErrorIcon, SvgCalendar as CalendarIcon, SvgCart as CartIcon, SvgDeliver as DeliverIcon, SvgDocumentSuccess as DocumentSuccessIcon, SvgError as ErrorIcon, SvgFavorite as FavoriteIcon, SvgHelp as HelpIcon, SvgLoyalty as LoyaltyIcon, SvgMagic as MagicIcon, SvgMatches as MatchesIcon, SvgMessages as MessagesIcon, SvgMoney as MoneyIcon, SvgNotification as NotificationIcon, SvgOrderEdit as OrderEditIcon, SvgOrder as OrderIcon, SvgPay as PayIcon, SvgPin as PinIcon, SvgQrCode as QrCodeIcon, SvgRate as RateIcon, SvgSearch as SearchIcon, SvgSignOut as SignOutIcon, SvgSupport as SupportIcon, SvgTimesheet as TimesheetIcon, SvgTrash as TrashIcon, SvgUser as UserIcon, SvgVoucher as VoucherIcon };
|
|
@@ -1,62 +1,62 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react from 'react';
|
|
2
2
|
import { SVGProps } from 'react';
|
|
3
3
|
|
|
4
|
-
declare const SvgAdditionsDeductions: (props: SVGProps<SVGSVGElement>) =>
|
|
4
|
+
declare const SvgAdditionsDeductions: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
5
5
|
|
|
6
|
-
declare const SvgBag: (props: SVGProps<SVGSVGElement>) =>
|
|
6
|
+
declare const SvgBag: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
7
7
|
|
|
8
|
-
declare const SvgBarcodeError: (props: SVGProps<SVGSVGElement>) =>
|
|
8
|
+
declare const SvgBarcodeError: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
9
9
|
|
|
10
|
-
declare const SvgCalendar: (props: SVGProps<SVGSVGElement>) =>
|
|
10
|
+
declare const SvgCalendar: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
11
11
|
|
|
12
|
-
declare const SvgCart: (props: SVGProps<SVGSVGElement>) =>
|
|
12
|
+
declare const SvgCart: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
13
13
|
|
|
14
|
-
declare const SvgDeliver: (props: SVGProps<SVGSVGElement>) =>
|
|
14
|
+
declare const SvgDeliver: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
15
15
|
|
|
16
|
-
declare const SvgDocumentSuccess: (props: SVGProps<SVGSVGElement>) =>
|
|
16
|
+
declare const SvgDocumentSuccess: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
17
17
|
|
|
18
|
-
declare const SvgError: (props: SVGProps<SVGSVGElement>) =>
|
|
18
|
+
declare const SvgError: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
19
19
|
|
|
20
|
-
declare const SvgFavorite: (props: SVGProps<SVGSVGElement>) =>
|
|
20
|
+
declare const SvgFavorite: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
21
21
|
|
|
22
|
-
declare const SvgHelp: (props: SVGProps<SVGSVGElement>) =>
|
|
22
|
+
declare const SvgHelp: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
23
23
|
|
|
24
|
-
declare const SvgLoyalty: (props: SVGProps<SVGSVGElement>) =>
|
|
24
|
+
declare const SvgLoyalty: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
25
25
|
|
|
26
|
-
declare const SvgMagic: (props: SVGProps<SVGSVGElement>) =>
|
|
26
|
+
declare const SvgMagic: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
27
27
|
|
|
28
|
-
declare const SvgMatches: (props: SVGProps<SVGSVGElement>) =>
|
|
28
|
+
declare const SvgMatches: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
29
29
|
|
|
30
|
-
declare const SvgMessages: (props: SVGProps<SVGSVGElement>) =>
|
|
30
|
+
declare const SvgMessages: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
31
31
|
|
|
32
|
-
declare const SvgMoney: (props: SVGProps<SVGSVGElement>) =>
|
|
32
|
+
declare const SvgMoney: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
33
33
|
|
|
34
|
-
declare const SvgNotification: (props: SVGProps<SVGSVGElement>) =>
|
|
34
|
+
declare const SvgNotification: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
35
35
|
|
|
36
|
-
declare const
|
|
36
|
+
declare const SvgOrderEdit: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
37
37
|
|
|
38
|
-
declare const
|
|
38
|
+
declare const SvgOrder: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
39
39
|
|
|
40
|
-
declare const SvgPay: (props: SVGProps<SVGSVGElement>) =>
|
|
40
|
+
declare const SvgPay: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
41
41
|
|
|
42
|
-
declare const SvgPin: (props: SVGProps<SVGSVGElement>) =>
|
|
42
|
+
declare const SvgPin: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
43
43
|
|
|
44
|
-
declare const SvgQrCode: (props: SVGProps<SVGSVGElement>) =>
|
|
44
|
+
declare const SvgQrCode: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
45
45
|
|
|
46
|
-
declare const SvgRate: (props: SVGProps<SVGSVGElement>) =>
|
|
46
|
+
declare const SvgRate: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
47
47
|
|
|
48
|
-
declare const SvgSearch: (props: SVGProps<SVGSVGElement>) =>
|
|
48
|
+
declare const SvgSearch: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
49
49
|
|
|
50
|
-
declare const SvgSignOut: (props: SVGProps<SVGSVGElement>) =>
|
|
50
|
+
declare const SvgSignOut: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
51
51
|
|
|
52
|
-
declare const SvgSupport: (props: SVGProps<SVGSVGElement>) =>
|
|
52
|
+
declare const SvgSupport: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
53
53
|
|
|
54
|
-
declare const SvgTimesheet: (props: SVGProps<SVGSVGElement>) =>
|
|
54
|
+
declare const SvgTimesheet: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
55
55
|
|
|
56
|
-
declare const SvgTrash: (props: SVGProps<SVGSVGElement>) =>
|
|
56
|
+
declare const SvgTrash: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
57
57
|
|
|
58
|
-
declare const SvgUser: (props: SVGProps<SVGSVGElement>) =>
|
|
58
|
+
declare const SvgUser: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
59
59
|
|
|
60
|
-
declare const SvgVoucher: (props: SVGProps<SVGSVGElement>) =>
|
|
60
|
+
declare const SvgVoucher: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
61
61
|
|
|
62
|
-
export { SvgAdditionsDeductions as
|
|
62
|
+
export { SvgAdditionsDeductions as AdditionsDeductionsIcon, SvgBag as BagIcon, SvgBarcodeError as BarcodeErrorIcon, SvgCalendar as CalendarIcon, SvgCart as CartIcon, SvgDeliver as DeliverIcon, SvgDocumentSuccess as DocumentSuccessIcon, SvgError as ErrorIcon, SvgFavorite as FavoriteIcon, SvgHelp as HelpIcon, SvgLoyalty as LoyaltyIcon, SvgMagic as MagicIcon, SvgMatches as MatchesIcon, SvgMessages as MessagesIcon, SvgMoney as MoneyIcon, SvgNotification as NotificationIcon, SvgOrderEdit as OrderEditIcon, SvgOrder as OrderIcon, SvgPay as PayIcon, SvgPin as PinIcon, SvgQrCode as QrCodeIcon, SvgRate as RateIcon, SvgSearch as SearchIcon, SvgSignOut as SignOutIcon, SvgSupport as SupportIcon, SvgTimesheet as TimesheetIcon, SvgTrash as TrashIcon, SvgUser as UserIcon, SvgVoucher as VoucherIcon };
|