@iguanads/icons 1.12.0 → 1.12.1
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/filled/index.js +42 -355
- package/dist/filled/index.mjs +42 -355
- package/dist/one-color/index.d.mts +17 -5
- package/dist/one-color/index.d.ts +17 -5
- package/dist/one-color/index.js +249 -1494
- package/dist/one-color/index.mjs +242 -1493
- package/dist/social-media/index.js +7 -79
- package/dist/social-media/index.mjs +7 -79
- package/dist/two-colors/index.d.mts +2 -2
- package/dist/two-colors/index.d.ts +2 -2
- package/dist/two-colors/index.js +139 -1009
- package/dist/two-colors/index.mjs +139 -1009
- package/package.json +5 -6
package/dist/filled/index.mjs
CHANGED
|
@@ -1,404 +1,91 @@
|
|
|
1
1
|
// src/filled/Account.tsx
|
|
2
2
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
3
|
-
var SvgAccount = (props) => /* @__PURE__ */ jsxs(
|
|
4
|
-
"
|
|
5
|
-
{
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
viewBox: "0 0 24 24",
|
|
9
|
-
width: props.width || 24,
|
|
10
|
-
height: props.height || 24,
|
|
11
|
-
className: props.className,
|
|
12
|
-
...props,
|
|
13
|
-
children: [
|
|
14
|
-
/* @__PURE__ */ jsx(
|
|
15
|
-
"path",
|
|
16
|
-
{
|
|
17
|
-
fill: "#FF4C4C",
|
|
18
|
-
d: "m20.992 19.334-.378-3.248a4 4 0 0 0-3.603-3.512 5 5 0 0 1-1.714.322c-.61 0-1.192-.117-1.715-.322a1.9 1.9 0 0 0-.58.117 4.6 4.6 0 0 1-1.134 1.434 5.38 5.38 0 0 1 3.283 4.36l.176 1.512c0 .003 5.476 0 5.476.003a.85.85 0 0 0 .189-.666m-7.526-8.252a3.84 3.84 0 0 0 1.802.468c2.063 0 3.748-1.697 3.748-3.775S17.331 4 15.268 4c-1.599 0-2.964 1.024-3.487 2.458 1.075.966 1.743 2.341 1.743 3.863 0 .263 0 .497-.058.76"
|
|
19
|
-
}
|
|
20
|
-
),
|
|
21
|
-
/* @__PURE__ */ jsx(
|
|
22
|
-
"path",
|
|
23
|
-
{
|
|
24
|
-
fill: props.color || "currentColor",
|
|
25
|
-
d: "M13.952 19.992c-.056-.475-.166-1.36-.166-1.36-.233-1.903-1.715-3.337-3.574-3.512a5 5 0 0 1-1.744.322 4.9 4.9 0 0 1-1.743-.322c-1.831.176-3.342 1.639-3.574 3.512 0 0-.1.928-.151 1.36.063-.044 10.96-.044 10.952 0"
|
|
26
|
-
}
|
|
27
|
-
),
|
|
28
|
-
/* @__PURE__ */ jsx(
|
|
29
|
-
"ellipse",
|
|
30
|
-
{
|
|
31
|
-
cx: 8.439,
|
|
32
|
-
cy: 10.321,
|
|
33
|
-
fill: props.color || "currentColor",
|
|
34
|
-
rx: 3.748,
|
|
35
|
-
ry: 3.775
|
|
36
|
-
}
|
|
37
|
-
)
|
|
38
|
-
]
|
|
39
|
-
}
|
|
40
|
-
);
|
|
3
|
+
var SvgAccount = (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: [
|
|
4
|
+
/* @__PURE__ */ jsx("path", { fill: "#FF4C4C", d: "m20.992 19.334-.378-3.248a4 4 0 0 0-3.603-3.512 5 5 0 0 1-1.714.322c-.61 0-1.192-.117-1.715-.322a1.9 1.9 0 0 0-.58.117 4.6 4.6 0 0 1-1.134 1.434 5.38 5.38 0 0 1 3.283 4.36l.176 1.512c0 .003 5.476 0 5.476.003a.85.85 0 0 0 .189-.666m-7.526-8.252a3.84 3.84 0 0 0 1.802.468c2.063 0 3.748-1.697 3.748-3.775S17.331 4 15.268 4c-1.599 0-2.964 1.024-3.487 2.458 1.075.966 1.743 2.341 1.743 3.863 0 .263 0 .497-.058.76" }),
|
|
5
|
+
/* @__PURE__ */ jsx("path", { fill: props.color || "currentColor", d: "M13.952 19.992c-.056-.475-.166-1.36-.166-1.36-.233-1.903-1.715-3.337-3.574-3.512a5 5 0 0 1-1.744.322 4.9 4.9 0 0 1-1.743-.322c-1.831.176-3.342 1.639-3.574 3.512 0 0-.1.928-.151 1.36.063-.044 10.96-.044 10.952 0" }),
|
|
6
|
+
/* @__PURE__ */ jsx("ellipse", { cx: 8.439, cy: 10.321, fill: props.color || "currentColor", rx: 3.748, ry: 3.775 })
|
|
7
|
+
] });
|
|
41
8
|
var Account_default = SvgAccount;
|
|
42
9
|
|
|
43
10
|
// src/filled/AdmSettings.tsx
|
|
44
11
|
import { jsx as jsx2, jsxs as jsxs2 } from "react/jsx-runtime";
|
|
45
|
-
var SvgAdmSettings = (props) => /* @__PURE__ */ jsxs2(
|
|
46
|
-
"
|
|
47
|
-
{
|
|
48
|
-
|
|
49
|
-
fill: "none",
|
|
50
|
-
viewBox: "0 0 24 24",
|
|
51
|
-
width: props.width || 24,
|
|
52
|
-
height: props.height || 24,
|
|
53
|
-
className: props.className,
|
|
54
|
-
...props,
|
|
55
|
-
children: [
|
|
56
|
-
/* @__PURE__ */ jsx2(
|
|
57
|
-
"path",
|
|
58
|
-
{
|
|
59
|
-
fill: props.color || "currentColor",
|
|
60
|
-
fillRule: "evenodd",
|
|
61
|
-
d: "M18.907 6.824a1.48 1.48 0 0 0-.439-.932c-.254-.25-.59-.4-.945-.426-1.994-.164-2.994-.756-4.544-2.1a1.506 1.506 0 0 0-1.97 0c-1.552 1.344-2.551 1.936-4.545 2.1a1.5 1.5 0 0 0-.945.426c-.254.248-.41.579-.44.932-.266 3.39-.266 12.198 6.914 12.198s7.18-8.803 6.914-12.198m-6.913-.47a2.13 2.13 0 0 1 1.498.616 2.09 2.09 0 0 1 0 2.969 2.13 2.13 0 0 1-2.997 0 2.09 2.09 0 0 1 0-2.97 2.13 2.13 0 0 1 1.499-.614m2.48 8.763a3.44 3.44 0 0 0 1.022-2.444v-.357a.69.69 0 0 0-.522-.669l-1.504-.385a.7.7 0 0 0-.774.32l-.101.167a.698.698 0 0 1-1.203 0l-.101-.168a.695.695 0 0 0-.774-.319l-1.504.385a.7.7 0 0 0-.523.67v.356a3.44 3.44 0 0 0 1.023 2.444 3.5 3.5 0 0 0 2.468 1.012h.025c.926 0 1.813-.364 2.468-1.012",
|
|
62
|
-
clipRule: "evenodd"
|
|
63
|
-
}
|
|
64
|
-
),
|
|
65
|
-
/* @__PURE__ */ jsx2(
|
|
66
|
-
"path",
|
|
67
|
-
{
|
|
68
|
-
fill: "#FF4C4C",
|
|
69
|
-
fillRule: "evenodd",
|
|
70
|
-
d: "m14.16 18.036 3.566-5.591a1.46 1.46 0 0 1 2.038-.441c.682.452.876 1.38.434 2.075l-3.564 5.588-.015.02-.011.014-.004.006a.1.1 0 0 1-.022.027q-.006 0-.007.004a.1.1 0 0 1-.023.022l-.007.005-.026.02-2.185 1.412a.37.37 0 0 1-.405-.002l-.003-.002a.39.39 0 0 1-.168-.372l.348-2.628a.004.004 0 0 1-.002-.006l.003-.015.002-.013.002-.006.001-.006.008-.027q0-.006.003-.012l.007-.014.007-.014.004-.006a.2.2 0 0 1 .02-.038m.617.862-.16 1.206 1.003-.648z",
|
|
71
|
-
clipRule: "evenodd"
|
|
72
|
-
}
|
|
73
|
-
)
|
|
74
|
-
]
|
|
75
|
-
}
|
|
76
|
-
);
|
|
12
|
+
var SvgAdmSettings = (props) => /* @__PURE__ */ jsxs2("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: [
|
|
13
|
+
/* @__PURE__ */ jsx2("path", { fill: props.color || "currentColor", fillRule: "evenodd", d: "M18.907 6.824a1.48 1.48 0 0 0-.439-.932c-.254-.25-.59-.4-.945-.426-1.994-.164-2.994-.756-4.544-2.1a1.506 1.506 0 0 0-1.97 0c-1.552 1.344-2.551 1.936-4.545 2.1a1.5 1.5 0 0 0-.945.426c-.254.248-.41.579-.44.932-.266 3.39-.266 12.198 6.914 12.198s7.18-8.803 6.914-12.198m-6.913-.47a2.13 2.13 0 0 1 1.498.616 2.09 2.09 0 0 1 0 2.969 2.13 2.13 0 0 1-2.997 0 2.09 2.09 0 0 1 0-2.97 2.13 2.13 0 0 1 1.499-.614m2.48 8.763a3.44 3.44 0 0 0 1.022-2.444v-.357a.69.69 0 0 0-.522-.669l-1.504-.385a.7.7 0 0 0-.774.32l-.101.167a.698.698 0 0 1-1.203 0l-.101-.168a.695.695 0 0 0-.774-.319l-1.504.385a.7.7 0 0 0-.523.67v.356a3.44 3.44 0 0 0 1.023 2.444 3.5 3.5 0 0 0 2.468 1.012h.025c.926 0 1.813-.364 2.468-1.012", clipRule: "evenodd" }),
|
|
14
|
+
/* @__PURE__ */ jsx2("path", { fill: "#FF4C4C", fillRule: "evenodd", d: "m14.16 18.036 3.566-5.591a1.46 1.46 0 0 1 2.038-.441c.682.452.876 1.38.434 2.075l-3.564 5.588-.015.02-.011.014-.004.006a.1.1 0 0 1-.022.027q-.006 0-.007.004a.1.1 0 0 1-.023.022l-.007.005-.026.02-2.185 1.412a.37.37 0 0 1-.405-.002l-.003-.002a.39.39 0 0 1-.168-.372l.348-2.628a.004.004 0 0 1-.002-.006l.003-.015.002-.013.002-.006.001-.006.008-.027q0-.006.003-.012l.007-.014.007-.014.004-.006a.2.2 0 0 1 .02-.038m.617.862-.16 1.206 1.003-.648z", clipRule: "evenodd" })
|
|
15
|
+
] });
|
|
77
16
|
var AdmSettings_default = SvgAdmSettings;
|
|
78
17
|
|
|
79
18
|
// src/filled/Chat.tsx
|
|
80
19
|
import { jsx as jsx3 } from "react/jsx-runtime";
|
|
81
|
-
var SvgChat = (props) => /* @__PURE__ */ jsx3(
|
|
82
|
-
"svg",
|
|
83
|
-
{
|
|
84
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
85
|
-
fill: "none",
|
|
86
|
-
viewBox: "0 0 24 24",
|
|
87
|
-
width: props.width || 24,
|
|
88
|
-
height: props.height || 24,
|
|
89
|
-
className: props.className,
|
|
90
|
-
...props,
|
|
91
|
-
children: /* @__PURE__ */ jsx3(
|
|
92
|
-
"path",
|
|
93
|
-
{
|
|
94
|
-
fill: props.color || "currentColor",
|
|
95
|
-
d: "M17.9 16.525c.601 0 1.1-.485 1.1-1.09V7.09C19 6.495 18.511 6 17.9 6H6.1C5.489 6 5 6.485 5 7.09v8.354c0 .596.489 1.091 1.1 1.091h1.395c.203.808.692 1.819 1.893 2.364a1.08 1.08 0 0 0 1.089-.101c.327-.232.5-.606.459-1-.03-.343-.04-.818.092-1.263h6.882z"
|
|
96
|
-
}
|
|
97
|
-
)
|
|
98
|
-
}
|
|
99
|
-
);
|
|
20
|
+
var SvgChat = (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", d: "M17.9 16.525c.601 0 1.1-.485 1.1-1.09V7.09C19 6.495 18.511 6 17.9 6H6.1C5.489 6 5 6.485 5 7.09v8.354c0 .596.489 1.091 1.1 1.091h1.395c.203.808.692 1.819 1.893 2.364a1.08 1.08 0 0 0 1.089-.101c.327-.232.5-.606.459-1-.03-.343-.04-.818.092-1.263h6.882z" }) });
|
|
100
21
|
var Chat_default = SvgChat;
|
|
101
22
|
|
|
102
23
|
// src/filled/Configurations.tsx
|
|
103
24
|
import { jsx as jsx4 } from "react/jsx-runtime";
|
|
104
|
-
var SvgConfigurations = (props) => /* @__PURE__ */ jsx4(
|
|
105
|
-
"svg",
|
|
106
|
-
{
|
|
107
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
108
|
-
fill: "none",
|
|
109
|
-
viewBox: "0 0 24 24",
|
|
110
|
-
width: props.width || 24,
|
|
111
|
-
height: props.height || 24,
|
|
112
|
-
className: props.className,
|
|
113
|
-
...props,
|
|
114
|
-
children: /* @__PURE__ */ jsx4(
|
|
115
|
-
"path",
|
|
116
|
-
{
|
|
117
|
-
fill: props.color || "currentColor",
|
|
118
|
-
fillRule: "evenodd",
|
|
119
|
-
d: "M18.807 9.857h2.479c.394 0 .714.32.714.714v2.858c0 .394-.32.714-.714.714h-2.479q-.186.601-.478 1.157l1.75 1.75a.714.714 0 0 1 0 1.014l-2.015 2.015a.714.714 0 0 1-1.014 0l-1.75-1.75q-.557.291-1.157.478v2.479c0 .394-.32.714-.714.714H10.57a.714.714 0 0 1-.714-.714v-2.479A7 7 0 0 1 8.7 18.33l-1.75 1.75a.714.714 0 0 1-1.014 0L3.92 18.064a.714.714 0 0 1 0-1.014l1.75-1.75a7 7 0 0 1-.478-1.157H2.714A.714.714 0 0 1 2 13.429V10.57c0-.394.32-.714.714-.714h2.479q.1-.331.236-.65c.078-.171.157-.343.242-.507l-1.75-1.75a.714.714 0 0 1 0-1.014L5.936 3.92a.714.714 0 0 1 1.014 0L8.7 5.67q.557-.292 1.157-.478V2.714c0-.394.32-.714.714-.714h2.858c.394 0 .714.32.714.714v2.479q.601.186 1.157.478l1.75-1.75a.714.714 0 0 1 1.014 0l2.015 2.015a.714.714 0 0 1 0 1.014l-1.75 1.75q.291.557.478 1.157M8.43 12a3.571 3.571 0 1 0 7.142 0 3.571 3.571 0 0 0-7.142 0",
|
|
120
|
-
clipRule: "evenodd"
|
|
121
|
-
}
|
|
122
|
-
)
|
|
123
|
-
}
|
|
124
|
-
);
|
|
25
|
+
var SvgConfigurations = (props) => /* @__PURE__ */ jsx4("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__ */ jsx4("path", { fill: props.color || "currentColor", fillRule: "evenodd", d: "M18.807 9.857h2.479c.394 0 .714.32.714.714v2.858c0 .394-.32.714-.714.714h-2.479q-.186.601-.478 1.157l1.75 1.75a.714.714 0 0 1 0 1.014l-2.015 2.015a.714.714 0 0 1-1.014 0l-1.75-1.75q-.557.291-1.157.478v2.479c0 .394-.32.714-.714.714H10.57a.714.714 0 0 1-.714-.714v-2.479A7 7 0 0 1 8.7 18.33l-1.75 1.75a.714.714 0 0 1-1.014 0L3.92 18.064a.714.714 0 0 1 0-1.014l1.75-1.75a7 7 0 0 1-.478-1.157H2.714A.714.714 0 0 1 2 13.429V10.57c0-.394.32-.714.714-.714h2.479q.1-.331.236-.65c.078-.171.157-.343.242-.507l-1.75-1.75a.714.714 0 0 1 0-1.014L5.936 3.92a.714.714 0 0 1 1.014 0L8.7 5.67q.557-.292 1.157-.478V2.714c0-.394.32-.714.714-.714h2.858c.394 0 .714.32.714.714v2.479q.601.186 1.157.478l1.75-1.75a.714.714 0 0 1 1.014 0l2.015 2.015a.714.714 0 0 1 0 1.014l-1.75 1.75q.291.557.478 1.157M8.43 12a3.571 3.571 0 1 0 7.142 0 3.571 3.571 0 0 0-7.142 0", clipRule: "evenodd" }) });
|
|
125
26
|
var Configurations_default = SvgConfigurations;
|
|
126
27
|
|
|
127
28
|
// src/filled/Error.tsx
|
|
128
29
|
import { jsx as jsx5 } from "react/jsx-runtime";
|
|
129
|
-
var SvgError = (props) => /* @__PURE__ */ jsx5(
|
|
130
|
-
"svg",
|
|
131
|
-
{
|
|
132
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
133
|
-
fill: "none",
|
|
134
|
-
viewBox: "0 0 24 24",
|
|
135
|
-
width: props.width || 24,
|
|
136
|
-
height: props.height || 24,
|
|
137
|
-
className: props.className,
|
|
138
|
-
...props,
|
|
139
|
-
children: /* @__PURE__ */ jsx5(
|
|
140
|
-
"path",
|
|
141
|
-
{
|
|
142
|
-
fill: "#FF4C4C",
|
|
143
|
-
fillRule: "evenodd",
|
|
144
|
-
d: "M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10m-.033-6.667q-.426 0-.613.131-.187.132-.187.494v.238q0 .35.175.487.174.138.612.138.4 0 .594-.132.194-.131.194-.493v-.238q0-.35-.175-.487-.176-.138-.6-.138M11.954 7a.72.72 0 0 0-.537.219.75.75 0 0 0-.213.543v5.163q0 .325.213.544.211.219.537.218a.72.72 0 0 0 .538-.218.75.75 0 0 0 .212-.544V7.762a.75.75 0 0 0-.212-.543.72.72 0 0 0-.538-.22",
|
|
145
|
-
clipRule: "evenodd"
|
|
146
|
-
}
|
|
147
|
-
)
|
|
148
|
-
}
|
|
149
|
-
);
|
|
30
|
+
var SvgError = (props) => /* @__PURE__ */ jsx5("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__ */ jsx5("path", { fill: "#FF4C4C", fillRule: "evenodd", d: "M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10m-.033-6.667q-.426 0-.613.131-.187.132-.187.494v.238q0 .35.175.487.174.138.612.138.4 0 .594-.132.194-.131.194-.493v-.238q0-.35-.175-.487-.176-.138-.6-.138M11.954 7a.72.72 0 0 0-.537.219.75.75 0 0 0-.213.543v5.163q0 .325.213.544.211.219.537.218a.72.72 0 0 0 .538-.218.75.75 0 0 0 .212-.544V7.762a.75.75 0 0 0-.212-.543.72.72 0 0 0-.538-.22", clipRule: "evenodd" }) });
|
|
150
31
|
var Error_default = SvgError;
|
|
151
32
|
|
|
152
33
|
// src/filled/Info.tsx
|
|
153
34
|
import { jsx as jsx6 } from "react/jsx-runtime";
|
|
154
|
-
var SvgInfo = (props) => /* @__PURE__ */ jsx6(
|
|
155
|
-
"svg",
|
|
156
|
-
{
|
|
157
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
158
|
-
fill: "none",
|
|
159
|
-
viewBox: "0 0 24 24",
|
|
160
|
-
width: props.width || 24,
|
|
161
|
-
height: props.height || 24,
|
|
162
|
-
className: props.className,
|
|
163
|
-
...props,
|
|
164
|
-
children: /* @__PURE__ */ jsx6(
|
|
165
|
-
"path",
|
|
166
|
-
{
|
|
167
|
-
fill: "#FF4C4C",
|
|
168
|
-
d: "M9.999 0c5.523 0 10 4.477 10 10s-4.477 9.999-10 9.999-10-4.476-10-9.999 4.477-10 10-10m-.21 8.134a.72.72 0 0 0-.539.219.75.75 0 0 0-.212.543v5.163q0 .324.212.543a.72.72 0 0 0 .538.218.72.72 0 0 0 .537-.218.75.75 0 0 0 .213-.543V8.896a.75.75 0 0 0-.213-.543.72.72 0 0 0-.537-.22M9.786 5q-.4 0-.594.132-.192.131-.193.493v.237q0 .351.175.489.175.136.6.136.426 0 .613-.13.187-.132.187-.495v-.237q0-.35-.175-.487Q10.226 5 9.787 5"
|
|
169
|
-
}
|
|
170
|
-
)
|
|
171
|
-
}
|
|
172
|
-
);
|
|
35
|
+
var SvgInfo = (props) => /* @__PURE__ */ jsx6("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__ */ jsx6("path", { fill: "#FF4C4C", d: "M9.999 0c5.523 0 10 4.477 10 10s-4.477 9.999-10 9.999-10-4.476-10-9.999 4.477-10 10-10m-.21 8.134a.72.72 0 0 0-.539.219.75.75 0 0 0-.212.543v5.163q0 .324.212.543a.72.72 0 0 0 .538.218.72.72 0 0 0 .537-.218.75.75 0 0 0 .213-.543V8.896a.75.75 0 0 0-.213-.543.72.72 0 0 0-.537-.22M9.786 5q-.4 0-.594.132-.192.131-.193.493v.237q0 .351.175.489.175.136.6.136.426 0 .613-.13.187-.132.187-.495v-.237q0-.35-.175-.487Q10.226 5 9.787 5" }) });
|
|
173
36
|
var Info_default = SvgInfo;
|
|
174
37
|
|
|
175
38
|
// src/filled/Menu.tsx
|
|
176
39
|
import { jsx as jsx7, jsxs as jsxs3 } from "react/jsx-runtime";
|
|
177
|
-
var SvgMenu = (props) => /* @__PURE__ */ jsxs3(
|
|
178
|
-
"
|
|
179
|
-
{
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
width: props.width || 24,
|
|
184
|
-
height: props.height || 24,
|
|
185
|
-
className: props.className,
|
|
186
|
-
...props,
|
|
187
|
-
children: [
|
|
188
|
-
/* @__PURE__ */ jsx7(
|
|
189
|
-
"path",
|
|
190
|
-
{
|
|
191
|
-
fill: "#FF4C4C",
|
|
192
|
-
d: "M16.5 17.4a.9.9 0 0 0-.9-.9H3.9a.9.9 0 1 0 0 1.8h11.7a.9.9 0 0 0 .9-.9"
|
|
193
|
-
}
|
|
194
|
-
),
|
|
195
|
-
/* @__PURE__ */ jsx7(
|
|
196
|
-
"path",
|
|
197
|
-
{
|
|
198
|
-
fill: props.color || "currentColor",
|
|
199
|
-
d: "M3.9 19.65c0 .745.605 1.35 1.35 1.35h9a1.35 1.35 0 0 0 1.35-1.35v-.45H3.9z"
|
|
200
|
-
}
|
|
201
|
-
),
|
|
202
|
-
/* @__PURE__ */ jsx7(
|
|
203
|
-
"path",
|
|
204
|
-
{
|
|
205
|
-
fill: props.color || "currentColor",
|
|
206
|
-
d: "M20.879 6.742a.45.45 0 0 0-.329-.142h-3.924l.675-2.7h2.349a.45.45 0 0 0 0-.9h-2.7a.45.45 0 0 0-.437.341L15.698 6.6H11.55a.45.45 0 0 0-.45.48l.196 3.16a5.895 5.895 0 0 1 5.178 5.278l.03.335a1.784 1.784 0 0 1-.004 3.097v.7a2.23 2.23 0 0 1-.461 1.35h3.611a.45.45 0 0 0 .45-.42l.9-13.5a.45.45 0 0 0-.121-.338"
|
|
207
|
-
}
|
|
208
|
-
),
|
|
209
|
-
/* @__PURE__ */ jsx7(
|
|
210
|
-
"path",
|
|
211
|
-
{
|
|
212
|
-
fill: props.color || "currentColor",
|
|
213
|
-
d: "M10.65 11.1h-1.8a4.956 4.956 0 0 0-4.927 4.5h11.654a4.956 4.956 0 0 0-4.927-4.5"
|
|
214
|
-
}
|
|
215
|
-
)
|
|
216
|
-
]
|
|
217
|
-
}
|
|
218
|
-
);
|
|
40
|
+
var SvgMenu = (props) => /* @__PURE__ */ jsxs3("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: [
|
|
41
|
+
/* @__PURE__ */ jsx7("path", { fill: "#FF4C4C", d: "M16.5 17.4a.9.9 0 0 0-.9-.9H3.9a.9.9 0 1 0 0 1.8h11.7a.9.9 0 0 0 .9-.9" }),
|
|
42
|
+
/* @__PURE__ */ jsx7("path", { fill: props.color || "currentColor", d: "M3.9 19.65c0 .745.605 1.35 1.35 1.35h9a1.35 1.35 0 0 0 1.35-1.35v-.45H3.9z" }),
|
|
43
|
+
/* @__PURE__ */ jsx7("path", { fill: props.color || "currentColor", d: "M20.879 6.742a.45.45 0 0 0-.329-.142h-3.924l.675-2.7h2.349a.45.45 0 0 0 0-.9h-2.7a.45.45 0 0 0-.437.341L15.698 6.6H11.55a.45.45 0 0 0-.45.48l.196 3.16a5.895 5.895 0 0 1 5.178 5.278l.03.335a1.784 1.784 0 0 1-.004 3.097v.7a2.23 2.23 0 0 1-.461 1.35h3.611a.45.45 0 0 0 .45-.42l.9-13.5a.45.45 0 0 0-.121-.338" }),
|
|
44
|
+
/* @__PURE__ */ jsx7("path", { fill: props.color || "currentColor", d: "M10.65 11.1h-1.8a4.956 4.956 0 0 0-4.927 4.5h11.654a4.956 4.956 0 0 0-4.927-4.5" })
|
|
45
|
+
] });
|
|
219
46
|
var Menu_default = SvgMenu;
|
|
220
47
|
|
|
221
48
|
// src/filled/Notifications.tsx
|
|
222
49
|
import { jsx as jsx8, jsxs as jsxs4 } from "react/jsx-runtime";
|
|
223
|
-
var SvgNotifications = (props) => /* @__PURE__ */ jsxs4(
|
|
224
|
-
"
|
|
225
|
-
{
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
height: props.height || 24,
|
|
231
|
-
className: props.className,
|
|
232
|
-
...props,
|
|
233
|
-
children: [
|
|
234
|
-
/* @__PURE__ */ jsx8(
|
|
235
|
-
"path",
|
|
236
|
-
{
|
|
237
|
-
fill: props.color || "currentColor",
|
|
238
|
-
fillRule: "evenodd",
|
|
239
|
-
d: "M12 21c1.478 0 2.685-1.01 2.765-2.48h3.386c1.02 0 1.849-.834 1.849-1.862a1.857 1.857 0 0 0-1.846-1.863V11.07a6.21 6.21 0 0 0-4-5.817v-.082C14.154 3.971 13.189 3 12 3a2.164 2.164 0 0 0-2.154 2.171v.082a6.21 6.21 0 0 0-4 5.817v3.725C4.828 14.795 4 15.63 4 16.658s.828 1.862 1.85 1.862h3.385C9.315 19.99 10.522 21 12 21m-1.595-2.48h3.109a1.567 1.567 0 0 1-1.555 1.419c-.81 0-1.475-.622-1.554-1.418",
|
|
240
|
-
clipRule: "evenodd"
|
|
241
|
-
}
|
|
242
|
-
),
|
|
243
|
-
/* @__PURE__ */ jsx8(
|
|
244
|
-
"mask",
|
|
245
|
-
{
|
|
246
|
-
id: "Notifications_svg__a",
|
|
247
|
-
width: 16,
|
|
248
|
-
height: 18,
|
|
249
|
-
x: 4,
|
|
250
|
-
y: 3,
|
|
251
|
-
maskUnits: "userSpaceOnUse",
|
|
252
|
-
style: {
|
|
253
|
-
maskType: "luminance"
|
|
254
|
-
},
|
|
255
|
-
children: /* @__PURE__ */ jsx8(
|
|
256
|
-
"path",
|
|
257
|
-
{
|
|
258
|
-
fill: "#fff",
|
|
259
|
-
fillRule: "evenodd",
|
|
260
|
-
d: "M12 21c1.478 0 2.685-1.01 2.765-2.48h3.386c1.02 0 1.849-.834 1.849-1.862a1.857 1.857 0 0 0-1.846-1.863V11.07a6.21 6.21 0 0 0-4-5.817v-.082C14.154 3.971 13.189 3 12 3a2.164 2.164 0 0 0-2.154 2.171v.082a6.21 6.21 0 0 0-4 5.817v3.725C4.828 14.795 4 15.63 4 16.658s.828 1.862 1.85 1.862h3.385C9.315 19.99 10.522 21 12 21m-1.595-2.48h3.109a1.567 1.567 0 0 1-1.555 1.419c-.81 0-1.475-.622-1.554-1.418",
|
|
261
|
-
clipRule: "evenodd"
|
|
262
|
-
}
|
|
263
|
-
)
|
|
264
|
-
}
|
|
265
|
-
),
|
|
266
|
-
/* @__PURE__ */ jsx8("g", { mask: "url(#Notifications_svg__a)", children: /* @__PURE__ */ jsx8("path", { fill: "#FF4C4C", d: "M7.086 18.521h9.746v4.042H7.086z" }) })
|
|
267
|
-
]
|
|
268
|
-
}
|
|
269
|
-
);
|
|
50
|
+
var SvgNotifications = (props) => /* @__PURE__ */ jsxs4("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: [
|
|
51
|
+
/* @__PURE__ */ jsx8("path", { fill: props.color || "currentColor", fillRule: "evenodd", d: "M12 21c1.478 0 2.685-1.01 2.765-2.48h3.386c1.02 0 1.849-.834 1.849-1.862a1.857 1.857 0 0 0-1.846-1.863V11.07a6.21 6.21 0 0 0-4-5.817v-.082C14.154 3.971 13.189 3 12 3a2.164 2.164 0 0 0-2.154 2.171v.082a6.21 6.21 0 0 0-4 5.817v3.725C4.828 14.795 4 15.63 4 16.658s.828 1.862 1.85 1.862h3.385C9.315 19.99 10.522 21 12 21m-1.595-2.48h3.109a1.567 1.567 0 0 1-1.555 1.419c-.81 0-1.475-.622-1.554-1.418", clipRule: "evenodd" }),
|
|
52
|
+
/* @__PURE__ */ jsx8("mask", { id: "Notifications_svg__a", width: 16, height: 18, x: 4, y: 3, maskUnits: "userSpaceOnUse", style: {
|
|
53
|
+
maskType: "luminance"
|
|
54
|
+
}, children: /* @__PURE__ */ jsx8("path", { fill: "#fff", fillRule: "evenodd", d: "M12 21c1.478 0 2.685-1.01 2.765-2.48h3.386c1.02 0 1.849-.834 1.849-1.862a1.857 1.857 0 0 0-1.846-1.863V11.07a6.21 6.21 0 0 0-4-5.817v-.082C14.154 3.971 13.189 3 12 3a2.164 2.164 0 0 0-2.154 2.171v.082a6.21 6.21 0 0 0-4 5.817v3.725C4.828 14.795 4 15.63 4 16.658s.828 1.862 1.85 1.862h3.385C9.315 19.99 10.522 21 12 21m-1.595-2.48h3.109a1.567 1.567 0 0 1-1.555 1.419c-.81 0-1.475-.622-1.554-1.418", clipRule: "evenodd" }) }),
|
|
55
|
+
/* @__PURE__ */ jsx8("g", { mask: "url(#Notifications_svg__a)", children: /* @__PURE__ */ jsx8("path", { fill: "#FF4C4C", d: "M7.086 18.521h9.746v4.042H7.086z" }) })
|
|
56
|
+
] });
|
|
270
57
|
var Notifications_default = SvgNotifications;
|
|
271
58
|
|
|
272
59
|
// src/filled/OrderHistory.tsx
|
|
273
60
|
import { jsx as jsx9, jsxs as jsxs5 } from "react/jsx-runtime";
|
|
274
|
-
var SvgOrderHistory = (props) => /* @__PURE__ */ jsxs5(
|
|
275
|
-
"
|
|
276
|
-
{
|
|
277
|
-
|
|
278
|
-
fill: "none",
|
|
279
|
-
viewBox: "0 0 24 24",
|
|
280
|
-
width: props.width || 24,
|
|
281
|
-
height: props.height || 24,
|
|
282
|
-
className: props.className,
|
|
283
|
-
...props,
|
|
284
|
-
children: [
|
|
285
|
-
/* @__PURE__ */ jsx9(
|
|
286
|
-
"path",
|
|
287
|
-
{
|
|
288
|
-
fill: props.color || "currentColor",
|
|
289
|
-
fillRule: "evenodd",
|
|
290
|
-
d: "M19.005 9.35V5.616c0-.892-.711-1.614-1.588-1.615h-9.92c-.843 0-1.532.69-1.532 1.537l-.057 9.76H4.381a.39.39 0 0 0-.381.388v1.677c.002 1.088.846 1.983 1.916 2.032v.004h8.561v-.004q.057.005.114.004c1.106-.001 2.002-.912 2.004-2.036V9.734h2.03c.1.002.198-.038.27-.11a.38.38 0 0 0 .11-.273m-4.802 2.824H8.13a.384.384 0 0 0-.381.387c0 .213.17.387.38.387h6.079a.384.384 0 0 0 .379-.39.384.384 0 0 0-.383-.384M8.13 13.757h3.675c.21 0 .38.173.38.387s-.17.387-.38.387H8.129a.384.384 0 0 1-.381-.387c0-.214.17-.387.38-.387",
|
|
291
|
-
clipRule: "evenodd"
|
|
292
|
-
}
|
|
293
|
-
),
|
|
294
|
-
/* @__PURE__ */ jsx9(
|
|
295
|
-
"path",
|
|
296
|
-
{
|
|
297
|
-
fill: "#FF4C4C",
|
|
298
|
-
fillRule: "evenodd",
|
|
299
|
-
d: "M18.13 19.205v-6.71a1.5 1.5 0 0 1 1.485-1.51 1.5 1.5 0 0 1 1.485 1.51V19.2l-.002.024-.002.018v.008a.1.1 0 0 1-.004.035c-.004.004-.004.004-.004.008a.1.1 0 0 1-.007.03l-.004.008-.012.031-1.085 2.413a.38.38 0 0 1-.343.224h-.003a.38.38 0 0 1-.343-.22l-1.124-2.413a.004.004 0 0 1-.004-.004l-.006-.014-.005-.013-.002-.006-.002-.005-.007-.027a.01.01 0 0 1-.004-.012l-.002-.016-.002-.015v-.008a.2.2 0 0 1-.004-.043m.986.383.514 1.107.499-1.107z",
|
|
300
|
-
clipRule: "evenodd"
|
|
301
|
-
}
|
|
302
|
-
)
|
|
303
|
-
]
|
|
304
|
-
}
|
|
305
|
-
);
|
|
61
|
+
var SvgOrderHistory = (props) => /* @__PURE__ */ jsxs5("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: [
|
|
62
|
+
/* @__PURE__ */ jsx9("path", { fill: props.color || "currentColor", fillRule: "evenodd", d: "M19.005 9.35V5.616c0-.892-.711-1.614-1.588-1.615h-9.92c-.843 0-1.532.69-1.532 1.537l-.057 9.76H4.381a.39.39 0 0 0-.381.388v1.677c.002 1.088.846 1.983 1.916 2.032v.004h8.561v-.004q.057.005.114.004c1.106-.001 2.002-.912 2.004-2.036V9.734h2.03c.1.002.198-.038.27-.11a.38.38 0 0 0 .11-.273m-4.802 2.824H8.13a.384.384 0 0 0-.381.387c0 .213.17.387.38.387h6.079a.384.384 0 0 0 .379-.39.384.384 0 0 0-.383-.384M8.13 13.757h3.675c.21 0 .38.173.38.387s-.17.387-.38.387H8.129a.384.384 0 0 1-.381-.387c0-.214.17-.387.38-.387", clipRule: "evenodd" }),
|
|
63
|
+
/* @__PURE__ */ jsx9("path", { fill: "#FF4C4C", fillRule: "evenodd", d: "M18.13 19.205v-6.71a1.5 1.5 0 0 1 1.485-1.51 1.5 1.5 0 0 1 1.485 1.51V19.2l-.002.024-.002.018v.008a.1.1 0 0 1-.004.035c-.004.004-.004.004-.004.008a.1.1 0 0 1-.007.03l-.004.008-.012.031-1.085 2.413a.38.38 0 0 1-.343.224h-.003a.38.38 0 0 1-.343-.22l-1.124-2.413a.004.004 0 0 1-.004-.004l-.006-.014-.005-.013-.002-.006-.002-.005-.007-.027a.01.01 0 0 1-.004-.012l-.002-.016-.002-.015v-.008a.2.2 0 0 1-.004-.043m.986.383.514 1.107.499-1.107z", clipRule: "evenodd" })
|
|
64
|
+
] });
|
|
306
65
|
var OrderHistory_default = SvgOrderHistory;
|
|
307
66
|
|
|
308
67
|
// src/filled/PinOrder.tsx
|
|
309
68
|
import { jsx as jsx10, jsxs as jsxs6 } from "react/jsx-runtime";
|
|
310
|
-
var SvgPinOrder = (props) => /* @__PURE__ */ jsxs6(
|
|
311
|
-
"
|
|
312
|
-
{
|
|
313
|
-
|
|
314
|
-
fill: "none",
|
|
315
|
-
viewBox: "0 0 24 24",
|
|
316
|
-
width: props.width || 24,
|
|
317
|
-
height: props.height || 24,
|
|
318
|
-
className: props.className,
|
|
319
|
-
...props,
|
|
320
|
-
children: [
|
|
321
|
-
/* @__PURE__ */ jsx10(
|
|
322
|
-
"path",
|
|
323
|
-
{
|
|
324
|
-
fill: "#FF4C4C",
|
|
325
|
-
fillRule: "evenodd",
|
|
326
|
-
d: "M18.148 14.128A7.8 7.8 0 0 0 19.5 9.71C19.5 5.452 16.142 2 12 2S4.5 5.452 4.5 9.71c0 1.332.329 2.586.908 3.68l.076.175 3.891 6.907c1.15 2.04 4.09 2.035 5.233-.01z",
|
|
327
|
-
clipRule: "evenodd"
|
|
328
|
-
}
|
|
329
|
-
),
|
|
330
|
-
/* @__PURE__ */ jsx10("ellipse", { cx: 12.07, cy: 9.783, fill: "#C60C0C", rx: 5.299, ry: 5.448 })
|
|
331
|
-
]
|
|
332
|
-
}
|
|
333
|
-
);
|
|
69
|
+
var SvgPinOrder = (props) => /* @__PURE__ */ jsxs6("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: [
|
|
70
|
+
/* @__PURE__ */ jsx10("path", { fill: "#FF4C4C", fillRule: "evenodd", d: "M18.148 14.128A7.8 7.8 0 0 0 19.5 9.71C19.5 5.452 16.142 2 12 2S4.5 5.452 4.5 9.71c0 1.332.329 2.586.908 3.68l.076.175 3.891 6.907c1.15 2.04 4.09 2.035 5.233-.01z", clipRule: "evenodd" }),
|
|
71
|
+
/* @__PURE__ */ jsx10("ellipse", { cx: 12.07, cy: 9.783, fill: "#C60C0C", rx: 5.299, ry: 5.448 })
|
|
72
|
+
] });
|
|
334
73
|
var PinOrder_default = SvgPinOrder;
|
|
335
74
|
|
|
336
75
|
// src/filled/Search.tsx
|
|
337
76
|
import { jsx as jsx11, jsxs as jsxs7 } from "react/jsx-runtime";
|
|
338
|
-
var SvgSearch = (props) => /* @__PURE__ */ jsxs7(
|
|
339
|
-
"
|
|
340
|
-
{
|
|
341
|
-
|
|
342
|
-
fill: "none",
|
|
343
|
-
viewBox: "0 0 24 24",
|
|
344
|
-
width: props.width || 24,
|
|
345
|
-
height: props.height || 24,
|
|
346
|
-
className: props.className,
|
|
347
|
-
...props,
|
|
348
|
-
children: [
|
|
349
|
-
/* @__PURE__ */ jsx11(
|
|
350
|
-
"path",
|
|
351
|
-
{
|
|
352
|
-
fill: "#FF4C4C",
|
|
353
|
-
d: "M7 8.65c0 .361.34.65.76.65h4.58c.415 0 .76-.291.76-.65 0-.361-.34-.65-.76-.65H7.76c-.415 0-.76.291-.76.65m0 2.6c0 .361.34.65.76.65h4.58c.415 0 .76-.291.76-.65 0-.361-.34-.65-.76-.65H7.76c-.415 0-.76.291-.76.65"
|
|
354
|
-
}
|
|
355
|
-
),
|
|
356
|
-
/* @__PURE__ */ jsx11(
|
|
357
|
-
"path",
|
|
358
|
-
{
|
|
359
|
-
fill: props.color || "currentColor",
|
|
360
|
-
d: "m20.89 18.45-3.84-3.84-.18-.12a.66.66 0 0 0-.73.13l-.32.32-.35-.35a7.1 7.1 0 0 0 1.65-4.53c0-3.89-3.17-7.06-7.06-7.06S3 6.17 3 10.06s3.17 7.06 7.06 7.06l.53-.02c1.47-.11 2.84-.67 3.98-1.61l.36.35-.32.33-.06.07a.66.66 0 0 0 .07.84l3.83 3.83.11.1c.31.26.71.4 1.11.4a1.75 1.75 0 0 0 1.61-1.07c.27-.65.12-1.39-.38-1.89zm-5.04-8.38c0 3.2-2.6 5.79-5.79 5.79a5.8 5.8 0 0 1-5.79-5.79 5.8 5.8 0 0 1 5.79-5.79 5.8 5.8 0 0 1 5.79 5.79"
|
|
361
|
-
}
|
|
362
|
-
)
|
|
363
|
-
]
|
|
364
|
-
}
|
|
365
|
-
);
|
|
77
|
+
var SvgSearch = (props) => /* @__PURE__ */ jsxs7("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: [
|
|
78
|
+
/* @__PURE__ */ jsx11("path", { fill: "#FF4C4C", d: "M7 8.65c0 .361.34.65.76.65h4.58c.415 0 .76-.291.76-.65 0-.361-.34-.65-.76-.65H7.76c-.415 0-.76.291-.76.65m0 2.6c0 .361.34.65.76.65h4.58c.415 0 .76-.291.76-.65 0-.361-.34-.65-.76-.65H7.76c-.415 0-.76.291-.76.65" }),
|
|
79
|
+
/* @__PURE__ */ jsx11("path", { fill: props.color || "currentColor", d: "m20.89 18.45-3.84-3.84-.18-.12a.66.66 0 0 0-.73.13l-.32.32-.35-.35a7.1 7.1 0 0 0 1.65-4.53c0-3.89-3.17-7.06-7.06-7.06S3 6.17 3 10.06s3.17 7.06 7.06 7.06l.53-.02c1.47-.11 2.84-.67 3.98-1.61l.36.35-.32.33-.06.07a.66.66 0 0 0 .07.84l3.83 3.83.11.1c.31.26.71.4 1.11.4a1.75 1.75 0 0 0 1.61-1.07c.27-.65.12-1.39-.38-1.89zm-5.04-8.38c0 3.2-2.6 5.79-5.79 5.79a5.8 5.8 0 0 1-5.79-5.79 5.8 5.8 0 0 1 5.79-5.79 5.8 5.8 0 0 1 5.79 5.79" })
|
|
80
|
+
] });
|
|
366
81
|
var Search_default = SvgSearch;
|
|
367
82
|
|
|
368
83
|
// src/filled/Trash.tsx
|
|
369
84
|
import { jsx as jsx12, jsxs as jsxs8 } from "react/jsx-runtime";
|
|
370
|
-
var SvgTrash = (props) => /* @__PURE__ */ jsxs8(
|
|
371
|
-
"
|
|
372
|
-
{
|
|
373
|
-
|
|
374
|
-
fill: "none",
|
|
375
|
-
viewBox: "0 0 24 24",
|
|
376
|
-
width: props.width || 24,
|
|
377
|
-
height: props.height || 24,
|
|
378
|
-
className: props.className,
|
|
379
|
-
...props,
|
|
380
|
-
children: [
|
|
381
|
-
/* @__PURE__ */ jsx12(
|
|
382
|
-
"path",
|
|
383
|
-
{
|
|
384
|
-
fill: "#FF4C4C",
|
|
385
|
-
fillRule: "evenodd",
|
|
386
|
-
d: "M13.4 3a3 3 0 0 1 3 3H19a1 1 0 1 1 0 2H6a1 1 0 1 1 0-2h2.8a3 3 0 0 1 3-3zm-2.6 3a1 1 0 0 1 1-1h1.6a1 1 0 0 1 1 1z",
|
|
387
|
-
clipRule: "evenodd"
|
|
388
|
-
}
|
|
389
|
-
),
|
|
390
|
-
/* @__PURE__ */ jsx12(
|
|
391
|
-
"path",
|
|
392
|
-
{
|
|
393
|
-
fill: props.color || "currentColor",
|
|
394
|
-
fillRule: "evenodd",
|
|
395
|
-
d: "M19.2 9.2H6l1 10.4A1.4 1.4 0 0 0 8.4 21h8.4a1.4 1.4 0 0 0 1.4-1.4zm-8.1 3.3a.7.7 0 1 0-1.4 0v5.2a.7.7 0 1 0 1.4 0zm3.7-.7a.7.7 0 0 1 .7.7v5.2a.7.7 0 1 1-1.4 0v-5.2a.7.7 0 0 1 .7-.7",
|
|
396
|
-
clipRule: "evenodd"
|
|
397
|
-
}
|
|
398
|
-
)
|
|
399
|
-
]
|
|
400
|
-
}
|
|
401
|
-
);
|
|
85
|
+
var SvgTrash = (props) => /* @__PURE__ */ jsxs8("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: [
|
|
86
|
+
/* @__PURE__ */ jsx12("path", { fill: "#FF4C4C", fillRule: "evenodd", d: "M13.4 3a3 3 0 0 1 3 3H19a1 1 0 1 1 0 2H6a1 1 0 1 1 0-2h2.8a3 3 0 0 1 3-3zm-2.6 3a1 1 0 0 1 1-1h1.6a1 1 0 0 1 1 1z", clipRule: "evenodd" }),
|
|
87
|
+
/* @__PURE__ */ jsx12("path", { fill: props.color || "currentColor", fillRule: "evenodd", d: "M19.2 9.2H6l1 10.4A1.4 1.4 0 0 0 8.4 21h8.4a1.4 1.4 0 0 0 1.4-1.4zm-8.1 3.3a.7.7 0 1 0-1.4 0v5.2a.7.7 0 1 0 1.4 0zm3.7-.7a.7.7 0 0 1 .7.7v5.2a.7.7 0 1 1-1.4 0v-5.2a.7.7 0 0 1 .7-.7", clipRule: "evenodd" })
|
|
88
|
+
] });
|
|
402
89
|
var Trash_default = SvgTrash;
|
|
403
90
|
export {
|
|
404
91
|
Account_default as Account,
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import { SVGProps } from 'react';
|
|
3
3
|
|
|
4
|
-
declare const SvgAdd: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
5
|
-
|
|
6
4
|
declare const SvgAi: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
7
5
|
|
|
6
|
+
declare const SvgAdd: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
7
|
+
|
|
8
8
|
declare const SvgApartment: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
9
9
|
|
|
10
10
|
declare const SvgArrowRight: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
@@ -17,20 +17,22 @@ declare const SvgBag: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.
|
|
|
17
17
|
|
|
18
18
|
declare const SvgBarcode: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
19
19
|
|
|
20
|
+
declare const SvgBrightness: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
21
|
+
|
|
20
22
|
declare const SvgCalendar: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
21
23
|
|
|
22
24
|
declare const SvgCamera: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
23
25
|
|
|
24
26
|
declare const SvgCart: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
25
27
|
|
|
26
|
-
declare const SvgCategoryList: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
27
|
-
|
|
28
28
|
declare const SvgCheck: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
29
29
|
|
|
30
30
|
declare const SvgClock: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
31
31
|
|
|
32
32
|
declare const SvgClose: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
33
33
|
|
|
34
|
+
declare const SvgContrast: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
35
|
+
|
|
34
36
|
declare const SvgCopy: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
35
37
|
|
|
36
38
|
declare const SvgCreditCard: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
@@ -91,12 +93,18 @@ declare const SvgRating: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.J
|
|
|
91
93
|
|
|
92
94
|
declare const SvgRefresh: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
93
95
|
|
|
96
|
+
declare const SvgRotate: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
97
|
+
|
|
94
98
|
declare const SvgSatelliteView: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
95
99
|
|
|
100
|
+
declare const SvgSaturation: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
101
|
+
|
|
96
102
|
declare const SvgSearch: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
97
103
|
|
|
98
104
|
declare const SvgSelect: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
99
105
|
|
|
106
|
+
declare const SvgShadows: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
107
|
+
|
|
100
108
|
declare const SvgShare: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
101
109
|
|
|
102
110
|
declare const SvgShow: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
@@ -119,4 +127,8 @@ declare const SvgWhatsapp: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime
|
|
|
119
127
|
|
|
120
128
|
declare const SvgWifiOff: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
121
129
|
|
|
122
|
-
|
|
130
|
+
declare const SvgZoom: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
131
|
+
|
|
132
|
+
declare const SvgCategoryList: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
133
|
+
|
|
134
|
+
export { SvgAdd as Add, SvgAi as Ai, SvgApartment as Apartment, SvgArrowRight as ArrowRight, SvgAttach as Attach, SvgBack as Back, SvgBag as Bag, SvgBarcode as Barcode, SvgBrightness as Brightness, SvgCalendar as Calendar, SvgCamera as Camera, SvgCart as Cart, SvgCategoryList as CategoryList, SvgCheck as Check, SvgClock as Clock, SvgClose as Close, SvgContrast as Contrast, SvgCopy as Copy, SvgCreditCard as CreditCard, SvgDeliver as Deliver, SvgDownload as Download, SvgEdit as Edit, SvgEmptyScreen as EmptyScreen, SvgExpand as Expand, SvgFilter as Filter, SvgGallery as Gallery, SvgHelpChat as HelpChat, SvgHide as Hide, SvgHotel as Hotel, SvgHouse as House, SvgLock as Lock, SvgLowBattery as LowBattery, SvgMapView as MapView, SvgMenu as Menu, SvgMoney as Money, SvgNext as Next, SvgNotification as Notification, SvgOffice as Office, SvgOperations as Operations, SvgOrder as Order, SvgPerformance as Performance, SvgPhone as Phone, SvgPreparation as Preparation, SvgQrCode as QrCode, SvgRate as Rate, SvgRating as Rating, SvgRefresh as Refresh, SvgRotate as Rotate, SvgSatelliteView as SatelliteView, SvgSaturation as Saturation, SvgSearch as Search, SvgSelect as Select, SvgShadows as Shadows, SvgShare as Share, SvgShow as Show, SvgSignOut as SignOut, SvgSubstitution as Substitution, SvgTrash as Trash, SvgUnion as Union, SvgUpload as Upload, SvgUser as User, SvgVoucher as Voucher, SvgWhatsapp as Whatsapp, SvgWifiOff as WifiOff, SvgZoom as Zoom };
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import { SVGProps } from 'react';
|
|
3
3
|
|
|
4
|
-
declare const SvgAdd: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
5
|
-
|
|
6
4
|
declare const SvgAi: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
7
5
|
|
|
6
|
+
declare const SvgAdd: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
7
|
+
|
|
8
8
|
declare const SvgApartment: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
9
9
|
|
|
10
10
|
declare const SvgArrowRight: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
@@ -17,20 +17,22 @@ declare const SvgBag: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.
|
|
|
17
17
|
|
|
18
18
|
declare const SvgBarcode: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
19
19
|
|
|
20
|
+
declare const SvgBrightness: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
21
|
+
|
|
20
22
|
declare const SvgCalendar: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
21
23
|
|
|
22
24
|
declare const SvgCamera: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
23
25
|
|
|
24
26
|
declare const SvgCart: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
25
27
|
|
|
26
|
-
declare const SvgCategoryList: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
27
|
-
|
|
28
28
|
declare const SvgCheck: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
29
29
|
|
|
30
30
|
declare const SvgClock: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
31
31
|
|
|
32
32
|
declare const SvgClose: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
33
33
|
|
|
34
|
+
declare const SvgContrast: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
35
|
+
|
|
34
36
|
declare const SvgCopy: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
35
37
|
|
|
36
38
|
declare const SvgCreditCard: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
@@ -91,12 +93,18 @@ declare const SvgRating: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.J
|
|
|
91
93
|
|
|
92
94
|
declare const SvgRefresh: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
93
95
|
|
|
96
|
+
declare const SvgRotate: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
97
|
+
|
|
94
98
|
declare const SvgSatelliteView: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
95
99
|
|
|
100
|
+
declare const SvgSaturation: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
101
|
+
|
|
96
102
|
declare const SvgSearch: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
97
103
|
|
|
98
104
|
declare const SvgSelect: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
99
105
|
|
|
106
|
+
declare const SvgShadows: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
107
|
+
|
|
100
108
|
declare const SvgShare: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
101
109
|
|
|
102
110
|
declare const SvgShow: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
@@ -119,4 +127,8 @@ declare const SvgWhatsapp: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime
|
|
|
119
127
|
|
|
120
128
|
declare const SvgWifiOff: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
121
129
|
|
|
122
|
-
|
|
130
|
+
declare const SvgZoom: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
131
|
+
|
|
132
|
+
declare const SvgCategoryList: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
133
|
+
|
|
134
|
+
export { SvgAdd as Add, SvgAi as Ai, SvgApartment as Apartment, SvgArrowRight as ArrowRight, SvgAttach as Attach, SvgBack as Back, SvgBag as Bag, SvgBarcode as Barcode, SvgBrightness as Brightness, SvgCalendar as Calendar, SvgCamera as Camera, SvgCart as Cart, SvgCategoryList as CategoryList, SvgCheck as Check, SvgClock as Clock, SvgClose as Close, SvgContrast as Contrast, SvgCopy as Copy, SvgCreditCard as CreditCard, SvgDeliver as Deliver, SvgDownload as Download, SvgEdit as Edit, SvgEmptyScreen as EmptyScreen, SvgExpand as Expand, SvgFilter as Filter, SvgGallery as Gallery, SvgHelpChat as HelpChat, SvgHide as Hide, SvgHotel as Hotel, SvgHouse as House, SvgLock as Lock, SvgLowBattery as LowBattery, SvgMapView as MapView, SvgMenu as Menu, SvgMoney as Money, SvgNext as Next, SvgNotification as Notification, SvgOffice as Office, SvgOperations as Operations, SvgOrder as Order, SvgPerformance as Performance, SvgPhone as Phone, SvgPreparation as Preparation, SvgQrCode as QrCode, SvgRate as Rate, SvgRating as Rating, SvgRefresh as Refresh, SvgRotate as Rotate, SvgSatelliteView as SatelliteView, SvgSaturation as Saturation, SvgSearch as Search, SvgSelect as Select, SvgShadows as Shadows, SvgShare as Share, SvgShow as Show, SvgSignOut as SignOut, SvgSubstitution as Substitution, SvgTrash as Trash, SvgUnion as Union, SvgUpload as Upload, SvgUser as User, SvgVoucher as Voucher, SvgWhatsapp as Whatsapp, SvgWifiOff as WifiOff, SvgZoom as Zoom };
|