am-shared-assets 1.2.2 → 1.2.7
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/{CheckIcon-DUoRNL64.js → CheckIcon-8yw1tx0W.js} +68 -188
- package/dist/arrowIcons.js +209 -545
- package/dist/components.js +387 -754
- package/dist/essetionalIcons.js +1550 -980
- package/dist/icons/components/essetional/battery-charging/BatteryChargingBoldIcon.d.ts +5 -0
- package/dist/icons/components/essetional/battery-charging/BatteryChargingBrokenIcon.d.ts +5 -0
- package/dist/icons/components/essetional/battery-charging/BatteryChargingBulkIcon.d.ts +5 -0
- package/dist/icons/components/essetional/battery-charging/BatteryChargingLinearIcon.d.ts +5 -0
- package/dist/icons/components/essetional/battery-charging/BatteryChargingOutlineIcon.d.ts +5 -0
- package/dist/icons/components/essetional/battery-charging/BatteryChargingTwotoneIcon.d.ts +5 -0
- package/dist/icons/components/essetional/battery-disable/BatteryDisableBoldIcon.d.ts +5 -0
- package/dist/icons/components/essetional/battery-disable/BatteryDisableBrokenIcon.d.ts +5 -0
- package/dist/icons/components/essetional/battery-disable/BatteryDisableBulkIcon.d.ts +5 -0
- package/dist/icons/components/essetional/battery-disable/BatteryDisableLinearIcon.d.ts +5 -0
- package/dist/icons/components/essetional/battery-disable/BatteryDisableOutlineIcon.d.ts +5 -0
- package/dist/icons/components/essetional/battery-disable/BatteryDisableTwotoneIcon.d.ts +5 -0
- package/dist/icons/components/essetional/battery-full/BatteryFullBoldIcon.d.ts +5 -0
- package/dist/icons/components/essetional/battery-full/BatteryFullBrokenIcon.d.ts +5 -0
- package/dist/icons/components/essetional/battery-full/BatteryFullBulkIcon.d.ts +5 -0
- package/dist/icons/components/essetional/battery-full/BatteryFullLinearIcon.d.ts +5 -0
- package/dist/icons/components/essetional/battery-full/BatteryFullOutlineIcon.d.ts +5 -0
- package/dist/icons/components/essetional/battery-full/BatteryFullTwotoneIcon.d.ts +5 -0
- package/dist/icons/components/essetional/battery-mid/BatteryMidBoldIcon.d.ts +5 -0
- package/dist/icons/components/essetional/battery-mid/BatteryMidBrokenIcon.d.ts +5 -0
- package/dist/icons/components/essetional/battery-mid/BatteryMidBulkIcon.d.ts +5 -0
- package/dist/icons/components/essetional/battery-mid/BatteryMidLinearIcon.d.ts +5 -0
- package/dist/icons/components/essetional/battery-mid/BatteryMidOutlineIcon.d.ts +5 -0
- package/dist/icons/components/essetional/battery-mid/BatteryMidTwotoneIcon.d.ts +5 -0
- package/dist/icons/components/essetional/index.d.ts +25 -1
- package/dist/icons.js +937 -3081
- package/dist/moneyIcons.js +101 -341
- package/dist/styles.css +1 -1
- package/dist/usersIcons.js +75 -219
- package/package.json +1 -1
- package/dist/overlays/Drawer.d.ts +0 -11
- package/dist/overlays/index.d.ts +0 -2
- package/dist/overlays.d.ts +0 -2
- package/dist/overlays.js +0 -2030
package/dist/essetionalIcons.js
CHANGED
|
@@ -1,71 +1,47 @@
|
|
|
1
|
-
import {
|
|
2
|
-
const
|
|
3
|
-
color:
|
|
4
|
-
size:
|
|
1
|
+
import { jsxs as e, jsx as o } from "react/jsx-runtime";
|
|
2
|
+
const C = ({
|
|
3
|
+
color: r,
|
|
4
|
+
size: t = 24
|
|
5
5
|
}) => /* @__PURE__ */ e(
|
|
6
6
|
"svg",
|
|
7
7
|
{
|
|
8
|
-
width:
|
|
9
|
-
height:
|
|
8
|
+
width: t,
|
|
9
|
+
height: t,
|
|
10
10
|
viewBox: "0 0 24 24",
|
|
11
11
|
fill: "none",
|
|
12
12
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13
|
-
style: { color:
|
|
13
|
+
style: { color: r },
|
|
14
14
|
children: [
|
|
15
|
-
/* @__PURE__ */
|
|
15
|
+
/* @__PURE__ */ o(
|
|
16
16
|
"path",
|
|
17
17
|
{
|
|
18
18
|
d: "M19.3399 14.49L18.3399 12.83C18.1299 12.46 17.9399 11.76 17.9399 11.35V8.82C17.9399 6.47 16.5599 4.44 14.5699 3.49C14.0499 2.57 13.0899 2 11.9899 2C10.8999 2 9.91994 2.59 9.39994 3.52C7.44994 4.49 6.09994 6.5 6.09994 8.82V11.35C6.09994 11.76 5.90994 12.46 5.69994 12.82L4.68994 14.49C4.28994 15.16 4.19994 15.9 4.44994 16.58C4.68994 17.25 5.25994 17.77 5.99994 18.02C7.93994 18.68 9.97994 19 12.0199 19C14.0599 19 16.0999 18.68 18.0399 18.03C18.7399 17.8 19.2799 17.27 19.5399 16.58C19.7999 15.89 19.7299 15.13 19.3399 14.49Z",
|
|
19
19
|
fill: "currentColor"
|
|
20
|
-
}
|
|
21
|
-
void 0,
|
|
22
|
-
!1,
|
|
23
|
-
{
|
|
24
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/notification/NotificationBoldIcon.tsx",
|
|
25
|
-
lineNumber: 17,
|
|
26
|
-
columnNumber: 7
|
|
27
|
-
},
|
|
28
|
-
void 0
|
|
20
|
+
}
|
|
29
21
|
),
|
|
30
|
-
/* @__PURE__ */
|
|
22
|
+
/* @__PURE__ */ o(
|
|
31
23
|
"path",
|
|
32
24
|
{
|
|
33
25
|
d: "M14.8297 20.01C14.4097 21.17 13.2997 22 11.9997 22C11.2097 22 10.4297 21.68 9.87969 21.11C9.55969 20.81 9.31969 20.41 9.17969 20C9.30969 20.02 9.43969 20.03 9.57969 20.05C9.80969 20.08 10.0497 20.11 10.2897 20.13C10.8597 20.18 11.4397 20.21 12.0197 20.21C12.5897 20.21 13.1597 20.18 13.7197 20.13C13.9297 20.11 14.1397 20.1 14.3397 20.07C14.4997 20.05 14.6597 20.03 14.8297 20.01Z",
|
|
34
26
|
fill: "currentColor"
|
|
35
|
-
}
|
|
36
|
-
void 0,
|
|
37
|
-
!1,
|
|
38
|
-
{
|
|
39
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/notification/NotificationBoldIcon.tsx",
|
|
40
|
-
lineNumber: 21,
|
|
41
|
-
columnNumber: 7
|
|
42
|
-
},
|
|
43
|
-
void 0
|
|
27
|
+
}
|
|
44
28
|
)
|
|
45
29
|
]
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/notification/NotificationBoldIcon.tsx",
|
|
51
|
-
lineNumber: 9,
|
|
52
|
-
columnNumber: 5
|
|
53
|
-
},
|
|
54
|
-
void 0
|
|
55
|
-
), r = ({
|
|
56
|
-
color: t,
|
|
57
|
-
size: s = 24
|
|
30
|
+
}
|
|
31
|
+
), i = ({
|
|
32
|
+
color: r,
|
|
33
|
+
size: t = 24
|
|
58
34
|
}) => /* @__PURE__ */ e(
|
|
59
35
|
"svg",
|
|
60
36
|
{
|
|
61
|
-
width:
|
|
62
|
-
height:
|
|
37
|
+
width: t,
|
|
38
|
+
height: t,
|
|
63
39
|
viewBox: "0 0 24 24",
|
|
64
40
|
fill: "none",
|
|
65
41
|
xmlns: "http://www.w3.org/2000/svg",
|
|
66
|
-
style: { color:
|
|
42
|
+
style: { color: r },
|
|
67
43
|
children: [
|
|
68
|
-
/* @__PURE__ */
|
|
44
|
+
/* @__PURE__ */ o(
|
|
69
45
|
"path",
|
|
70
46
|
{
|
|
71
47
|
d: "M18.0196 11.8002V8.91016C18.0196 5.61016 15.3196 2.91016 12.0196 2.91016C8.7096 2.91016 6.0196 5.60016 6.0196 8.91016V11.8002C6.0196 12.4102 5.7596 13.3402 5.4496 13.8602L4.2996 15.7702C3.5896 16.9502 4.0796 18.2602 5.3796 18.7002C9.6896 20.1402 14.3396 20.1402 18.6496 18.7002C19.8596 18.3002 20.3896 16.8702 19.7296 15.7702",
|
|
@@ -73,17 +49,9 @@ const n = ({
|
|
|
73
49
|
"stroke-width": "1.5",
|
|
74
50
|
"stroke-miterlimit": "10",
|
|
75
51
|
"stroke-linecap": "round"
|
|
76
|
-
}
|
|
77
|
-
void 0,
|
|
78
|
-
!1,
|
|
79
|
-
{
|
|
80
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/notification/NotificationBrokenIcon.tsx",
|
|
81
|
-
lineNumber: 17,
|
|
82
|
-
columnNumber: 7
|
|
83
|
-
},
|
|
84
|
-
void 0
|
|
52
|
+
}
|
|
85
53
|
),
|
|
86
|
-
/* @__PURE__ */
|
|
54
|
+
/* @__PURE__ */ o(
|
|
87
55
|
"path",
|
|
88
56
|
{
|
|
89
57
|
d: "M13.8699 3.19994C13.5599 3.10994 13.2399 3.03994 12.9099 2.99994C11.9499 2.87994 11.0299 2.94994 10.1699 3.19994C10.4599 2.45994 11.1799 1.93994 12.0199 1.93994C12.8599 1.93994 13.5799 2.45994 13.8699 3.19994Z",
|
|
@@ -92,126 +60,70 @@ const n = ({
|
|
|
92
60
|
"stroke-miterlimit": "10",
|
|
93
61
|
"stroke-linecap": "round",
|
|
94
62
|
"stroke-linejoin": "round"
|
|
95
|
-
}
|
|
96
|
-
void 0,
|
|
97
|
-
!1,
|
|
98
|
-
{
|
|
99
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/notification/NotificationBrokenIcon.tsx",
|
|
100
|
-
lineNumber: 24,
|
|
101
|
-
columnNumber: 7
|
|
102
|
-
},
|
|
103
|
-
void 0
|
|
63
|
+
}
|
|
104
64
|
),
|
|
105
|
-
/* @__PURE__ */
|
|
65
|
+
/* @__PURE__ */ o(
|
|
106
66
|
"path",
|
|
107
67
|
{
|
|
108
68
|
d: "M15.0195 19.0601C15.0195 20.7101 13.6695 22.0601 12.0195 22.0601C11.1995 22.0601 10.4395 21.7201 9.89953 21.1801C9.35953 20.6401 9.01953 19.8801 9.01953 19.0601",
|
|
109
69
|
stroke: "currentColor",
|
|
110
70
|
"stroke-width": "1.5",
|
|
111
71
|
"stroke-miterlimit": "10"
|
|
112
|
-
}
|
|
113
|
-
void 0,
|
|
114
|
-
!1,
|
|
115
|
-
{
|
|
116
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/notification/NotificationBrokenIcon.tsx",
|
|
117
|
-
lineNumber: 32,
|
|
118
|
-
columnNumber: 7
|
|
119
|
-
},
|
|
120
|
-
void 0
|
|
72
|
+
}
|
|
121
73
|
)
|
|
122
74
|
]
|
|
123
|
-
}
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/notification/NotificationBrokenIcon.tsx",
|
|
128
|
-
lineNumber: 9,
|
|
129
|
-
columnNumber: 5
|
|
130
|
-
},
|
|
131
|
-
void 0
|
|
132
|
-
), i = ({
|
|
133
|
-
color: t,
|
|
134
|
-
size: s = 24
|
|
75
|
+
}
|
|
76
|
+
), l = ({
|
|
77
|
+
color: r,
|
|
78
|
+
size: t = 24
|
|
135
79
|
}) => /* @__PURE__ */ e(
|
|
136
80
|
"svg",
|
|
137
81
|
{
|
|
138
|
-
width:
|
|
139
|
-
height:
|
|
82
|
+
width: t,
|
|
83
|
+
height: t,
|
|
140
84
|
viewBox: "0 0 24 24",
|
|
141
85
|
fill: "none",
|
|
142
86
|
xmlns: "http://www.w3.org/2000/svg",
|
|
143
|
-
style: { color:
|
|
87
|
+
style: { color: r },
|
|
144
88
|
children: [
|
|
145
|
-
/* @__PURE__ */
|
|
89
|
+
/* @__PURE__ */ o(
|
|
146
90
|
"path",
|
|
147
91
|
{
|
|
148
92
|
opacity: "0.4",
|
|
149
93
|
d: "M19.3399 14.4899L18.3399 12.8299C18.1299 12.4599 17.9399 11.7599 17.9399 11.3499V8.8199C17.9399 5.5599 15.2899 2.8999 12.0199 2.8999C8.74994 2.8999 6.09994 5.5599 6.09994 8.8199V11.3499C6.09994 11.7599 5.90994 12.4599 5.69994 12.8199L4.68994 14.4899C4.28994 15.1599 4.19994 15.8999 4.44994 16.5799C4.68994 17.2499 5.25994 17.7699 5.99994 18.0199C7.93994 18.6799 9.97994 18.9999 12.0199 18.9999C14.0599 18.9999 16.0999 18.6799 18.0399 18.0299C18.7399 17.7999 19.2799 17.2699 19.5399 16.5799C19.7999 15.8899 19.7299 15.1299 19.3399 14.4899Z",
|
|
150
94
|
fill: "currentColor"
|
|
151
|
-
}
|
|
152
|
-
void 0,
|
|
153
|
-
!1,
|
|
154
|
-
{
|
|
155
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/notification/NotificationBulkIcon.tsx",
|
|
156
|
-
lineNumber: 17,
|
|
157
|
-
columnNumber: 7
|
|
158
|
-
},
|
|
159
|
-
void 0
|
|
95
|
+
}
|
|
160
96
|
),
|
|
161
|
-
/* @__PURE__ */
|
|
97
|
+
/* @__PURE__ */ o(
|
|
162
98
|
"path",
|
|
163
99
|
{
|
|
164
100
|
d: "M14.2498 3.32C13.5598 3.05 12.8098 2.9 12.0198 2.9C11.2398 2.9 10.4898 3.04 9.7998 3.32C10.2298 2.51 11.0798 2 12.0198 2C12.9698 2 13.8098 2.51 14.2498 3.32Z",
|
|
165
101
|
fill: "currentColor"
|
|
166
|
-
}
|
|
167
|
-
void 0,
|
|
168
|
-
!1,
|
|
169
|
-
{
|
|
170
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/notification/NotificationBulkIcon.tsx",
|
|
171
|
-
lineNumber: 22,
|
|
172
|
-
columnNumber: 7
|
|
173
|
-
},
|
|
174
|
-
void 0
|
|
102
|
+
}
|
|
175
103
|
),
|
|
176
|
-
/* @__PURE__ */
|
|
104
|
+
/* @__PURE__ */ o(
|
|
177
105
|
"path",
|
|
178
106
|
{
|
|
179
107
|
d: "M14.8297 20.01C14.4097 21.17 13.2997 22 11.9997 22C11.2097 22 10.4297 21.68 9.87969 21.11C9.55969 20.81 9.31969 20.41 9.17969 20C9.30969 20.02 9.43969 20.03 9.57969 20.05C9.80969 20.08 10.0497 20.11 10.2897 20.13C10.8597 20.18 11.4397 20.21 12.0197 20.21C12.5897 20.21 13.1597 20.18 13.7197 20.13C13.9297 20.11 14.1397 20.1 14.3397 20.07C14.4997 20.05 14.6597 20.03 14.8297 20.01Z",
|
|
180
108
|
fill: "currentColor"
|
|
181
|
-
}
|
|
182
|
-
void 0,
|
|
183
|
-
!1,
|
|
184
|
-
{
|
|
185
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/notification/NotificationBulkIcon.tsx",
|
|
186
|
-
lineNumber: 26,
|
|
187
|
-
columnNumber: 7
|
|
188
|
-
},
|
|
189
|
-
void 0
|
|
109
|
+
}
|
|
190
110
|
)
|
|
191
111
|
]
|
|
192
|
-
}
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/notification/NotificationBulkIcon.tsx",
|
|
197
|
-
lineNumber: 9,
|
|
198
|
-
columnNumber: 5
|
|
199
|
-
},
|
|
200
|
-
void 0
|
|
201
|
-
), a = ({
|
|
202
|
-
color: t,
|
|
203
|
-
size: s = 24
|
|
112
|
+
}
|
|
113
|
+
), s = ({
|
|
114
|
+
color: r,
|
|
115
|
+
size: t = 24
|
|
204
116
|
}) => /* @__PURE__ */ e(
|
|
205
117
|
"svg",
|
|
206
118
|
{
|
|
207
|
-
width:
|
|
208
|
-
height:
|
|
119
|
+
width: t,
|
|
120
|
+
height: t,
|
|
209
121
|
viewBox: "0 0 24 24",
|
|
210
122
|
fill: "none",
|
|
211
123
|
xmlns: "http://www.w3.org/2000/svg",
|
|
212
|
-
style: { color:
|
|
124
|
+
style: { color: r },
|
|
213
125
|
children: [
|
|
214
|
-
/* @__PURE__ */
|
|
126
|
+
/* @__PURE__ */ o(
|
|
215
127
|
"path",
|
|
216
128
|
{
|
|
217
129
|
d: "M12.0196 2.91016C8.7096 2.91016 6.0196 5.60016 6.0196 8.91016V11.8002C6.0196 12.4102 5.7596 13.3402 5.4496 13.8602L4.2996 15.7702C3.5896 16.9502 4.0796 18.2602 5.3796 18.7002C9.6896 20.1402 14.3396 20.1402 18.6496 18.7002C19.8596 18.3002 20.3896 16.8702 19.7296 15.7702L18.5796 13.8602C18.2796 13.3402 18.0196 12.4102 18.0196 11.8002V8.91016C18.0196 5.61016 15.3196 2.91016 12.0196 2.91016Z",
|
|
@@ -219,17 +131,9 @@ const n = ({
|
|
|
219
131
|
"stroke-width": "1.5",
|
|
220
132
|
"stroke-miterlimit": "10",
|
|
221
133
|
"stroke-linecap": "round"
|
|
222
|
-
}
|
|
223
|
-
void 0,
|
|
224
|
-
!1,
|
|
225
|
-
{
|
|
226
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/notification/NotificationLinearIcon.tsx",
|
|
227
|
-
lineNumber: 17,
|
|
228
|
-
columnNumber: 7
|
|
229
|
-
},
|
|
230
|
-
void 0
|
|
134
|
+
}
|
|
231
135
|
),
|
|
232
|
-
/* @__PURE__ */
|
|
136
|
+
/* @__PURE__ */ o(
|
|
233
137
|
"path",
|
|
234
138
|
{
|
|
235
139
|
d: "M13.8699 3.19994C13.5599 3.10994 13.2399 3.03994 12.9099 2.99994C11.9499 2.87994 11.0299 2.94994 10.1699 3.19994C10.4599 2.45994 11.1799 1.93994 12.0199 1.93994C12.8599 1.93994 13.5799 2.45994 13.8699 3.19994Z",
|
|
@@ -238,125 +142,69 @@ const n = ({
|
|
|
238
142
|
"stroke-miterlimit": "10",
|
|
239
143
|
"stroke-linecap": "round",
|
|
240
144
|
"stroke-linejoin": "round"
|
|
241
|
-
}
|
|
242
|
-
void 0,
|
|
243
|
-
!1,
|
|
244
|
-
{
|
|
245
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/notification/NotificationLinearIcon.tsx",
|
|
246
|
-
lineNumber: 24,
|
|
247
|
-
columnNumber: 7
|
|
248
|
-
},
|
|
249
|
-
void 0
|
|
145
|
+
}
|
|
250
146
|
),
|
|
251
|
-
/* @__PURE__ */
|
|
147
|
+
/* @__PURE__ */ o(
|
|
252
148
|
"path",
|
|
253
149
|
{
|
|
254
150
|
d: "M15.0195 19.0601C15.0195 20.7101 13.6695 22.0601 12.0195 22.0601C11.1995 22.0601 10.4395 21.7201 9.89953 21.1801C9.35953 20.6401 9.01953 19.8801 9.01953 19.0601",
|
|
255
151
|
stroke: "currentColor",
|
|
256
152
|
"stroke-width": "1.5",
|
|
257
153
|
"stroke-miterlimit": "10"
|
|
258
|
-
}
|
|
259
|
-
void 0,
|
|
260
|
-
!1,
|
|
261
|
-
{
|
|
262
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/notification/NotificationLinearIcon.tsx",
|
|
263
|
-
lineNumber: 32,
|
|
264
|
-
columnNumber: 7
|
|
265
|
-
},
|
|
266
|
-
void 0
|
|
154
|
+
}
|
|
267
155
|
)
|
|
268
156
|
]
|
|
269
|
-
}
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/notification/NotificationLinearIcon.tsx",
|
|
274
|
-
lineNumber: 9,
|
|
275
|
-
columnNumber: 5
|
|
276
|
-
},
|
|
277
|
-
void 0
|
|
278
|
-
), l = ({
|
|
279
|
-
color: t,
|
|
280
|
-
size: s = 24
|
|
157
|
+
}
|
|
158
|
+
), h = ({
|
|
159
|
+
color: r,
|
|
160
|
+
size: t = 24
|
|
281
161
|
}) => /* @__PURE__ */ e(
|
|
282
162
|
"svg",
|
|
283
163
|
{
|
|
284
|
-
width:
|
|
285
|
-
height:
|
|
164
|
+
width: t,
|
|
165
|
+
height: t,
|
|
286
166
|
viewBox: "0 0 24 24",
|
|
287
167
|
fill: "none",
|
|
288
168
|
xmlns: "http://www.w3.org/2000/svg",
|
|
289
|
-
style: { color:
|
|
169
|
+
style: { color: r },
|
|
290
170
|
children: [
|
|
291
|
-
/* @__PURE__ */
|
|
171
|
+
/* @__PURE__ */ o(
|
|
292
172
|
"path",
|
|
293
173
|
{
|
|
294
174
|
d: "M12.0199 20.5299C9.68987 20.5299 7.35987 20.1599 5.14987 19.4199C4.30987 19.1299 3.66987 18.5399 3.38987 17.7699C3.09987 16.9999 3.19987 16.1499 3.65987 15.3899L4.80987 13.4799C5.04987 13.0799 5.26987 12.2799 5.26987 11.8099V8.91992C5.26987 5.19992 8.29987 2.16992 12.0199 2.16992C15.7399 2.16992 18.7699 5.19992 18.7699 8.91992V11.8099C18.7699 12.2699 18.9899 13.0799 19.2299 13.4899L20.3699 15.3899C20.7999 16.1099 20.8799 16.9799 20.5899 17.7699C20.2999 18.5599 19.6699 19.1599 18.8799 19.4199C16.6799 20.1599 14.3499 20.5299 12.0199 20.5299ZM12.0199 3.66992C9.12987 3.66992 6.76987 6.01992 6.76987 8.91992V11.8099C6.76987 12.5399 6.46987 13.6199 6.09987 14.2499L4.94987 16.1599C4.72987 16.5299 4.66987 16.9199 4.79987 17.2499C4.91987 17.5899 5.21987 17.8499 5.62987 17.9899C9.80987 19.3899 14.2399 19.3899 18.4199 17.9899C18.7799 17.8699 19.0599 17.5999 19.1899 17.2399C19.3199 16.8799 19.2899 16.4899 19.0899 16.1599L17.9399 14.2499C17.5599 13.5999 17.2699 12.5299 17.2699 11.7999V8.91992C17.2699 6.01992 14.9199 3.66992 12.0199 3.66992Z",
|
|
295
175
|
fill: "currentColor"
|
|
296
|
-
}
|
|
297
|
-
void 0,
|
|
298
|
-
!1,
|
|
299
|
-
{
|
|
300
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/notification/NotificationOutlineIcon.tsx",
|
|
301
|
-
lineNumber: 17,
|
|
302
|
-
columnNumber: 7
|
|
303
|
-
},
|
|
304
|
-
void 0
|
|
176
|
+
}
|
|
305
177
|
),
|
|
306
|
-
/* @__PURE__ */
|
|
178
|
+
/* @__PURE__ */ o(
|
|
307
179
|
"path",
|
|
308
180
|
{
|
|
309
181
|
d: "M13.8796 3.94018C13.8096 3.94018 13.7396 3.93018 13.6696 3.91018C13.3796 3.83018 13.0996 3.77018 12.8296 3.73018C11.9796 3.62018 11.1596 3.68018 10.3896 3.91018C10.1096 4.00018 9.80963 3.91018 9.61963 3.70018C9.42963 3.49018 9.36963 3.19018 9.47963 2.92018C9.88963 1.87018 10.8896 1.18018 12.0296 1.18018C13.1696 1.18018 14.1696 1.86018 14.5796 2.92018C14.6796 3.19018 14.6296 3.49018 14.4396 3.70018C14.2896 3.86018 14.0796 3.94018 13.8796 3.94018Z",
|
|
310
182
|
fill: "currentColor"
|
|
311
|
-
}
|
|
312
|
-
void 0,
|
|
313
|
-
!1,
|
|
314
|
-
{
|
|
315
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/notification/NotificationOutlineIcon.tsx",
|
|
316
|
-
lineNumber: 21,
|
|
317
|
-
columnNumber: 7
|
|
318
|
-
},
|
|
319
|
-
void 0
|
|
183
|
+
}
|
|
320
184
|
),
|
|
321
|
-
/* @__PURE__ */
|
|
185
|
+
/* @__PURE__ */ o(
|
|
322
186
|
"path",
|
|
323
187
|
{
|
|
324
188
|
d: "M12.0195 22.8101C11.0295 22.8101 10.0695 22.4101 9.36953 21.7101C8.66953 21.0101 8.26953 20.0501 8.26953 19.0601H9.76953C9.76953 19.6501 10.0095 20.2301 10.4295 20.6501C10.8495 21.0701 11.4295 21.3101 12.0195 21.3101C13.2595 21.3101 14.2695 20.3001 14.2695 19.0601H15.7695C15.7695 21.1301 14.0895 22.8101 12.0195 22.8101Z",
|
|
325
189
|
fill: "currentColor"
|
|
326
|
-
}
|
|
327
|
-
void 0,
|
|
328
|
-
!1,
|
|
329
|
-
{
|
|
330
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/notification/NotificationOutlineIcon.tsx",
|
|
331
|
-
lineNumber: 25,
|
|
332
|
-
columnNumber: 7
|
|
333
|
-
},
|
|
334
|
-
void 0
|
|
190
|
+
}
|
|
335
191
|
)
|
|
336
192
|
]
|
|
337
|
-
}
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/notification/NotificationOutlineIcon.tsx",
|
|
342
|
-
lineNumber: 9,
|
|
343
|
-
columnNumber: 5
|
|
344
|
-
},
|
|
345
|
-
void 0
|
|
346
|
-
), c = ({
|
|
347
|
-
color: t,
|
|
348
|
-
size: s = 24
|
|
193
|
+
}
|
|
194
|
+
), d = ({
|
|
195
|
+
color: r,
|
|
196
|
+
size: t = 24
|
|
349
197
|
}) => /* @__PURE__ */ e(
|
|
350
198
|
"svg",
|
|
351
199
|
{
|
|
352
|
-
width:
|
|
353
|
-
height:
|
|
200
|
+
width: t,
|
|
201
|
+
height: t,
|
|
354
202
|
viewBox: "0 0 24 24",
|
|
355
203
|
fill: "none",
|
|
356
204
|
xmlns: "http://www.w3.org/2000/svg",
|
|
357
|
-
style: { color:
|
|
205
|
+
style: { color: r },
|
|
358
206
|
children: [
|
|
359
|
-
/* @__PURE__ */
|
|
207
|
+
/* @__PURE__ */ o(
|
|
360
208
|
"path",
|
|
361
209
|
{
|
|
362
210
|
d: "M12.0196 2.91016C8.7096 2.91016 6.0196 5.60016 6.0196 8.91016V11.8002C6.0196 12.4102 5.7596 13.3402 5.4496 13.8602L4.2996 15.7702C3.5896 16.9502 4.0796 18.2602 5.3796 18.7002C9.6896 20.1402 14.3396 20.1402 18.6496 18.7002C19.8596 18.3002 20.3896 16.8702 19.7296 15.7702L18.5796 13.8602C18.2796 13.3402 18.0196 12.4102 18.0196 11.8002V8.91016C18.0196 5.61016 15.3196 2.91016 12.0196 2.91016Z",
|
|
@@ -364,17 +212,9 @@ const n = ({
|
|
|
364
212
|
"stroke-width": "1.5",
|
|
365
213
|
"stroke-miterlimit": "10",
|
|
366
214
|
"stroke-linecap": "round"
|
|
367
|
-
}
|
|
368
|
-
void 0,
|
|
369
|
-
!1,
|
|
370
|
-
{
|
|
371
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/notification/NotificationTwotoneIcon.tsx",
|
|
372
|
-
lineNumber: 17,
|
|
373
|
-
columnNumber: 7
|
|
374
|
-
},
|
|
375
|
-
void 0
|
|
215
|
+
}
|
|
376
216
|
),
|
|
377
|
-
/* @__PURE__ */
|
|
217
|
+
/* @__PURE__ */ o(
|
|
378
218
|
"path",
|
|
379
219
|
{
|
|
380
220
|
d: "M13.8699 3.19994C13.5599 3.10994 13.2399 3.03994 12.9099 2.99994C11.9499 2.87994 11.0299 2.94994 10.1699 3.19994C10.4599 2.45994 11.1799 1.93994 12.0199 1.93994C12.8599 1.93994 13.5799 2.45994 13.8699 3.19994Z",
|
|
@@ -383,17 +223,9 @@ const n = ({
|
|
|
383
223
|
"stroke-miterlimit": "10",
|
|
384
224
|
"stroke-linecap": "round",
|
|
385
225
|
"stroke-linejoin": "round"
|
|
386
|
-
}
|
|
387
|
-
void 0,
|
|
388
|
-
!1,
|
|
389
|
-
{
|
|
390
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/notification/NotificationTwotoneIcon.tsx",
|
|
391
|
-
lineNumber: 24,
|
|
392
|
-
columnNumber: 7
|
|
393
|
-
},
|
|
394
|
-
void 0
|
|
226
|
+
}
|
|
395
227
|
),
|
|
396
|
-
/* @__PURE__ */
|
|
228
|
+
/* @__PURE__ */ o(
|
|
397
229
|
"path",
|
|
398
230
|
{
|
|
399
231
|
opacity: "0.4",
|
|
@@ -401,75 +233,43 @@ const n = ({
|
|
|
401
233
|
stroke: "currentColor",
|
|
402
234
|
"stroke-width": "1.5",
|
|
403
235
|
"stroke-miterlimit": "10"
|
|
404
|
-
}
|
|
405
|
-
void 0,
|
|
406
|
-
!1,
|
|
407
|
-
{
|
|
408
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/notification/NotificationTwotoneIcon.tsx",
|
|
409
|
-
lineNumber: 32,
|
|
410
|
-
columnNumber: 7
|
|
411
|
-
},
|
|
412
|
-
void 0
|
|
236
|
+
}
|
|
413
237
|
)
|
|
414
238
|
]
|
|
415
|
-
}
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
lineNumber: 9,
|
|
421
|
-
columnNumber: 5
|
|
422
|
-
},
|
|
423
|
-
void 0
|
|
424
|
-
), u = ({
|
|
425
|
-
color: t,
|
|
426
|
-
size: s = 24
|
|
427
|
-
}) => /* @__PURE__ */ e(
|
|
239
|
+
}
|
|
240
|
+
), c = ({
|
|
241
|
+
color: r,
|
|
242
|
+
size: t = 24
|
|
243
|
+
}) => /* @__PURE__ */ o(
|
|
428
244
|
"svg",
|
|
429
245
|
{
|
|
430
|
-
width:
|
|
431
|
-
height:
|
|
246
|
+
width: t,
|
|
247
|
+
height: t,
|
|
432
248
|
viewBox: "0 0 24 24",
|
|
433
249
|
fill: "none",
|
|
434
250
|
xmlns: "http://www.w3.org/2000/svg",
|
|
435
|
-
style: { color:
|
|
436
|
-
children: /* @__PURE__ */
|
|
251
|
+
style: { color: r },
|
|
252
|
+
children: /* @__PURE__ */ o(
|
|
437
253
|
"path",
|
|
438
254
|
{
|
|
439
255
|
d: "M21.07 5.23c-1.61-.16-3.22-.28-4.84-.37v-.01l-.22-1.3c-.15-.92-.37-2.3-2.71-2.3h-2.62c-2.33 0-2.55 1.32-2.71 2.29l-.21 1.28c-.93.06-1.86.12-2.79.21l-2.04.2c-.42.04-.72.41-.68.82.04.41.4.71.82.67l2.04-.2c5.24-.52 10.52-.32 15.82.21h.08c.38 0 .71-.29.75-.68a.766.766 0 0 0-.69-.82ZM19.23 8.14c-.24-.25-.57-.39-.91-.39H5.68c-.34 0-.68.14-.91.39-.23.25-.36.59-.34.94l.62 10.26c.11 1.52.25 3.42 3.74 3.42h6.42c3.49 0 3.63-1.89 3.74-3.42l.62-10.25c.02-.36-.11-.7-.34-.95Zm-5.57 9.61h-3.33c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h3.33c.41 0 .75.34.75.75s-.34.75-.75.75Zm.84-4h-5c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h5c.41 0 .75.34.75.75s-.34.75-.75.75Z",
|
|
440
256
|
fill: "currentColor"
|
|
441
|
-
}
|
|
442
|
-
void 0,
|
|
443
|
-
!1,
|
|
444
|
-
{
|
|
445
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/trash/TrashBoldIcon.tsx",
|
|
446
|
-
lineNumber: 16,
|
|
447
|
-
columnNumber: 5
|
|
448
|
-
},
|
|
449
|
-
void 0
|
|
257
|
+
}
|
|
450
258
|
)
|
|
451
|
-
}
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
lineNumber: 8,
|
|
457
|
-
columnNumber: 3
|
|
458
|
-
},
|
|
459
|
-
void 0
|
|
460
|
-
), d = ({
|
|
461
|
-
color: t,
|
|
462
|
-
size: s = 24
|
|
463
|
-
}) => /* @__PURE__ */ e(
|
|
259
|
+
}
|
|
260
|
+
), k = ({
|
|
261
|
+
color: r,
|
|
262
|
+
size: t = 24
|
|
263
|
+
}) => /* @__PURE__ */ o(
|
|
464
264
|
"svg",
|
|
465
265
|
{
|
|
466
|
-
width:
|
|
467
|
-
height:
|
|
266
|
+
width: t,
|
|
267
|
+
height: t,
|
|
468
268
|
viewBox: "0 0 24 24",
|
|
469
269
|
fill: "none",
|
|
470
270
|
xmlns: "http://www.w3.org/2000/svg",
|
|
471
|
-
style: { color:
|
|
472
|
-
children: /* @__PURE__ */
|
|
271
|
+
style: { color: r },
|
|
272
|
+
children: /* @__PURE__ */ o(
|
|
473
273
|
"path",
|
|
474
274
|
{
|
|
475
275
|
d: "M21 5.98c-3.33-.33-6.68-.5-10.02-.5-1.98 0-3.96.1-5.94.3L3 5.98M8.5 4.97l.22-1.31C8.88 2.71 9 2 10.69 2h2.62c1.69 0 1.82.75 1.97 1.67l.22 1.3M15.21 22H8.79C6 22 5.91 20.78 5.8 19.21L5.15 9.14M18.85 9.14l-.65 10.07M10.33 16.5h3.33M12.82 12.5h1.68M9.5 12.5h.83",
|
|
@@ -477,109 +277,61 @@ const n = ({
|
|
|
477
277
|
strokeWidth: 1.5,
|
|
478
278
|
strokeLinecap: "round",
|
|
479
279
|
strokeLinejoin: "round"
|
|
480
|
-
}
|
|
481
|
-
void 0,
|
|
482
|
-
!1,
|
|
483
|
-
{
|
|
484
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/trash/TrashBrokenIcon.tsx",
|
|
485
|
-
lineNumber: 16,
|
|
486
|
-
columnNumber: 5
|
|
487
|
-
},
|
|
488
|
-
void 0
|
|
280
|
+
}
|
|
489
281
|
)
|
|
490
|
-
}
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/trash/TrashBrokenIcon.tsx",
|
|
495
|
-
lineNumber: 8,
|
|
496
|
-
columnNumber: 3
|
|
497
|
-
},
|
|
498
|
-
void 0
|
|
499
|
-
), m = ({
|
|
500
|
-
color: t,
|
|
501
|
-
size: s = 24
|
|
282
|
+
}
|
|
283
|
+
), u = ({
|
|
284
|
+
color: r,
|
|
285
|
+
size: t = 24
|
|
502
286
|
}) => /* @__PURE__ */ e(
|
|
503
287
|
"svg",
|
|
504
288
|
{
|
|
505
|
-
width:
|
|
506
|
-
height:
|
|
289
|
+
width: t,
|
|
290
|
+
height: t,
|
|
507
291
|
viewBox: "0 0 24 24",
|
|
508
292
|
fill: "none",
|
|
509
293
|
xmlns: "http://www.w3.org/2000/svg",
|
|
510
|
-
style: { color:
|
|
294
|
+
style: { color: r },
|
|
511
295
|
children: [
|
|
512
|
-
/* @__PURE__ */
|
|
296
|
+
/* @__PURE__ */ o(
|
|
513
297
|
"path",
|
|
514
298
|
{
|
|
515
299
|
d: "M21.07 5.23c-1.61-.16-3.22-.28-4.84-.37v-.01l-.22-1.3c-.15-.92-.37-2.3-2.71-2.3h-2.62c-2.33 0-2.55 1.32-2.71 2.29l-.21 1.28c-.93.06-1.86.12-2.79.21l-2.04.2c-.42.04-.72.41-.68.82.04.41.4.71.82.67l2.04-.2c5.24-.52 10.52-.32 15.82.21h.08c.38 0 .71-.29.75-.68a.766.766 0 0 0-.69-.82Z",
|
|
516
300
|
fill: "currentColor"
|
|
517
|
-
}
|
|
518
|
-
void 0,
|
|
519
|
-
!1,
|
|
520
|
-
{
|
|
521
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/trash/TrashBulkIcon.tsx",
|
|
522
|
-
lineNumber: 16,
|
|
523
|
-
columnNumber: 5
|
|
524
|
-
},
|
|
525
|
-
void 0
|
|
301
|
+
}
|
|
526
302
|
),
|
|
527
|
-
/* @__PURE__ */
|
|
303
|
+
/* @__PURE__ */ o(
|
|
528
304
|
"path",
|
|
529
305
|
{
|
|
530
306
|
opacity: 0.399,
|
|
531
307
|
d: "M19.23 8.14c-.24-.25-.57-.39-.91-.39H5.68c-.34 0-.68.14-.91.39-.23.25-.36.59-.34.94l.62 10.26c.11 1.52.25 3.42 3.74 3.42h6.42c3.49 0 3.63-1.89 3.74-3.42l.62-10.25c.02-.36-.11-.7-.34-.95Z",
|
|
532
308
|
fill: "currentColor"
|
|
533
|
-
}
|
|
534
|
-
void 0,
|
|
535
|
-
!1,
|
|
536
|
-
{
|
|
537
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/trash/TrashBulkIcon.tsx",
|
|
538
|
-
lineNumber: 20,
|
|
539
|
-
columnNumber: 5
|
|
540
|
-
},
|
|
541
|
-
void 0
|
|
309
|
+
}
|
|
542
310
|
),
|
|
543
|
-
/* @__PURE__ */
|
|
311
|
+
/* @__PURE__ */ o(
|
|
544
312
|
"path",
|
|
545
313
|
{
|
|
546
314
|
fillRule: "evenodd",
|
|
547
315
|
clipRule: "evenodd",
|
|
548
316
|
d: "M9.58 17a.75.75 0 0 1 .75-.75h3.33a.75.75 0 0 1 0 1.5h-3.33a.75.75 0 0 1-.75-.75ZM8.75 13a.75.75 0 0 1 .75-.75h5a.75.75 0 0 1 0 1.5h-5a.75.75 0 0 1-.75-.75Z",
|
|
549
317
|
fill: "currentColor"
|
|
550
|
-
}
|
|
551
|
-
void 0,
|
|
552
|
-
!1,
|
|
553
|
-
{
|
|
554
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/trash/TrashBulkIcon.tsx",
|
|
555
|
-
lineNumber: 25,
|
|
556
|
-
columnNumber: 5
|
|
557
|
-
},
|
|
558
|
-
void 0
|
|
318
|
+
}
|
|
559
319
|
)
|
|
560
320
|
]
|
|
561
|
-
}
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
lineNumber: 8,
|
|
567
|
-
columnNumber: 3
|
|
568
|
-
},
|
|
569
|
-
void 0
|
|
570
|
-
), h = ({
|
|
571
|
-
color: t,
|
|
572
|
-
size: s = 24
|
|
573
|
-
}) => /* @__PURE__ */ e(
|
|
321
|
+
}
|
|
322
|
+
), a = ({
|
|
323
|
+
color: r,
|
|
324
|
+
size: t = 24
|
|
325
|
+
}) => /* @__PURE__ */ o(
|
|
574
326
|
"svg",
|
|
575
327
|
{
|
|
576
|
-
width:
|
|
577
|
-
height:
|
|
328
|
+
width: t,
|
|
329
|
+
height: t,
|
|
578
330
|
viewBox: "0 0 24 24",
|
|
579
331
|
fill: "none",
|
|
580
332
|
xmlns: "http://www.w3.org/2000/svg",
|
|
581
|
-
style: { color:
|
|
582
|
-
children: /* @__PURE__ */
|
|
333
|
+
style: { color: r },
|
|
334
|
+
children: /* @__PURE__ */ o(
|
|
583
335
|
"path",
|
|
584
336
|
{
|
|
585
337
|
d: "M21 5.98c-3.33-.33-6.68-.5-10.02-.5-1.98 0-3.96.1-5.94.3L3 5.98M8.5 4.97l.22-1.31C8.88 2.71 9 2 10.69 2h2.62c1.69 0 1.82.75 1.97 1.67l.22 1.3M18.85 9.14l-.65 10.07C18.09 20.78 18 22 15.21 22H8.79C6 22 5.91 20.78 5.8 19.21L5.15 9.14M10.33 16.5h3.33M9.5 12.5h5",
|
|
@@ -587,107 +339,59 @@ const n = ({
|
|
|
587
339
|
strokeWidth: 1.5,
|
|
588
340
|
strokeLinecap: "round",
|
|
589
341
|
strokeLinejoin: "round"
|
|
590
|
-
}
|
|
591
|
-
void 0,
|
|
592
|
-
!1,
|
|
593
|
-
{
|
|
594
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/trash/TrashLinearIcon.tsx",
|
|
595
|
-
lineNumber: 16,
|
|
596
|
-
columnNumber: 5
|
|
597
|
-
},
|
|
598
|
-
void 0
|
|
342
|
+
}
|
|
599
343
|
)
|
|
600
|
-
}
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/trash/TrashLinearIcon.tsx",
|
|
605
|
-
lineNumber: 8,
|
|
606
|
-
columnNumber: 3
|
|
607
|
-
},
|
|
608
|
-
void 0
|
|
609
|
-
), C = ({
|
|
610
|
-
color: t,
|
|
611
|
-
size: s = 24
|
|
344
|
+
}
|
|
345
|
+
), p = ({
|
|
346
|
+
color: r,
|
|
347
|
+
size: t = 24
|
|
612
348
|
}) => /* @__PURE__ */ e(
|
|
613
349
|
"svg",
|
|
614
350
|
{
|
|
615
|
-
width:
|
|
616
|
-
height:
|
|
351
|
+
width: t,
|
|
352
|
+
height: t,
|
|
617
353
|
viewBox: "0 0 24 24",
|
|
618
354
|
fill: "none",
|
|
619
355
|
xmlns: "http://www.w3.org/2000/svg",
|
|
620
|
-
style: { color:
|
|
356
|
+
style: { color: r },
|
|
621
357
|
children: [
|
|
622
|
-
/* @__PURE__ */
|
|
358
|
+
/* @__PURE__ */ o(
|
|
623
359
|
"path",
|
|
624
360
|
{
|
|
625
361
|
d: "M21 6.73h-.08c-5.29-.53-10.57-.73-15.8-.2l-2.04.2a.755.755 0 0 1-.83-.68c-.04-.42.26-.78.67-.82l2.04-.2c5.32-.54 10.71-.33 16.11.2.41.04.71.41.67.82a.74.74 0 0 1-.74.68Z",
|
|
626
362
|
fill: "currentColor"
|
|
627
|
-
}
|
|
628
|
-
void 0,
|
|
629
|
-
!1,
|
|
630
|
-
{
|
|
631
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/trash/TrashOutlineIcon.tsx",
|
|
632
|
-
lineNumber: 16,
|
|
633
|
-
columnNumber: 5
|
|
634
|
-
},
|
|
635
|
-
void 0
|
|
363
|
+
}
|
|
636
364
|
),
|
|
637
|
-
/* @__PURE__ */
|
|
365
|
+
/* @__PURE__ */ o(
|
|
638
366
|
"path",
|
|
639
367
|
{
|
|
640
368
|
d: "M8.5 5.72c-.04 0-.08 0-.13-.01a.753.753 0 0 1-.61-.86l.22-1.31c.16-.96.38-2.29 2.71-2.29h2.62c2.34 0 2.56 1.38 2.71 2.3l.22 1.3c.07.41-.21.8-.61.86-.41.07-.8-.21-.86-.61l-.22-1.3c-.14-.87-.17-1.04-1.23-1.04H10.7c-1.06 0-1.08.14-1.23 1.03l-.23 1.3a.75.75 0 0 1-.74.63ZM15.21 22.75H8.79c-3.49 0-3.63-1.93-3.74-3.49L4.4 9.19c-.03-.41.29-.77.7-.8.42-.02.77.29.8.7l.65 10.07c.11 1.52.15 2.09 2.24 2.09h6.42c2.1 0 2.14-.57 2.24-2.09l.65-10.07c.03-.41.39-.72.8-.7.41.03.73.38.7.8l-.65 10.07c-.11 1.56-.25 3.49-3.74 3.49Z",
|
|
641
369
|
fill: "currentColor"
|
|
642
|
-
}
|
|
643
|
-
void 0,
|
|
644
|
-
!1,
|
|
645
|
-
{
|
|
646
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/trash/TrashOutlineIcon.tsx",
|
|
647
|
-
lineNumber: 20,
|
|
648
|
-
columnNumber: 5
|
|
649
|
-
},
|
|
650
|
-
void 0
|
|
370
|
+
}
|
|
651
371
|
),
|
|
652
|
-
/* @__PURE__ */
|
|
372
|
+
/* @__PURE__ */ o(
|
|
653
373
|
"path",
|
|
654
374
|
{
|
|
655
375
|
d: "M13.66 17.25h-3.33c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h3.33c.41 0 .75.34.75.75s-.34.75-.75.75ZM14.5 13.25h-5c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h5c.41 0 .75.34.75.75s-.34.75-.75.75Z",
|
|
656
376
|
fill: "currentColor"
|
|
657
|
-
}
|
|
658
|
-
void 0,
|
|
659
|
-
!1,
|
|
660
|
-
{
|
|
661
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/trash/TrashOutlineIcon.tsx",
|
|
662
|
-
lineNumber: 24,
|
|
663
|
-
columnNumber: 5
|
|
664
|
-
},
|
|
665
|
-
void 0
|
|
377
|
+
}
|
|
666
378
|
)
|
|
667
379
|
]
|
|
668
|
-
}
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/trash/TrashOutlineIcon.tsx",
|
|
673
|
-
lineNumber: 8,
|
|
674
|
-
columnNumber: 3
|
|
675
|
-
},
|
|
676
|
-
void 0
|
|
677
|
-
), f = ({
|
|
678
|
-
color: t,
|
|
679
|
-
size: s = 24
|
|
380
|
+
}
|
|
381
|
+
), w = ({
|
|
382
|
+
color: r,
|
|
383
|
+
size: t = 24
|
|
680
384
|
}) => /* @__PURE__ */ e(
|
|
681
385
|
"svg",
|
|
682
386
|
{
|
|
683
|
-
width:
|
|
684
|
-
height:
|
|
387
|
+
width: t,
|
|
388
|
+
height: t,
|
|
685
389
|
viewBox: "0 0 24 24",
|
|
686
390
|
fill: "none",
|
|
687
391
|
xmlns: "http://www.w3.org/2000/svg",
|
|
688
|
-
style: { color:
|
|
392
|
+
style: { color: r },
|
|
689
393
|
children: [
|
|
690
|
-
/* @__PURE__ */
|
|
394
|
+
/* @__PURE__ */ o(
|
|
691
395
|
"path",
|
|
692
396
|
{
|
|
693
397
|
d: "M21 5.98c-3.33-.33-6.68-.5-10.02-.5-1.98 0-3.96.1-5.94.3L3 5.98",
|
|
@@ -695,17 +399,9 @@ const n = ({
|
|
|
695
399
|
strokeWidth: 1.5,
|
|
696
400
|
strokeLinecap: "round",
|
|
697
401
|
strokeLinejoin: "round"
|
|
698
|
-
}
|
|
699
|
-
void 0,
|
|
700
|
-
!1,
|
|
701
|
-
{
|
|
702
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/trash/TrashTwotoneIcon.tsx",
|
|
703
|
-
lineNumber: 16,
|
|
704
|
-
columnNumber: 5
|
|
705
|
-
},
|
|
706
|
-
void 0
|
|
402
|
+
}
|
|
707
403
|
),
|
|
708
|
-
/* @__PURE__ */
|
|
404
|
+
/* @__PURE__ */ o(
|
|
709
405
|
"path",
|
|
710
406
|
{
|
|
711
407
|
opacity: 0.34,
|
|
@@ -714,17 +410,9 @@ const n = ({
|
|
|
714
410
|
strokeWidth: 1.5,
|
|
715
411
|
strokeLinecap: "round",
|
|
716
412
|
strokeLinejoin: "round"
|
|
717
|
-
}
|
|
718
|
-
void 0,
|
|
719
|
-
!1,
|
|
720
|
-
{
|
|
721
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/trash/TrashTwotoneIcon.tsx",
|
|
722
|
-
lineNumber: 23,
|
|
723
|
-
columnNumber: 5
|
|
724
|
-
},
|
|
725
|
-
void 0
|
|
413
|
+
}
|
|
726
414
|
),
|
|
727
|
-
/* @__PURE__ */
|
|
415
|
+
/* @__PURE__ */ o(
|
|
728
416
|
"path",
|
|
729
417
|
{
|
|
730
418
|
d: "m18.85 9.14-.65 10.07C18.09 20.78 18 22 15.21 22H8.79C6 22 5.91 20.78 5.8 19.21L5.15 9.14",
|
|
@@ -732,17 +420,9 @@ const n = ({
|
|
|
732
420
|
strokeWidth: 1.5,
|
|
733
421
|
strokeLinecap: "round",
|
|
734
422
|
strokeLinejoin: "round"
|
|
735
|
-
}
|
|
736
|
-
void 0,
|
|
737
|
-
!1,
|
|
738
|
-
{
|
|
739
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/trash/TrashTwotoneIcon.tsx",
|
|
740
|
-
lineNumber: 31,
|
|
741
|
-
columnNumber: 5
|
|
742
|
-
},
|
|
743
|
-
void 0
|
|
423
|
+
}
|
|
744
424
|
),
|
|
745
|
-
/* @__PURE__ */
|
|
425
|
+
/* @__PURE__ */ o(
|
|
746
426
|
"path",
|
|
747
427
|
{
|
|
748
428
|
opacity: 0.34,
|
|
@@ -751,93 +431,53 @@ const n = ({
|
|
|
751
431
|
strokeWidth: 1.5,
|
|
752
432
|
strokeLinecap: "round",
|
|
753
433
|
strokeLinejoin: "round"
|
|
754
|
-
}
|
|
755
|
-
void 0,
|
|
756
|
-
!1,
|
|
757
|
-
{
|
|
758
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/trash/TrashTwotoneIcon.tsx",
|
|
759
|
-
lineNumber: 38,
|
|
760
|
-
columnNumber: 5
|
|
761
|
-
},
|
|
762
|
-
void 0
|
|
434
|
+
}
|
|
763
435
|
)
|
|
764
436
|
]
|
|
765
|
-
}
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/trash/TrashTwotoneIcon.tsx",
|
|
770
|
-
lineNumber: 8,
|
|
771
|
-
columnNumber: 3
|
|
772
|
-
},
|
|
773
|
-
void 0
|
|
774
|
-
), p = ({
|
|
775
|
-
color: t,
|
|
776
|
-
size: s = 24
|
|
437
|
+
}
|
|
438
|
+
), L = ({
|
|
439
|
+
color: r,
|
|
440
|
+
size: t = 24
|
|
777
441
|
}) => /* @__PURE__ */ e(
|
|
778
442
|
"svg",
|
|
779
443
|
{
|
|
780
|
-
width:
|
|
781
|
-
height:
|
|
444
|
+
width: t,
|
|
445
|
+
height: t,
|
|
782
446
|
viewBox: "0 0 24 24",
|
|
783
447
|
fill: "none",
|
|
784
448
|
xmlns: "http://www.w3.org/2000/svg",
|
|
785
|
-
style: { color:
|
|
449
|
+
style: { color: r },
|
|
786
450
|
children: [
|
|
787
|
-
/* @__PURE__ */
|
|
451
|
+
/* @__PURE__ */ o(
|
|
788
452
|
"path",
|
|
789
453
|
{
|
|
790
454
|
d: "M12.93 4.79001H7.35C3.25 4.79001 2 6.04001 2 10.14V13.86C2 17.96 3.25 19.21 7.35 19.21H12.93C17.03 19.21 18.28 17.96 18.28 13.86V10.14C18.28 6.04001 17.03 4.79001 12.93 4.79001Z",
|
|
791
455
|
fill: "currentColor"
|
|
792
|
-
}
|
|
793
|
-
void 0,
|
|
794
|
-
!1,
|
|
795
|
-
{
|
|
796
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/battery-empty/BatteryEmptyBoldIcon.tsx",
|
|
797
|
-
lineNumber: 16,
|
|
798
|
-
columnNumber: 5
|
|
799
|
-
},
|
|
800
|
-
void 0
|
|
456
|
+
}
|
|
801
457
|
),
|
|
802
|
-
/* @__PURE__ */
|
|
458
|
+
/* @__PURE__ */ o(
|
|
803
459
|
"path",
|
|
804
460
|
{
|
|
805
461
|
d: "M20.42 9.00001C20.28 8.99001 20.1 8.98001 19.9 8.98001C19.51 8.98001 19.2 9.29001 19.2 9.68001V14.33C19.2 14.72 19.51 15.03 19.9 15.03C20.1 15.03 20.27 15.02 20.44 15.01C22 14.83 22 13.73 22 12.93V11.07C22 10.27 22 9.17001 20.42 9.00001Z",
|
|
806
462
|
fill: "currentColor"
|
|
807
|
-
}
|
|
808
|
-
void 0,
|
|
809
|
-
!1,
|
|
810
|
-
{
|
|
811
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/battery-empty/BatteryEmptyBoldIcon.tsx",
|
|
812
|
-
lineNumber: 20,
|
|
813
|
-
columnNumber: 5
|
|
814
|
-
},
|
|
815
|
-
void 0
|
|
463
|
+
}
|
|
816
464
|
)
|
|
817
465
|
]
|
|
818
|
-
}
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/battery-empty/BatteryEmptyBoldIcon.tsx",
|
|
823
|
-
lineNumber: 8,
|
|
824
|
-
columnNumber: 3
|
|
825
|
-
},
|
|
826
|
-
void 0
|
|
827
|
-
), k = ({
|
|
828
|
-
color: t,
|
|
829
|
-
size: s = 24
|
|
466
|
+
}
|
|
467
|
+
), g = ({
|
|
468
|
+
color: r,
|
|
469
|
+
size: t = 24
|
|
830
470
|
}) => /* @__PURE__ */ e(
|
|
831
471
|
"svg",
|
|
832
472
|
{
|
|
833
|
-
width:
|
|
834
|
-
height:
|
|
473
|
+
width: t,
|
|
474
|
+
height: t,
|
|
835
475
|
viewBox: "0 0 24 24",
|
|
836
476
|
fill: "none",
|
|
837
477
|
xmlns: "http://www.w3.org/2000/svg",
|
|
838
|
-
style: { color:
|
|
478
|
+
style: { color: r },
|
|
839
479
|
children: [
|
|
840
|
-
/* @__PURE__ */
|
|
480
|
+
/* @__PURE__ */ o(
|
|
841
481
|
"path",
|
|
842
482
|
{
|
|
843
483
|
d: "M10.97 5H13C17 5 18 6 18 10V14C18 16 17.75 17.25 17 18C16.25 18.75 15 19 13 19H7C3 19 2 18 2 14V10C2 6 3 5 7 5",
|
|
@@ -845,17 +485,9 @@ const n = ({
|
|
|
845
485
|
strokeWidth: 1.5,
|
|
846
486
|
strokeLinecap: "round",
|
|
847
487
|
strokeLinejoin: "round"
|
|
848
|
-
}
|
|
849
|
-
void 0,
|
|
850
|
-
!1,
|
|
851
|
-
{
|
|
852
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/battery-empty/BatteryEmptyBrokenIcon.tsx",
|
|
853
|
-
lineNumber: 16,
|
|
854
|
-
columnNumber: 5
|
|
855
|
-
},
|
|
856
|
-
void 0
|
|
488
|
+
}
|
|
857
489
|
),
|
|
858
|
-
/* @__PURE__ */
|
|
490
|
+
/* @__PURE__ */ o(
|
|
859
491
|
"path",
|
|
860
492
|
{
|
|
861
493
|
d: "M20.5 9.5C21.36 9.5 21.73 9.66 21.88 9.99C22 10.24 22 10.57 22 11V12V13C22 14 22 14.5 20.5 14.5",
|
|
@@ -863,94 +495,54 @@ const n = ({
|
|
|
863
495
|
strokeWidth: 1.5,
|
|
864
496
|
strokeLinecap: "round",
|
|
865
497
|
strokeLinejoin: "round"
|
|
866
|
-
}
|
|
867
|
-
void 0,
|
|
868
|
-
!1,
|
|
869
|
-
{
|
|
870
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/battery-empty/BatteryEmptyBrokenIcon.tsx",
|
|
871
|
-
lineNumber: 23,
|
|
872
|
-
columnNumber: 5
|
|
873
|
-
},
|
|
874
|
-
void 0
|
|
498
|
+
}
|
|
875
499
|
)
|
|
876
500
|
]
|
|
877
|
-
}
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/battery-empty/BatteryEmptyBrokenIcon.tsx",
|
|
882
|
-
lineNumber: 8,
|
|
883
|
-
columnNumber: 3
|
|
884
|
-
},
|
|
885
|
-
void 0
|
|
886
|
-
), N = ({
|
|
887
|
-
color: t,
|
|
888
|
-
size: s = 24
|
|
501
|
+
}
|
|
502
|
+
), M = ({
|
|
503
|
+
color: r,
|
|
504
|
+
size: t = 24
|
|
889
505
|
}) => /* @__PURE__ */ e(
|
|
890
506
|
"svg",
|
|
891
507
|
{
|
|
892
|
-
width:
|
|
893
|
-
height:
|
|
508
|
+
width: t,
|
|
509
|
+
height: t,
|
|
894
510
|
viewBox: "0 0 24 24",
|
|
895
511
|
fill: "none",
|
|
896
512
|
xmlns: "http://www.w3.org/2000/svg",
|
|
897
|
-
style: { color:
|
|
513
|
+
style: { color: r },
|
|
898
514
|
children: [
|
|
899
|
-
/* @__PURE__ */
|
|
515
|
+
/* @__PURE__ */ o(
|
|
900
516
|
"path",
|
|
901
517
|
{
|
|
902
518
|
opacity: "0.4",
|
|
903
519
|
d: "M12.93 4.79001H7.35C3.25 4.79001 2 6.04001 2 10.14V13.86C2 17.96 3.25 19.21 7.35 19.21H12.93C17.03 19.21 18.28 17.96 18.28 13.86V10.14C18.28 6.04001 17.03 4.79001 12.93 4.79001Z",
|
|
904
520
|
fill: "currentColor"
|
|
905
|
-
}
|
|
906
|
-
void 0,
|
|
907
|
-
!1,
|
|
908
|
-
{
|
|
909
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/battery-empty/BatteryEmptyBulkIcon.tsx",
|
|
910
|
-
lineNumber: 16,
|
|
911
|
-
columnNumber: 5
|
|
912
|
-
},
|
|
913
|
-
void 0
|
|
521
|
+
}
|
|
914
522
|
),
|
|
915
|
-
/* @__PURE__ */
|
|
523
|
+
/* @__PURE__ */ o(
|
|
916
524
|
"path",
|
|
917
525
|
{
|
|
918
526
|
d: "M20.42 9.00001C20.28 8.99001 20.1 8.98001 19.9 8.98001C19.51 8.98001 19.2 9.29001 19.2 9.68001V14.33C19.2 14.72 19.51 15.03 19.9 15.03C20.1 15.03 20.27 15.02 20.44 15.01C22 14.83 22 13.73 22 12.93V11.07C22 10.27 22 9.17001 20.42 9.00001Z",
|
|
919
527
|
fill: "currentColor"
|
|
920
|
-
}
|
|
921
|
-
void 0,
|
|
922
|
-
!1,
|
|
923
|
-
{
|
|
924
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/battery-empty/BatteryEmptyBulkIcon.tsx",
|
|
925
|
-
lineNumber: 21,
|
|
926
|
-
columnNumber: 5
|
|
927
|
-
},
|
|
928
|
-
void 0
|
|
528
|
+
}
|
|
929
529
|
)
|
|
930
530
|
]
|
|
931
|
-
}
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/battery-empty/BatteryEmptyBulkIcon.tsx",
|
|
936
|
-
lineNumber: 8,
|
|
937
|
-
columnNumber: 3
|
|
938
|
-
},
|
|
939
|
-
void 0
|
|
940
|
-
), w = ({
|
|
941
|
-
color: t,
|
|
942
|
-
size: s = 24
|
|
531
|
+
}
|
|
532
|
+
), V = ({
|
|
533
|
+
color: r,
|
|
534
|
+
size: t = 24
|
|
943
535
|
}) => /* @__PURE__ */ e(
|
|
944
536
|
"svg",
|
|
945
537
|
{
|
|
946
|
-
width:
|
|
947
|
-
height:
|
|
538
|
+
width: t,
|
|
539
|
+
height: t,
|
|
948
540
|
viewBox: "0 0 24 24",
|
|
949
541
|
fill: "none",
|
|
950
542
|
xmlns: "http://www.w3.org/2000/svg",
|
|
951
|
-
style: { color:
|
|
543
|
+
style: { color: r },
|
|
952
544
|
children: [
|
|
953
|
-
/* @__PURE__ */
|
|
545
|
+
/* @__PURE__ */ o(
|
|
954
546
|
"path",
|
|
955
547
|
{
|
|
956
548
|
d: "M13 19H7C3 19 2 18 2 14V10C2 6 3 5 7 5H13C17 5 18 6 18 10V14C18 18 17 19 13 19Z",
|
|
@@ -958,17 +550,9 @@ const n = ({
|
|
|
958
550
|
strokeWidth: 1.5,
|
|
959
551
|
strokeLinecap: "round",
|
|
960
552
|
strokeLinejoin: "round"
|
|
961
|
-
}
|
|
962
|
-
void 0,
|
|
963
|
-
!1,
|
|
964
|
-
{
|
|
965
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/battery-empty/BatteryEmptyLinearIcon.tsx",
|
|
966
|
-
lineNumber: 16,
|
|
967
|
-
columnNumber: 5
|
|
968
|
-
},
|
|
969
|
-
void 0
|
|
553
|
+
}
|
|
970
554
|
),
|
|
971
|
-
/* @__PURE__ */
|
|
555
|
+
/* @__PURE__ */ o(
|
|
972
556
|
"path",
|
|
973
557
|
{
|
|
974
558
|
d: "M20.5 9.5C22 9.5 22 10 22 11V13C22 14 22 14.5 20.5 14.5",
|
|
@@ -976,93 +560,53 @@ const n = ({
|
|
|
976
560
|
strokeWidth: 1.5,
|
|
977
561
|
strokeLinecap: "round",
|
|
978
562
|
strokeLinejoin: "round"
|
|
979
|
-
}
|
|
980
|
-
void 0,
|
|
981
|
-
!1,
|
|
982
|
-
{
|
|
983
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/battery-empty/BatteryEmptyLinearIcon.tsx",
|
|
984
|
-
lineNumber: 23,
|
|
985
|
-
columnNumber: 5
|
|
986
|
-
},
|
|
987
|
-
void 0
|
|
563
|
+
}
|
|
988
564
|
)
|
|
989
565
|
]
|
|
990
|
-
}
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/battery-empty/BatteryEmptyLinearIcon.tsx",
|
|
995
|
-
lineNumber: 8,
|
|
996
|
-
columnNumber: 3
|
|
997
|
-
},
|
|
998
|
-
void 0
|
|
999
|
-
), b = ({
|
|
1000
|
-
color: t,
|
|
1001
|
-
size: s = 24
|
|
566
|
+
}
|
|
567
|
+
), v = ({
|
|
568
|
+
color: r,
|
|
569
|
+
size: t = 24
|
|
1002
570
|
}) => /* @__PURE__ */ e(
|
|
1003
571
|
"svg",
|
|
1004
572
|
{
|
|
1005
|
-
width:
|
|
1006
|
-
height:
|
|
573
|
+
width: t,
|
|
574
|
+
height: t,
|
|
1007
575
|
viewBox: "0 0 24 24",
|
|
1008
576
|
fill: "none",
|
|
1009
577
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1010
|
-
style: { color:
|
|
578
|
+
style: { color: r },
|
|
1011
579
|
children: [
|
|
1012
|
-
/* @__PURE__ */
|
|
580
|
+
/* @__PURE__ */ o(
|
|
1013
581
|
"path",
|
|
1014
582
|
{
|
|
1015
583
|
d: "M13 19.75H7C2.59 19.75 1.25 18.41 1.25 14V10C1.25 5.59 2.59 4.25 7 4.25H13C17.41 4.25 18.75 5.59 18.75 10V14C18.75 18.41 17.41 19.75 13 19.75ZM7 5.75C3.42 5.75 2.75 6.43 2.75 10V14C2.75 17.57 3.42 18.25 7 18.25H13C16.58 18.25 17.25 17.57 17.25 14V10C17.25 6.43 16.58 5.75 13 5.75H7Z",
|
|
1016
584
|
fill: "currentColor"
|
|
1017
|
-
}
|
|
1018
|
-
void 0,
|
|
1019
|
-
!1,
|
|
1020
|
-
{
|
|
1021
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/battery-empty/BatteryEmptyOutlineIcon.tsx",
|
|
1022
|
-
lineNumber: 16,
|
|
1023
|
-
columnNumber: 5
|
|
1024
|
-
},
|
|
1025
|
-
void 0
|
|
585
|
+
}
|
|
1026
586
|
),
|
|
1027
|
-
/* @__PURE__ */
|
|
587
|
+
/* @__PURE__ */ o(
|
|
1028
588
|
"path",
|
|
1029
589
|
{
|
|
1030
590
|
d: "M20.5 15.25C20.09 15.25 19.75 14.91 19.75 14.5C19.75 14.09 20.09 13.75 20.5 13.75C21.09 13.75 21.22 13.66 21.23 13.66C21.25 13.6 21.25 13.25 21.25 13V11C21.25 10.75 21.25 10.41 21.21 10.32C21.22 10.33 21.05 10.25 20.5 10.25C20.09 10.25 19.75 9.91 19.75 9.5C19.75 9.09 20.09 8.75 20.5 8.75C22.58 8.75 22.75 9.77 22.75 11V13C22.75 14.23 22.58 15.25 20.5 15.25Z",
|
|
1031
591
|
fill: "currentColor"
|
|
1032
|
-
}
|
|
1033
|
-
void 0,
|
|
1034
|
-
!1,
|
|
1035
|
-
{
|
|
1036
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/battery-empty/BatteryEmptyOutlineIcon.tsx",
|
|
1037
|
-
lineNumber: 20,
|
|
1038
|
-
columnNumber: 5
|
|
1039
|
-
},
|
|
1040
|
-
void 0
|
|
592
|
+
}
|
|
1041
593
|
)
|
|
1042
594
|
]
|
|
1043
|
-
}
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/battery-empty/BatteryEmptyOutlineIcon.tsx",
|
|
1048
|
-
lineNumber: 8,
|
|
1049
|
-
columnNumber: 3
|
|
1050
|
-
},
|
|
1051
|
-
void 0
|
|
1052
|
-
), g = ({
|
|
1053
|
-
color: t,
|
|
1054
|
-
size: s = 24
|
|
595
|
+
}
|
|
596
|
+
), f = ({
|
|
597
|
+
color: r,
|
|
598
|
+
size: t = 24
|
|
1055
599
|
}) => /* @__PURE__ */ e(
|
|
1056
600
|
"svg",
|
|
1057
601
|
{
|
|
1058
|
-
width:
|
|
1059
|
-
height:
|
|
602
|
+
width: t,
|
|
603
|
+
height: t,
|
|
1060
604
|
viewBox: "0 0 24 24",
|
|
1061
605
|
fill: "none",
|
|
1062
606
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1063
|
-
style: { color:
|
|
607
|
+
style: { color: r },
|
|
1064
608
|
children: [
|
|
1065
|
-
/* @__PURE__ */
|
|
609
|
+
/* @__PURE__ */ o(
|
|
1066
610
|
"path",
|
|
1067
611
|
{
|
|
1068
612
|
d: "M13 19H7C3 19 2 18 2 14V10C2 6 3 5 7 5H13C17 5 18 6 18 10V14C18 18 17 19 13 19Z",
|
|
@@ -1070,17 +614,9 @@ const n = ({
|
|
|
1070
614
|
strokeWidth: 1.5,
|
|
1071
615
|
strokeLinecap: "round",
|
|
1072
616
|
strokeLinejoin: "round"
|
|
1073
|
-
}
|
|
1074
|
-
void 0,
|
|
1075
|
-
!1,
|
|
1076
|
-
{
|
|
1077
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/battery-empty/BatteryEmptyTwotoneIcon.tsx",
|
|
1078
|
-
lineNumber: 16,
|
|
1079
|
-
columnNumber: 5
|
|
1080
|
-
},
|
|
1081
|
-
void 0
|
|
617
|
+
}
|
|
1082
618
|
),
|
|
1083
|
-
/* @__PURE__ */
|
|
619
|
+
/* @__PURE__ */ o(
|
|
1084
620
|
"path",
|
|
1085
621
|
{
|
|
1086
622
|
opacity: "0.34",
|
|
@@ -1089,239 +625,135 @@ const n = ({
|
|
|
1089
625
|
strokeWidth: 1.5,
|
|
1090
626
|
strokeLinecap: "round",
|
|
1091
627
|
strokeLinejoin: "round"
|
|
1092
|
-
}
|
|
1093
|
-
void 0,
|
|
1094
|
-
!1,
|
|
1095
|
-
{
|
|
1096
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/battery-empty/BatteryEmptyTwotoneIcon.tsx",
|
|
1097
|
-
lineNumber: 23,
|
|
1098
|
-
columnNumber: 5
|
|
1099
|
-
},
|
|
1100
|
-
void 0
|
|
628
|
+
}
|
|
1101
629
|
)
|
|
1102
630
|
]
|
|
1103
|
-
}
|
|
1104
|
-
void 0,
|
|
1105
|
-
!0,
|
|
1106
|
-
{
|
|
1107
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/battery-empty/BatteryEmptyTwotoneIcon.tsx",
|
|
1108
|
-
lineNumber: 8,
|
|
1109
|
-
columnNumber: 3
|
|
1110
|
-
},
|
|
1111
|
-
void 0
|
|
631
|
+
}
|
|
1112
632
|
), y = ({
|
|
1113
|
-
color:
|
|
1114
|
-
size:
|
|
633
|
+
color: r,
|
|
634
|
+
size: t = 24
|
|
1115
635
|
}) => /* @__PURE__ */ e(
|
|
1116
636
|
"svg",
|
|
1117
637
|
{
|
|
1118
|
-
width:
|
|
1119
|
-
height:
|
|
638
|
+
width: t,
|
|
639
|
+
height: t,
|
|
1120
640
|
viewBox: "0 0 24 24",
|
|
1121
641
|
fill: "none",
|
|
1122
642
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1123
|
-
style: { color:
|
|
643
|
+
style: { color: r },
|
|
1124
644
|
children: [
|
|
1125
|
-
/* @__PURE__ */
|
|
645
|
+
/* @__PURE__ */ o(
|
|
1126
646
|
"path",
|
|
1127
647
|
{
|
|
1128
648
|
d: "M20.42 9.00001C20.28 8.99001 20.1 8.98001 19.9 8.98001C19.51 8.98001 19.2 9.29001 19.2 9.68001V14.33C19.2 14.72 19.51 15.03 19.9 15.03C20.1 15.03 20.27 15.02 20.44 15.01C22 14.83 22 13.73 22 12.93V11.07C22 10.27 22 9.17001 20.42 9.00001Z",
|
|
1129
649
|
fill: "currentColor"
|
|
1130
|
-
}
|
|
1131
|
-
void 0,
|
|
1132
|
-
!1,
|
|
1133
|
-
{
|
|
1134
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/battery-low/BatteryLowBoldIcon.tsx",
|
|
1135
|
-
lineNumber: 16,
|
|
1136
|
-
columnNumber: 5
|
|
1137
|
-
},
|
|
1138
|
-
void 0
|
|
650
|
+
}
|
|
1139
651
|
),
|
|
1140
|
-
/* @__PURE__ */
|
|
652
|
+
/* @__PURE__ */ o(
|
|
1141
653
|
"path",
|
|
1142
654
|
{
|
|
1143
655
|
d: "M12.93 4.79001H7.35C3.25 4.79001 2 6.04001 2 10.14V13.86C2 17.96 3.25 19.21 7.35 19.21H12.93C17.03 19.21 18.28 17.96 18.28 13.86V10.14C18.28 6.04001 17.03 4.79001 12.93 4.79001ZM7.1 14.18C7.02 14.52 6.71 14.75 6.37 14.75C6.31 14.75 6.25 14.74 6.19 14.73C5.79 14.63 5.54 14.22 5.64 13.82C5.94 12.63 5.94 11.37 5.64 10.18C5.54 9.78001 5.78 9.37001 6.19 9.27001C6.59 9.17001 7 9.42001 7.1 9.82001C7.46 11.25 7.46 12.75 7.1 14.18Z",
|
|
1144
656
|
fill: "currentColor"
|
|
1145
|
-
}
|
|
1146
|
-
void 0,
|
|
1147
|
-
!1,
|
|
1148
|
-
{
|
|
1149
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/battery-low/BatteryLowBoldIcon.tsx",
|
|
1150
|
-
lineNumber: 20,
|
|
1151
|
-
columnNumber: 5
|
|
1152
|
-
},
|
|
1153
|
-
void 0
|
|
657
|
+
}
|
|
1154
658
|
)
|
|
1155
659
|
]
|
|
1156
|
-
}
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/battery-low/BatteryLowBoldIcon.tsx",
|
|
1161
|
-
lineNumber: 8,
|
|
1162
|
-
columnNumber: 3
|
|
1163
|
-
},
|
|
1164
|
-
void 0
|
|
1165
|
-
), v = ({
|
|
1166
|
-
color: t,
|
|
1167
|
-
size: s = 24
|
|
660
|
+
}
|
|
661
|
+
), B = ({
|
|
662
|
+
color: r,
|
|
663
|
+
size: t = 24
|
|
1168
664
|
}) => /* @__PURE__ */ e(
|
|
1169
665
|
"svg",
|
|
1170
666
|
{
|
|
1171
|
-
width:
|
|
1172
|
-
height:
|
|
667
|
+
width: t,
|
|
668
|
+
height: t,
|
|
1173
669
|
viewBox: "0 0 24 24",
|
|
1174
670
|
fill: "none",
|
|
1175
671
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1176
|
-
style: { color:
|
|
672
|
+
style: { color: r },
|
|
1177
673
|
children: [
|
|
1178
|
-
/* @__PURE__ */
|
|
674
|
+
/* @__PURE__ */ o(
|
|
1179
675
|
"path",
|
|
1180
676
|
{
|
|
1181
677
|
d: "M10.99 5H13C17 5 18 6 18 10V14C18 18 17 19 13 19H7C3 19 2 18 2 14V10C2 6 3 5 7 5",
|
|
1182
678
|
stroke: "currentColor",
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
}
|
|
1187
|
-
void 0,
|
|
1188
|
-
!1,
|
|
1189
|
-
{
|
|
1190
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/battery-low/BatteryLowBrokenIcon.tsx",
|
|
1191
|
-
lineNumber: 16,
|
|
1192
|
-
columnNumber: 5
|
|
1193
|
-
},
|
|
1194
|
-
void 0
|
|
679
|
+
strokeWidth: 1.5,
|
|
680
|
+
strokeLinecap: "round",
|
|
681
|
+
strokeLinejoin: "round"
|
|
682
|
+
}
|
|
1195
683
|
),
|
|
1196
|
-
/* @__PURE__ */
|
|
684
|
+
/* @__PURE__ */ o(
|
|
1197
685
|
"path",
|
|
1198
686
|
{
|
|
1199
687
|
d: "M20.5 9.5C22 9.5 22 10 22 11V13C22 14 22 14.5 20.5 14.5",
|
|
1200
688
|
stroke: "currentColor",
|
|
1201
|
-
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
}
|
|
1205
|
-
void 0,
|
|
1206
|
-
!1,
|
|
1207
|
-
{
|
|
1208
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/battery-low/BatteryLowBrokenIcon.tsx",
|
|
1209
|
-
lineNumber: 23,
|
|
1210
|
-
columnNumber: 5
|
|
1211
|
-
},
|
|
1212
|
-
void 0
|
|
689
|
+
strokeWidth: 1.5,
|
|
690
|
+
strokeLinecap: "round",
|
|
691
|
+
strokeLinejoin: "round"
|
|
692
|
+
}
|
|
1213
693
|
),
|
|
1214
|
-
/* @__PURE__ */
|
|
694
|
+
/* @__PURE__ */ o(
|
|
1215
695
|
"path",
|
|
1216
696
|
{
|
|
1217
697
|
d: "M6.38 10C6.62 10.98 6.69 11.99 6.57 12.99C6.53 13.33 6.47 13.67 6.38 14",
|
|
1218
698
|
stroke: "currentColor",
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
}
|
|
1223
|
-
void 0,
|
|
1224
|
-
!1,
|
|
1225
|
-
{
|
|
1226
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/battery-low/BatteryLowBrokenIcon.tsx",
|
|
1227
|
-
lineNumber: 30,
|
|
1228
|
-
columnNumber: 5
|
|
1229
|
-
},
|
|
1230
|
-
void 0
|
|
699
|
+
strokeWidth: 1.5,
|
|
700
|
+
strokeLinecap: "round",
|
|
701
|
+
strokeLinejoin: "round"
|
|
702
|
+
}
|
|
1231
703
|
)
|
|
1232
704
|
]
|
|
1233
|
-
}
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/battery-low/BatteryLowBrokenIcon.tsx",
|
|
1238
|
-
lineNumber: 8,
|
|
1239
|
-
columnNumber: 3
|
|
1240
|
-
},
|
|
1241
|
-
void 0
|
|
1242
|
-
), M = ({
|
|
1243
|
-
color: t,
|
|
1244
|
-
size: s = 24
|
|
705
|
+
}
|
|
706
|
+
), Z = ({
|
|
707
|
+
color: r,
|
|
708
|
+
size: t = 24
|
|
1245
709
|
}) => /* @__PURE__ */ e(
|
|
1246
710
|
"svg",
|
|
1247
711
|
{
|
|
1248
|
-
width:
|
|
1249
|
-
height:
|
|
712
|
+
width: t,
|
|
713
|
+
height: t,
|
|
1250
714
|
viewBox: "0 0 24 24",
|
|
1251
715
|
fill: "none",
|
|
1252
716
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1253
|
-
style: { color:
|
|
717
|
+
style: { color: r },
|
|
1254
718
|
children: [
|
|
1255
|
-
/* @__PURE__ */
|
|
719
|
+
/* @__PURE__ */ o(
|
|
1256
720
|
"path",
|
|
1257
721
|
{
|
|
1258
722
|
opacity: "0.4",
|
|
1259
723
|
d: "M12.93 4.79001H7.35C3.25 4.79001 2 6.04001 2 10.14V13.86C2 17.96 3.25 19.21 7.35 19.21H12.93C17.03 19.21 18.28 17.96 18.28 13.86V10.14C18.28 6.04001 17.03 4.79001 12.93 4.79001Z",
|
|
1260
724
|
fill: "currentColor"
|
|
1261
|
-
}
|
|
1262
|
-
void 0,
|
|
1263
|
-
!1,
|
|
1264
|
-
{
|
|
1265
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/battery-low/BatteryLowBulkIcon.tsx",
|
|
1266
|
-
lineNumber: 16,
|
|
1267
|
-
columnNumber: 5
|
|
1268
|
-
},
|
|
1269
|
-
void 0
|
|
725
|
+
}
|
|
1270
726
|
),
|
|
1271
|
-
/* @__PURE__ */
|
|
727
|
+
/* @__PURE__ */ o(
|
|
1272
728
|
"path",
|
|
1273
729
|
{
|
|
1274
730
|
d: "M20.42 9.00001C20.28 8.99001 20.1 8.98001 19.9 8.98001C19.51 8.98001 19.2 9.29001 19.2 9.68001V14.33C19.2 14.72 19.51 15.03 19.9 15.03C20.1 15.03 20.27 15.02 20.44 15.01C22 14.83 22 13.73 22 12.93V11.07C22 10.27 22 9.17001 20.42 9.00001Z",
|
|
1275
731
|
fill: "currentColor"
|
|
1276
|
-
}
|
|
1277
|
-
void 0,
|
|
1278
|
-
!1,
|
|
1279
|
-
{
|
|
1280
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/battery-low/BatteryLowBulkIcon.tsx",
|
|
1281
|
-
lineNumber: 21,
|
|
1282
|
-
columnNumber: 5
|
|
1283
|
-
},
|
|
1284
|
-
void 0
|
|
732
|
+
}
|
|
1285
733
|
),
|
|
1286
|
-
/* @__PURE__ */
|
|
734
|
+
/* @__PURE__ */ o(
|
|
1287
735
|
"path",
|
|
1288
736
|
{
|
|
1289
737
|
d: "M6.38001 14.75C6.32001 14.75 6.26001 14.74 6.20001 14.73C5.80001 14.63 5.55001 14.22 5.65001 13.82C5.95001 12.63 5.95001 11.37 5.65001 10.18C5.55001 9.78001 5.79001 9.37001 6.20001 9.27001C6.59001 9.17001 7.00001 9.42001 7.10001 9.82001C7.46001 11.25 7.46001 12.76 7.10001 14.18C7.02001 14.52 6.71001 14.75 6.38001 14.75Z",
|
|
1290
738
|
fill: "currentColor"
|
|
1291
|
-
}
|
|
1292
|
-
void 0,
|
|
1293
|
-
!1,
|
|
1294
|
-
{
|
|
1295
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/battery-low/BatteryLowBulkIcon.tsx",
|
|
1296
|
-
lineNumber: 25,
|
|
1297
|
-
columnNumber: 5
|
|
1298
|
-
},
|
|
1299
|
-
void 0
|
|
739
|
+
}
|
|
1300
740
|
)
|
|
1301
741
|
]
|
|
1302
|
-
}
|
|
1303
|
-
void 0,
|
|
1304
|
-
!0,
|
|
1305
|
-
{
|
|
1306
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/battery-low/BatteryLowBulkIcon.tsx",
|
|
1307
|
-
lineNumber: 8,
|
|
1308
|
-
columnNumber: 3
|
|
1309
|
-
},
|
|
1310
|
-
void 0
|
|
742
|
+
}
|
|
1311
743
|
), x = ({
|
|
1312
|
-
color:
|
|
1313
|
-
size:
|
|
744
|
+
color: r,
|
|
745
|
+
size: t = 24
|
|
1314
746
|
}) => /* @__PURE__ */ e(
|
|
1315
747
|
"svg",
|
|
1316
748
|
{
|
|
1317
|
-
width:
|
|
1318
|
-
height:
|
|
749
|
+
width: t,
|
|
750
|
+
height: t,
|
|
1319
751
|
viewBox: "0 0 24 24",
|
|
1320
752
|
fill: "none",
|
|
1321
753
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1322
|
-
style: { color:
|
|
754
|
+
style: { color: r },
|
|
1323
755
|
children: [
|
|
1324
|
-
/* @__PURE__ */
|
|
756
|
+
/* @__PURE__ */ o(
|
|
1325
757
|
"path",
|
|
1326
758
|
{
|
|
1327
759
|
d: "M13 19H7C3 19 2 18 2 14V10C2 6 3 5 7 5H13C17 5 18 6 18 10V14C18 18 17 19 13 19Z",
|
|
@@ -1329,17 +761,9 @@ const n = ({
|
|
|
1329
761
|
strokeWidth: 1.5,
|
|
1330
762
|
strokeLinecap: "round",
|
|
1331
763
|
strokeLinejoin: "round"
|
|
1332
|
-
}
|
|
1333
|
-
void 0,
|
|
1334
|
-
!1,
|
|
1335
|
-
{
|
|
1336
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/battery-low/BatteryLowLinearIcon.tsx",
|
|
1337
|
-
lineNumber: 16,
|
|
1338
|
-
columnNumber: 5
|
|
1339
|
-
},
|
|
1340
|
-
void 0
|
|
764
|
+
}
|
|
1341
765
|
),
|
|
1342
|
-
/* @__PURE__ */
|
|
766
|
+
/* @__PURE__ */ o(
|
|
1343
767
|
"path",
|
|
1344
768
|
{
|
|
1345
769
|
d: "M20.5 9.5C22 9.5 22 10 22 11V13C22 14 22 14.5 20.5 14.5",
|
|
@@ -1347,17 +771,9 @@ const n = ({
|
|
|
1347
771
|
strokeWidth: 1.5,
|
|
1348
772
|
strokeLinecap: "round",
|
|
1349
773
|
strokeLinejoin: "round"
|
|
1350
|
-
}
|
|
1351
|
-
void 0,
|
|
1352
|
-
!1,
|
|
1353
|
-
{
|
|
1354
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/battery-low/BatteryLowLinearIcon.tsx",
|
|
1355
|
-
lineNumber: 23,
|
|
1356
|
-
columnNumber: 5
|
|
1357
|
-
},
|
|
1358
|
-
void 0
|
|
774
|
+
}
|
|
1359
775
|
),
|
|
1360
|
-
/* @__PURE__ */
|
|
776
|
+
/* @__PURE__ */ o(
|
|
1361
777
|
"path",
|
|
1362
778
|
{
|
|
1363
779
|
d: "M6.38 10C6.71 11.31 6.71 12.69 6.38 14",
|
|
@@ -1365,108 +781,60 @@ const n = ({
|
|
|
1365
781
|
strokeWidth: 1.5,
|
|
1366
782
|
strokeLinecap: "round",
|
|
1367
783
|
strokeLinejoin: "round"
|
|
1368
|
-
}
|
|
1369
|
-
void 0,
|
|
1370
|
-
!1,
|
|
1371
|
-
{
|
|
1372
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/battery-low/BatteryLowLinearIcon.tsx",
|
|
1373
|
-
lineNumber: 30,
|
|
1374
|
-
columnNumber: 5
|
|
1375
|
-
},
|
|
1376
|
-
void 0
|
|
784
|
+
}
|
|
1377
785
|
)
|
|
1378
786
|
]
|
|
1379
|
-
}
|
|
1380
|
-
|
|
1381
|
-
|
|
1382
|
-
|
|
1383
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/battery-low/BatteryLowLinearIcon.tsx",
|
|
1384
|
-
lineNumber: 8,
|
|
1385
|
-
columnNumber: 3
|
|
1386
|
-
},
|
|
1387
|
-
void 0
|
|
1388
|
-
), B = ({
|
|
1389
|
-
color: t,
|
|
1390
|
-
size: s = 24
|
|
787
|
+
}
|
|
788
|
+
), H = ({
|
|
789
|
+
color: r,
|
|
790
|
+
size: t = 24
|
|
1391
791
|
}) => /* @__PURE__ */ e(
|
|
1392
792
|
"svg",
|
|
1393
793
|
{
|
|
1394
|
-
width:
|
|
1395
|
-
height:
|
|
794
|
+
width: t,
|
|
795
|
+
height: t,
|
|
1396
796
|
viewBox: "0 0 24 24",
|
|
1397
797
|
fill: "none",
|
|
1398
798
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1399
|
-
style: { color:
|
|
799
|
+
style: { color: r },
|
|
1400
800
|
children: [
|
|
1401
|
-
/* @__PURE__ */
|
|
801
|
+
/* @__PURE__ */ o(
|
|
1402
802
|
"path",
|
|
1403
803
|
{
|
|
1404
804
|
d: "M13 19.75H7C2.59 19.75 1.25 18.41 1.25 14V10C1.25 5.59 2.59 4.25 7 4.25H13C17.41 4.25 18.75 5.59 18.75 10V14C18.75 18.41 17.41 19.75 13 19.75ZM7 5.75C3.42 5.75 2.75 6.43 2.75 10V14C2.75 17.57 3.42 18.25 7 18.25H13C16.58 18.25 17.25 17.57 17.25 14V10C17.25 6.43 16.58 5.75 13 5.75H7Z",
|
|
1405
805
|
fill: "currentColor"
|
|
1406
|
-
}
|
|
1407
|
-
void 0,
|
|
1408
|
-
!1,
|
|
1409
|
-
{
|
|
1410
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/battery-low/BatteryLowOutlineIcon.tsx",
|
|
1411
|
-
lineNumber: 16,
|
|
1412
|
-
columnNumber: 5
|
|
1413
|
-
},
|
|
1414
|
-
void 0
|
|
806
|
+
}
|
|
1415
807
|
),
|
|
1416
|
-
/* @__PURE__ */
|
|
808
|
+
/* @__PURE__ */ o(
|
|
1417
809
|
"path",
|
|
1418
810
|
{
|
|
1419
811
|
d: "M20.5 15.25C20.09 15.25 19.75 14.91 19.75 14.5C19.75 14.09 20.09 13.75 20.5 13.75C21.09 13.75 21.22 13.66 21.23 13.66C21.25 13.6 21.25 13.25 21.25 13V11C21.25 10.75 21.25 10.41 21.21 10.32C21.2 10.33 21.05 10.25 20.5 10.25C20.09 10.25 19.75 9.91 19.75 9.5C19.75 9.09 20.09 8.75 20.5 8.75C22.58 8.75 22.75 9.77 22.75 11V13C22.75 14.23 22.58 15.25 20.5 15.25Z",
|
|
1420
812
|
fill: "currentColor"
|
|
1421
|
-
}
|
|
1422
|
-
void 0,
|
|
1423
|
-
!1,
|
|
1424
|
-
{
|
|
1425
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/battery-low/BatteryLowOutlineIcon.tsx",
|
|
1426
|
-
lineNumber: 20,
|
|
1427
|
-
columnNumber: 5
|
|
1428
|
-
},
|
|
1429
|
-
void 0
|
|
813
|
+
}
|
|
1430
814
|
),
|
|
1431
|
-
/* @__PURE__ */
|
|
815
|
+
/* @__PURE__ */ o(
|
|
1432
816
|
"path",
|
|
1433
817
|
{
|
|
1434
818
|
d: "M6.38001 14.75C6.32001 14.75 6.26001 14.74 6.20001 14.73C5.80001 14.63 5.55001 14.22 5.65001 13.82C5.95001 12.63 5.95001 11.37 5.65001 10.18C5.55001 9.78001 5.79001 9.37001 6.20001 9.27001C6.59001 9.17001 7.00001 9.42001 7.10001 9.82001C7.46001 11.25 7.46001 12.76 7.10001 14.18C7.02001 14.52 6.71001 14.75 6.38001 14.75Z",
|
|
1435
819
|
fill: "currentColor"
|
|
1436
|
-
}
|
|
1437
|
-
void 0,
|
|
1438
|
-
!1,
|
|
1439
|
-
{
|
|
1440
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/battery-low/BatteryLowOutlineIcon.tsx",
|
|
1441
|
-
lineNumber: 24,
|
|
1442
|
-
columnNumber: 5
|
|
1443
|
-
},
|
|
1444
|
-
void 0
|
|
820
|
+
}
|
|
1445
821
|
)
|
|
1446
822
|
]
|
|
1447
|
-
}
|
|
1448
|
-
|
|
1449
|
-
|
|
1450
|
-
|
|
1451
|
-
fileName: "C:/Users/asus/Desktop/AghsatMarket/shared-assets/src/icons/components/essetional/battery-low/BatteryLowOutlineIcon.tsx",
|
|
1452
|
-
lineNumber: 8,
|
|
1453
|
-
columnNumber: 3
|
|
1454
|
-
},
|
|
1455
|
-
void 0
|
|
1456
|
-
), I = ({
|
|
1457
|
-
color: t,
|
|
1458
|
-
size: s = 24
|
|
823
|
+
}
|
|
824
|
+
), j = ({
|
|
825
|
+
color: r,
|
|
826
|
+
size: t = 24
|
|
1459
827
|
}) => /* @__PURE__ */ e(
|
|
1460
828
|
"svg",
|
|
1461
829
|
{
|
|
1462
|
-
width:
|
|
1463
|
-
height:
|
|
830
|
+
width: t,
|
|
831
|
+
height: t,
|
|
1464
832
|
viewBox: "0 0 24 24",
|
|
1465
833
|
fill: "none",
|
|
1466
834
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1467
|
-
style: { color:
|
|
835
|
+
style: { color: r },
|
|
1468
836
|
children: [
|
|
1469
|
-
/* @__PURE__ */
|
|
837
|
+
/* @__PURE__ */ o(
|
|
1470
838
|
"path",
|
|
1471
839
|
{
|
|
1472
840
|
d: "M13 19H7C3 19 2 18 2 14V10C2 6 3 5 7 5H13C17 5 18 6 18 10V14C18 18 17 19 13 19Z",
|
|
@@ -1474,88 +842,1290 @@ const n = ({
|
|
|
1474
842
|
strokeWidth: 1.5,
|
|
1475
843
|
strokeLinecap: "round",
|
|
1476
844
|
strokeLinejoin: "round"
|
|
1477
|
-
}
|
|
1478
|
-
|
|
1479
|
-
|
|
845
|
+
}
|
|
846
|
+
),
|
|
847
|
+
/* @__PURE__ */ o(
|
|
848
|
+
"path",
|
|
1480
849
|
{
|
|
1481
|
-
|
|
1482
|
-
|
|
1483
|
-
|
|
1484
|
-
|
|
1485
|
-
|
|
850
|
+
opacity: "0.34",
|
|
851
|
+
d: "M20.5 9.5C22 9.5 22 10 22 11V13C22 14 22 14.5 20.5 14.5",
|
|
852
|
+
stroke: "currentColor",
|
|
853
|
+
strokeWidth: 1.5,
|
|
854
|
+
strokeLinecap: "round",
|
|
855
|
+
strokeLinejoin: "round"
|
|
856
|
+
}
|
|
1486
857
|
),
|
|
1487
|
-
/* @__PURE__ */
|
|
858
|
+
/* @__PURE__ */ o(
|
|
1488
859
|
"path",
|
|
1489
860
|
{
|
|
1490
861
|
opacity: "0.34",
|
|
862
|
+
d: "M6.38 10C6.71 11.31 6.71 12.69 6.38 14",
|
|
863
|
+
stroke: "currentColor",
|
|
864
|
+
strokeWidth: 1.5,
|
|
865
|
+
strokeLinecap: "round",
|
|
866
|
+
strokeLinejoin: "round"
|
|
867
|
+
}
|
|
868
|
+
)
|
|
869
|
+
]
|
|
870
|
+
}
|
|
871
|
+
), m = ({
|
|
872
|
+
color: r,
|
|
873
|
+
size: t = 24
|
|
874
|
+
}) => /* @__PURE__ */ e(
|
|
875
|
+
"svg",
|
|
876
|
+
{
|
|
877
|
+
width: t,
|
|
878
|
+
height: t,
|
|
879
|
+
viewBox: "0 0 24 24",
|
|
880
|
+
fill: "none",
|
|
881
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
882
|
+
style: { color: r },
|
|
883
|
+
children: [
|
|
884
|
+
/* @__PURE__ */ o(
|
|
885
|
+
"path",
|
|
886
|
+
{
|
|
887
|
+
d: "M20.42 9.00001C20.28 8.99001 20.1 8.98001 19.9 8.98001C19.51 8.98001 19.2 9.29001 19.2 9.68001V14.33C19.2 14.72 19.51 15.03 19.9 15.03C20.1 15.03 20.27 15.02 20.44 15.01C22 14.83 22 13.73 22 12.93V11.07C22 10.27 22 9.17001 20.42 9.00001Z",
|
|
888
|
+
fill: "currentColor"
|
|
889
|
+
}
|
|
890
|
+
),
|
|
891
|
+
/* @__PURE__ */ o(
|
|
892
|
+
"path",
|
|
893
|
+
{
|
|
894
|
+
d: "M12.93 4.79001H7.35C3.25 4.79001 2 6.04001 2 10.14V13.86C2 17.96 3.25 19.21 7.35 19.21H12.93C17.03 19.21 18.28 17.96 18.28 13.86V10.14C18.28 6.04001 17.03 4.79001 12.93 4.79001ZM7.1 14.18C7.02 14.52 6.71 14.75 6.37 14.75C6.31 14.75 6.25 14.74 6.19 14.73C5.79 14.63 5.54 14.22 5.64 13.82C5.94 12.63 5.94 11.37 5.64 10.18C5.54 9.78001 5.78 9.37001 6.19 9.27001C6.6 9.17001 7 9.42001 7.1 9.82001C7.46 11.25 7.46 12.75 7.1 14.18ZM10.6 14.18C10.52 14.52 10.21 14.75 9.87 14.75C9.81 14.75 9.75 14.74 9.69 14.73C9.29 14.63 9.04 14.22 9.14 13.82C9.44 12.63 9.44 11.37 9.14 10.18C9.04 9.78001 9.28 9.37001 9.69 9.27001C10.09 9.17001 10.5 9.41001 10.6 9.82001C10.96 11.25 10.96 12.75 10.6 14.18Z",
|
|
895
|
+
fill: "currentColor"
|
|
896
|
+
}
|
|
897
|
+
)
|
|
898
|
+
]
|
|
899
|
+
}
|
|
900
|
+
), W = ({
|
|
901
|
+
color: r,
|
|
902
|
+
size: t = 24
|
|
903
|
+
}) => /* @__PURE__ */ e(
|
|
904
|
+
"svg",
|
|
905
|
+
{
|
|
906
|
+
width: t,
|
|
907
|
+
height: t,
|
|
908
|
+
viewBox: "0 0 24 24",
|
|
909
|
+
fill: "none",
|
|
910
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
911
|
+
style: { color: r },
|
|
912
|
+
children: [
|
|
913
|
+
/* @__PURE__ */ o(
|
|
914
|
+
"path",
|
|
915
|
+
{
|
|
1491
916
|
d: "M20.5 9.5C22 9.5 22 10 22 11V13C22 14 22 14.5 20.5 14.5",
|
|
1492
917
|
stroke: "currentColor",
|
|
1493
918
|
strokeWidth: 1.5,
|
|
1494
919
|
strokeLinecap: "round",
|
|
1495
920
|
strokeLinejoin: "round"
|
|
1496
|
-
}
|
|
1497
|
-
|
|
1498
|
-
|
|
921
|
+
}
|
|
922
|
+
),
|
|
923
|
+
/* @__PURE__ */ o(
|
|
924
|
+
"path",
|
|
925
|
+
{
|
|
926
|
+
d: "M6.38 10C6.71 11.31 6.71 12.69 6.38 14",
|
|
927
|
+
stroke: "currentColor",
|
|
928
|
+
strokeWidth: 1.5,
|
|
929
|
+
strokeLinecap: "round",
|
|
930
|
+
strokeLinejoin: "round"
|
|
931
|
+
}
|
|
932
|
+
),
|
|
933
|
+
/* @__PURE__ */ o(
|
|
934
|
+
"path",
|
|
1499
935
|
{
|
|
1500
|
-
|
|
1501
|
-
|
|
1502
|
-
|
|
1503
|
-
|
|
1504
|
-
|
|
936
|
+
d: "M9.88 10C10.21 11.31 10.21 12.69 9.88 14",
|
|
937
|
+
stroke: "currentColor",
|
|
938
|
+
strokeWidth: 1.5,
|
|
939
|
+
strokeLinecap: "round",
|
|
940
|
+
strokeLinejoin: "round"
|
|
941
|
+
}
|
|
1505
942
|
),
|
|
1506
|
-
/* @__PURE__ */
|
|
943
|
+
/* @__PURE__ */ o(
|
|
944
|
+
"path",
|
|
945
|
+
{
|
|
946
|
+
d: "M11.01 5H13C17 5 18 6 18 10V14C18 18 17 19 13 19H7C3 19 2 18 2 14V10C2 6 3 5 7 5",
|
|
947
|
+
stroke: "currentColor",
|
|
948
|
+
strokeWidth: 1.5,
|
|
949
|
+
strokeLinecap: "round",
|
|
950
|
+
strokeLinejoin: "round"
|
|
951
|
+
}
|
|
952
|
+
)
|
|
953
|
+
]
|
|
954
|
+
}
|
|
955
|
+
), I = ({
|
|
956
|
+
color: r,
|
|
957
|
+
size: t = 24
|
|
958
|
+
}) => /* @__PURE__ */ e(
|
|
959
|
+
"svg",
|
|
960
|
+
{
|
|
961
|
+
width: t,
|
|
962
|
+
height: t,
|
|
963
|
+
viewBox: "0 0 24 24",
|
|
964
|
+
fill: "none",
|
|
965
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
966
|
+
style: { color: r },
|
|
967
|
+
children: [
|
|
968
|
+
/* @__PURE__ */ o(
|
|
969
|
+
"path",
|
|
970
|
+
{
|
|
971
|
+
opacity: "0.4",
|
|
972
|
+
d: "M12.93 4.79001H7.35C3.25 4.79001 2 6.04001 2 10.14V13.86C2 17.96 3.25 19.21 7.35 19.21H12.93C17.03 19.21 18.28 17.96 18.28 13.86V10.14C18.28 6.04001 17.03 4.79001 12.93 4.79001Z",
|
|
973
|
+
fill: "currentColor"
|
|
974
|
+
}
|
|
975
|
+
),
|
|
976
|
+
/* @__PURE__ */ o(
|
|
977
|
+
"path",
|
|
978
|
+
{
|
|
979
|
+
d: "M20.42 9.00001C20.28 8.99001 20.1 8.98001 19.9 8.98001C19.51 8.98001 19.2 9.29001 19.2 9.68001V14.33C19.2 14.72 19.51 15.03 19.9 15.03C20.1 15.03 20.27 15.02 20.44 15.01C22 14.83 22 13.73 22 12.93V11.07C22 10.27 22 9.17001 20.42 9.00001Z",
|
|
980
|
+
fill: "currentColor"
|
|
981
|
+
}
|
|
982
|
+
),
|
|
983
|
+
/* @__PURE__ */ o(
|
|
984
|
+
"path",
|
|
985
|
+
{
|
|
986
|
+
d: "M6.38001 14.75C6.32001 14.75 6.26001 14.74 6.20001 14.73C5.80001 14.63 5.55001 14.22 5.65001 13.82C5.95001 12.63 5.95001 11.37 5.65001 10.18C5.55001 9.78001 5.79001 9.37001 6.20001 9.27001C6.60001 9.17001 7.00001 9.42001 7.10001 9.82001C7.46001 11.25 7.46001 12.76 7.10001 14.18C7.02001 14.52 6.71001 14.75 6.38001 14.75Z",
|
|
987
|
+
fill: "currentColor"
|
|
988
|
+
}
|
|
989
|
+
),
|
|
990
|
+
/* @__PURE__ */ o(
|
|
991
|
+
"path",
|
|
992
|
+
{
|
|
993
|
+
d: "M9.88001 14.75C9.82001 14.75 9.76001 14.74 9.70001 14.73C9.30001 14.63 9.05001 14.22 9.15001 13.82C9.45001 12.63 9.45001 11.37 9.15001 10.18C9.05001 9.78001 9.29001 9.37001 9.70001 9.27001C10.1 9.17001 10.51 9.41001 10.61 9.82001C10.97 11.25 10.97 12.76 10.61 14.18C10.52 14.52 10.21 14.75 9.88001 14.75Z",
|
|
994
|
+
fill: "currentColor"
|
|
995
|
+
}
|
|
996
|
+
)
|
|
997
|
+
]
|
|
998
|
+
}
|
|
999
|
+
), T = ({
|
|
1000
|
+
color: r,
|
|
1001
|
+
size: t = 24
|
|
1002
|
+
}) => /* @__PURE__ */ e(
|
|
1003
|
+
"svg",
|
|
1004
|
+
{
|
|
1005
|
+
width: t,
|
|
1006
|
+
height: t,
|
|
1007
|
+
viewBox: "0 0 24 24",
|
|
1008
|
+
fill: "none",
|
|
1009
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1010
|
+
style: { color: r },
|
|
1011
|
+
children: [
|
|
1012
|
+
/* @__PURE__ */ o(
|
|
1013
|
+
"path",
|
|
1014
|
+
{
|
|
1015
|
+
d: "M20.5 9.5C22 9.5 22 10 22 11V13C22 14 22 14.5 20.5 14.5",
|
|
1016
|
+
stroke: "currentColor",
|
|
1017
|
+
strokeWidth: 1.5,
|
|
1018
|
+
strokeLinecap: "round",
|
|
1019
|
+
strokeLinejoin: "round"
|
|
1020
|
+
}
|
|
1021
|
+
),
|
|
1022
|
+
/* @__PURE__ */ o(
|
|
1507
1023
|
"path",
|
|
1508
1024
|
{
|
|
1509
|
-
opacity: "0.34",
|
|
1510
1025
|
d: "M6.38 10C6.71 11.31 6.71 12.69 6.38 14",
|
|
1511
1026
|
stroke: "currentColor",
|
|
1512
1027
|
strokeWidth: 1.5,
|
|
1513
1028
|
strokeLinecap: "round",
|
|
1514
1029
|
strokeLinejoin: "round"
|
|
1515
|
-
}
|
|
1516
|
-
|
|
1517
|
-
|
|
1030
|
+
}
|
|
1031
|
+
),
|
|
1032
|
+
/* @__PURE__ */ o(
|
|
1033
|
+
"path",
|
|
1034
|
+
{
|
|
1035
|
+
d: "M9.88 10C10.21 11.31 10.21 12.69 9.88 14",
|
|
1036
|
+
stroke: "currentColor",
|
|
1037
|
+
strokeWidth: 1.5,
|
|
1038
|
+
strokeLinecap: "round",
|
|
1039
|
+
strokeLinejoin: "round"
|
|
1040
|
+
}
|
|
1041
|
+
),
|
|
1042
|
+
/* @__PURE__ */ o(
|
|
1043
|
+
"path",
|
|
1518
1044
|
{
|
|
1519
|
-
|
|
1520
|
-
|
|
1521
|
-
|
|
1522
|
-
|
|
1523
|
-
|
|
1045
|
+
d: "M13 19H7C3 19 2 18 2 14V10C2 6 3 5 7 5H13C17 5 18 6 18 10V14C18 18 17 19 13 19Z",
|
|
1046
|
+
stroke: "currentColor",
|
|
1047
|
+
strokeWidth: 1.5,
|
|
1048
|
+
strokeLinecap: "round",
|
|
1049
|
+
strokeLinejoin: "round"
|
|
1050
|
+
}
|
|
1524
1051
|
)
|
|
1525
1052
|
]
|
|
1526
|
-
}
|
|
1527
|
-
|
|
1528
|
-
|
|
1053
|
+
}
|
|
1054
|
+
), O = ({
|
|
1055
|
+
color: r,
|
|
1056
|
+
size: t = 24
|
|
1057
|
+
}) => /* @__PURE__ */ e(
|
|
1058
|
+
"svg",
|
|
1529
1059
|
{
|
|
1530
|
-
|
|
1531
|
-
|
|
1532
|
-
|
|
1533
|
-
|
|
1534
|
-
|
|
1060
|
+
width: t,
|
|
1061
|
+
height: t,
|
|
1062
|
+
viewBox: "0 0 24 24",
|
|
1063
|
+
fill: "none",
|
|
1064
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1065
|
+
style: { color: r },
|
|
1066
|
+
children: [
|
|
1067
|
+
/* @__PURE__ */ o(
|
|
1068
|
+
"path",
|
|
1069
|
+
{
|
|
1070
|
+
d: "M20.5 15.25C20.09 15.25 19.75 14.91 19.75 14.5C19.75 14.09 20.09 13.75 20.5 13.75C21.09 13.75 21.22 13.66 21.23 13.66C21.25 13.6 21.25 13.25 21.25 13V11C21.25 10.75 21.25 10.41 21.21 10.32C21.2 10.33 21.05 10.25 20.5 10.25C20.09 10.25 19.75 9.91 19.75 9.5C19.75 9.09 20.09 8.75 20.5 8.75C22.58 8.75 22.75 9.77 22.75 11V13C22.75 14.23 22.58 15.25 20.5 15.25Z",
|
|
1071
|
+
fill: "currentColor"
|
|
1072
|
+
}
|
|
1073
|
+
),
|
|
1074
|
+
/* @__PURE__ */ o(
|
|
1075
|
+
"path",
|
|
1076
|
+
{
|
|
1077
|
+
d: "M6.38001 14.75C6.32001 14.75 6.26001 14.74 6.20001 14.73C5.80001 14.63 5.55001 14.22 5.65001 13.82C5.95001 12.63 5.95001 11.37 5.65001 10.18C5.55001 9.78001 5.79001 9.37001 6.20001 9.27001C6.60001 9.17001 7.00001 9.42001 7.10001 9.82001C7.46001 11.25 7.46001 12.76 7.10001 14.18C7.02001 14.52 6.71001 14.75 6.38001 14.75Z",
|
|
1078
|
+
fill: "currentColor"
|
|
1079
|
+
}
|
|
1080
|
+
),
|
|
1081
|
+
/* @__PURE__ */ o(
|
|
1082
|
+
"path",
|
|
1083
|
+
{
|
|
1084
|
+
d: "M9.88001 14.75C9.82001 14.75 9.76001 14.74 9.70001 14.73C9.30001 14.63 9.05001 14.22 9.15001 13.82C9.45001 12.63 9.45001 11.37 9.15001 10.18C9.05001 9.78001 9.29001 9.37001 9.70001 9.27001C10.1 9.17001 10.51 9.41001 10.61 9.82001C10.97 11.25 10.97 12.76 10.61 14.18C10.52 14.52 10.21 14.75 9.88001 14.75Z",
|
|
1085
|
+
fill: "currentColor"
|
|
1086
|
+
}
|
|
1087
|
+
),
|
|
1088
|
+
/* @__PURE__ */ o(
|
|
1089
|
+
"path",
|
|
1090
|
+
{
|
|
1091
|
+
d: "M13 19.75H7C2.59 19.75 1.25 18.41 1.25 14V10C1.25 5.59 2.59 4.25 7 4.25H13C17.41 4.25 18.75 5.59 18.75 10V14C18.75 18.41 17.41 19.75 13 19.75ZM7 5.75C3.43 5.75 2.75 6.43 2.75 10V14C2.75 17.57 3.43 18.25 7 18.25H13C16.57 18.25 17.25 17.57 17.25 14V10C17.25 6.43 16.57 5.75 13 5.75H7Z",
|
|
1092
|
+
fill: "currentColor"
|
|
1093
|
+
}
|
|
1094
|
+
)
|
|
1095
|
+
]
|
|
1096
|
+
}
|
|
1097
|
+
), b = ({
|
|
1098
|
+
color: r,
|
|
1099
|
+
size: t = 24
|
|
1100
|
+
}) => /* @__PURE__ */ e(
|
|
1101
|
+
"svg",
|
|
1102
|
+
{
|
|
1103
|
+
width: t,
|
|
1104
|
+
height: t,
|
|
1105
|
+
viewBox: "0 0 24 24",
|
|
1106
|
+
fill: "none",
|
|
1107
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1108
|
+
style: { color: r },
|
|
1109
|
+
children: [
|
|
1110
|
+
/* @__PURE__ */ o(
|
|
1111
|
+
"path",
|
|
1112
|
+
{
|
|
1113
|
+
opacity: "0.34",
|
|
1114
|
+
d: "M20.5 9.5C22 9.5 22 10 22 11V13C22 14 22 14.5 20.5 14.5",
|
|
1115
|
+
stroke: "currentColor",
|
|
1116
|
+
strokeWidth: 1.5,
|
|
1117
|
+
strokeLinecap: "round",
|
|
1118
|
+
strokeLinejoin: "round"
|
|
1119
|
+
}
|
|
1120
|
+
),
|
|
1121
|
+
/* @__PURE__ */ o(
|
|
1122
|
+
"path",
|
|
1123
|
+
{
|
|
1124
|
+
opacity: "0.34",
|
|
1125
|
+
d: "M6.38 10C6.71 11.31 6.71 12.69 6.38 14",
|
|
1126
|
+
stroke: "currentColor",
|
|
1127
|
+
strokeWidth: 1.5,
|
|
1128
|
+
strokeLinecap: "round",
|
|
1129
|
+
strokeLinejoin: "round"
|
|
1130
|
+
}
|
|
1131
|
+
),
|
|
1132
|
+
/* @__PURE__ */ o(
|
|
1133
|
+
"path",
|
|
1134
|
+
{
|
|
1135
|
+
opacity: "0.34",
|
|
1136
|
+
d: "M9.88 10C10.21 11.31 10.21 12.69 9.88 14",
|
|
1137
|
+
stroke: "currentColor",
|
|
1138
|
+
strokeWidth: 1.5,
|
|
1139
|
+
strokeLinecap: "round",
|
|
1140
|
+
strokeLinejoin: "round"
|
|
1141
|
+
}
|
|
1142
|
+
),
|
|
1143
|
+
/* @__PURE__ */ o(
|
|
1144
|
+
"path",
|
|
1145
|
+
{
|
|
1146
|
+
d: "M13 19H7C3 19 2 18 2 14V10C2 6 3 5 7 5H13C17 5 18 6 18 10V14C18 18 17 19 13 19Z",
|
|
1147
|
+
stroke: "currentColor",
|
|
1148
|
+
strokeWidth: 1.5,
|
|
1149
|
+
strokeLinecap: "round",
|
|
1150
|
+
strokeLinejoin: "round"
|
|
1151
|
+
}
|
|
1152
|
+
)
|
|
1153
|
+
]
|
|
1154
|
+
}
|
|
1155
|
+
), D = ({
|
|
1156
|
+
color: r,
|
|
1157
|
+
size: t = 24
|
|
1158
|
+
}) => /* @__PURE__ */ e(
|
|
1159
|
+
"svg",
|
|
1160
|
+
{
|
|
1161
|
+
width: t,
|
|
1162
|
+
height: t,
|
|
1163
|
+
viewBox: "0 0 24 24",
|
|
1164
|
+
fill: "none",
|
|
1165
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1166
|
+
style: { color: r },
|
|
1167
|
+
children: [
|
|
1168
|
+
/* @__PURE__ */ o(
|
|
1169
|
+
"path",
|
|
1170
|
+
{
|
|
1171
|
+
d: "M20.42 9.00001C20.28 8.99001 20.1 8.98001 19.9 8.98001C19.51 8.98001 19.2 9.29001 19.2 9.68001V14.33C19.2 14.72 19.51 15.03 19.9 15.03C20.1 15.03 20.27 15.02 20.44 15.01C22 14.83 22 13.73 22 12.93V11.07C22 10.27 22 9.17001 20.42 9.00001Z",
|
|
1172
|
+
fill: "currentColor"
|
|
1173
|
+
}
|
|
1174
|
+
),
|
|
1175
|
+
/* @__PURE__ */ o(
|
|
1176
|
+
"path",
|
|
1177
|
+
{
|
|
1178
|
+
d: "M12.93 4.79001H7.35C3.25 4.79001 2 6.04001 2 10.14V13.86C2 17.96 3.25 19.21 7.35 19.21H12.93C17.03 19.21 18.28 17.96 18.28 13.86V10.14C18.28 6.04001 17.03 4.79001 12.93 4.79001ZM7.1 14.18C7.02 14.52 6.71 14.75 6.37 14.75C6.31 14.75 6.25 14.74 6.19 14.73C5.79 14.63 5.54 14.22 5.64 13.82C5.94 12.63 5.94 11.37 5.64 10.18C5.54 9.78001 5.78 9.37001 6.19 9.27001C6.6 9.17001 7 9.42001 7.1 9.82001C7.46 11.25 7.46 12.75 7.1 14.18ZM10.6 14.18C10.52 14.52 10.21 14.75 9.87 14.75C9.81 14.75 9.75 14.74 9.69 14.73C9.29 14.63 9.04 14.22 9.14 13.82C9.44 12.63 9.44 11.37 9.14 10.18C9.04 9.78001 9.28 9.37001 9.69 9.27001C10.09 9.17001 10.5 9.41001 10.6 9.82001C10.96 11.25 10.96 12.75 10.6 14.18ZM14.1 14.18C14.02 14.52 13.71 14.75 13.37 14.75C13.31 14.75 13.25 14.74 13.19 14.73C12.79 14.63 12.54 14.22 12.64 13.82C12.94 12.63 12.94 11.37 12.64 10.18C12.54 9.78001 12.78 9.37001 13.19 9.27001C13.59 9.17001 14 9.41001 14.1 9.82001C14.46 11.25 14.46 12.75 14.1 14.18Z",
|
|
1179
|
+
fill: "currentColor"
|
|
1180
|
+
}
|
|
1181
|
+
)
|
|
1182
|
+
]
|
|
1183
|
+
}
|
|
1184
|
+
), E = ({
|
|
1185
|
+
color: r,
|
|
1186
|
+
size: t = 24
|
|
1187
|
+
}) => /* @__PURE__ */ e(
|
|
1188
|
+
"svg",
|
|
1189
|
+
{
|
|
1190
|
+
width: t,
|
|
1191
|
+
height: t,
|
|
1192
|
+
viewBox: "0 0 24 24",
|
|
1193
|
+
fill: "none",
|
|
1194
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1195
|
+
style: { color: r },
|
|
1196
|
+
children: [
|
|
1197
|
+
/* @__PURE__ */ o(
|
|
1198
|
+
"path",
|
|
1199
|
+
{
|
|
1200
|
+
d: "M20.5 9.5C22 9.5 22 10 22 11V13C22 14 22 14.5 20.5 14.5",
|
|
1201
|
+
stroke: "currentColor",
|
|
1202
|
+
strokeWidth: 1.5,
|
|
1203
|
+
strokeLinecap: "round",
|
|
1204
|
+
strokeLinejoin: "round"
|
|
1205
|
+
}
|
|
1206
|
+
),
|
|
1207
|
+
/* @__PURE__ */ o(
|
|
1208
|
+
"path",
|
|
1209
|
+
{
|
|
1210
|
+
d: "M6.38 10C6.71 11.31 6.71 12.69 6.38 14",
|
|
1211
|
+
stroke: "currentColor",
|
|
1212
|
+
strokeWidth: 1.5,
|
|
1213
|
+
strokeLinecap: "round",
|
|
1214
|
+
strokeLinejoin: "round"
|
|
1215
|
+
}
|
|
1216
|
+
),
|
|
1217
|
+
/* @__PURE__ */ o(
|
|
1218
|
+
"path",
|
|
1219
|
+
{
|
|
1220
|
+
d: "M9.88 10C10.21 11.31 10.21 12.69 9.88 14",
|
|
1221
|
+
stroke: "currentColor",
|
|
1222
|
+
strokeWidth: 1.5,
|
|
1223
|
+
strokeLinecap: "round",
|
|
1224
|
+
strokeLinejoin: "round"
|
|
1225
|
+
}
|
|
1226
|
+
),
|
|
1227
|
+
/* @__PURE__ */ o(
|
|
1228
|
+
"path",
|
|
1229
|
+
{
|
|
1230
|
+
d: "M13.38 10C13.71 11.31 13.71 12.69 13.38 14",
|
|
1231
|
+
stroke: "currentColor",
|
|
1232
|
+
strokeWidth: 1.5,
|
|
1233
|
+
strokeLinecap: "round",
|
|
1234
|
+
strokeLinejoin: "round"
|
|
1235
|
+
}
|
|
1236
|
+
),
|
|
1237
|
+
/* @__PURE__ */ o(
|
|
1238
|
+
"path",
|
|
1239
|
+
{
|
|
1240
|
+
d: "M10.97 5H13C17 5 18 6 18 10V14C18 18 17 19 13 19H7C3 19 2 18 2 14V10C2 6 3 5 7 5",
|
|
1241
|
+
stroke: "currentColor",
|
|
1242
|
+
strokeWidth: 1.5,
|
|
1243
|
+
strokeLinecap: "round",
|
|
1244
|
+
strokeLinejoin: "round"
|
|
1245
|
+
}
|
|
1246
|
+
)
|
|
1247
|
+
]
|
|
1248
|
+
}
|
|
1249
|
+
), F = ({
|
|
1250
|
+
color: r,
|
|
1251
|
+
size: t = 24
|
|
1252
|
+
}) => /* @__PURE__ */ e(
|
|
1253
|
+
"svg",
|
|
1254
|
+
{
|
|
1255
|
+
width: t,
|
|
1256
|
+
height: t,
|
|
1257
|
+
viewBox: "0 0 24 24",
|
|
1258
|
+
fill: "none",
|
|
1259
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1260
|
+
style: { color: r },
|
|
1261
|
+
children: [
|
|
1262
|
+
/* @__PURE__ */ o(
|
|
1263
|
+
"path",
|
|
1264
|
+
{
|
|
1265
|
+
opacity: "0.4",
|
|
1266
|
+
d: "M12.93 4.79001H7.35C3.25 4.79001 2 6.04001 2 10.14V13.86C2 17.96 3.25 19.21 7.35 19.21H12.93C17.03 19.21 18.28 17.96 18.28 13.86V10.14C18.28 6.04001 17.03 4.79001 12.93 4.79001Z",
|
|
1267
|
+
fill: "currentColor"
|
|
1268
|
+
}
|
|
1269
|
+
),
|
|
1270
|
+
/* @__PURE__ */ o(
|
|
1271
|
+
"path",
|
|
1272
|
+
{
|
|
1273
|
+
d: "M20.42 9.00001C20.28 8.99001 20.1 8.98001 19.9 8.98001C19.51 8.98001 19.2 9.29001 19.2 9.68001V14.33C19.2 14.72 19.51 15.03 19.9 15.03C20.1 15.03 20.27 15.02 20.44 15.01C22 14.83 22 13.73 22 12.93V11.07C22 10.27 22 9.17001 20.42 9.00001Z",
|
|
1274
|
+
fill: "currentColor"
|
|
1275
|
+
}
|
|
1276
|
+
),
|
|
1277
|
+
/* @__PURE__ */ o(
|
|
1278
|
+
"path",
|
|
1279
|
+
{
|
|
1280
|
+
d: "M6.38001 14.75C6.32001 14.75 6.26001 14.74 6.20001 14.73C5.80001 14.63 5.55001 14.22 5.65001 13.82C5.95001 12.63 5.95001 11.37 5.65001 10.18C5.55001 9.78001 5.79001 9.37001 6.20001 9.27001C6.60001 9.17001 7.00001 9.42001 7.10001 9.82001C7.46001 11.25 7.46001 12.76 7.10001 14.18C7.02001 14.52 6.71001 14.75 6.38001 14.75Z",
|
|
1281
|
+
fill: "currentColor"
|
|
1282
|
+
}
|
|
1283
|
+
),
|
|
1284
|
+
/* @__PURE__ */ o(
|
|
1285
|
+
"path",
|
|
1286
|
+
{
|
|
1287
|
+
d: "M9.88001 14.75C9.82001 14.75 9.76001 14.74 9.70001 14.73C9.30001 14.63 9.05001 14.22 9.15001 13.82C9.45001 12.63 9.45001 11.37 9.15001 10.18C9.05001 9.78001 9.29001 9.37001 9.70001 9.27001C10.1 9.17001 10.51 9.41001 10.61 9.82001C10.97 11.25 10.97 12.76 10.61 14.18C10.52 14.52 10.21 14.75 9.88001 14.75Z",
|
|
1288
|
+
fill: "currentColor"
|
|
1289
|
+
}
|
|
1290
|
+
),
|
|
1291
|
+
/* @__PURE__ */ o(
|
|
1292
|
+
"path",
|
|
1293
|
+
{
|
|
1294
|
+
d: "M13.38 14.75C13.32 14.75 13.26 14.74 13.2 14.73C12.8 14.63 12.55 14.22 12.65 13.82C12.95 12.63 12.95 11.37 12.65 10.18C12.55 9.78001 12.79 9.37001 13.2 9.27001C13.6 9.17001 14.01 9.41001 14.11 9.82001C14.47 11.25 14.47 12.76 14.11 14.18C14.02 14.52 13.71 14.75 13.38 14.75Z",
|
|
1295
|
+
fill: "currentColor"
|
|
1296
|
+
}
|
|
1297
|
+
)
|
|
1298
|
+
]
|
|
1299
|
+
}
|
|
1300
|
+
), N = ({
|
|
1301
|
+
color: r,
|
|
1302
|
+
size: t = 24
|
|
1303
|
+
}) => /* @__PURE__ */ e(
|
|
1304
|
+
"svg",
|
|
1305
|
+
{
|
|
1306
|
+
width: t,
|
|
1307
|
+
height: t,
|
|
1308
|
+
viewBox: "0 0 24 24",
|
|
1309
|
+
fill: "none",
|
|
1310
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1311
|
+
style: { color: r },
|
|
1312
|
+
children: [
|
|
1313
|
+
/* @__PURE__ */ o(
|
|
1314
|
+
"path",
|
|
1315
|
+
{
|
|
1316
|
+
d: "M20.5 9.5C22 9.5 22 10 22 11V13C22 14 22 14.5 20.5 14.5",
|
|
1317
|
+
stroke: "currentColor",
|
|
1318
|
+
strokeWidth: 1.5,
|
|
1319
|
+
strokeLinecap: "round",
|
|
1320
|
+
strokeLinejoin: "round"
|
|
1321
|
+
}
|
|
1322
|
+
),
|
|
1323
|
+
/* @__PURE__ */ o(
|
|
1324
|
+
"path",
|
|
1325
|
+
{
|
|
1326
|
+
d: "M6.38 10C6.71 11.31 6.71 12.69 6.38 14",
|
|
1327
|
+
stroke: "currentColor",
|
|
1328
|
+
strokeWidth: 1.5,
|
|
1329
|
+
strokeLinecap: "round",
|
|
1330
|
+
strokeLinejoin: "round"
|
|
1331
|
+
}
|
|
1332
|
+
),
|
|
1333
|
+
/* @__PURE__ */ o(
|
|
1334
|
+
"path",
|
|
1335
|
+
{
|
|
1336
|
+
d: "M9.88 10C10.21 11.31 10.21 12.69 9.88 14",
|
|
1337
|
+
stroke: "currentColor",
|
|
1338
|
+
strokeWidth: 1.5,
|
|
1339
|
+
strokeLinecap: "round",
|
|
1340
|
+
strokeLinejoin: "round"
|
|
1341
|
+
}
|
|
1342
|
+
),
|
|
1343
|
+
/* @__PURE__ */ o(
|
|
1344
|
+
"path",
|
|
1345
|
+
{
|
|
1346
|
+
d: "M13.38 10C13.71 11.31 13.71 12.69 13.38 14",
|
|
1347
|
+
stroke: "currentColor",
|
|
1348
|
+
strokeWidth: 1.5,
|
|
1349
|
+
strokeLinecap: "round",
|
|
1350
|
+
strokeLinejoin: "round"
|
|
1351
|
+
}
|
|
1352
|
+
),
|
|
1353
|
+
/* @__PURE__ */ o(
|
|
1354
|
+
"path",
|
|
1355
|
+
{
|
|
1356
|
+
d: "M13 19H7C3 19 2 18 2 14V10C2 6 3 5 7 5H13C17 5 18 6 18 10V14C18 18 17 19 13 19Z",
|
|
1357
|
+
stroke: "currentColor",
|
|
1358
|
+
strokeWidth: 1.5,
|
|
1359
|
+
strokeLinecap: "round",
|
|
1360
|
+
strokeLinejoin: "round"
|
|
1361
|
+
}
|
|
1362
|
+
)
|
|
1363
|
+
]
|
|
1364
|
+
}
|
|
1365
|
+
), R = ({
|
|
1366
|
+
color: r,
|
|
1367
|
+
size: t = 24
|
|
1368
|
+
}) => /* @__PURE__ */ e(
|
|
1369
|
+
"svg",
|
|
1370
|
+
{
|
|
1371
|
+
width: t,
|
|
1372
|
+
height: t,
|
|
1373
|
+
viewBox: "0 0 24 24",
|
|
1374
|
+
fill: "none",
|
|
1375
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1376
|
+
style: { color: r },
|
|
1377
|
+
children: [
|
|
1378
|
+
/* @__PURE__ */ o(
|
|
1379
|
+
"path",
|
|
1380
|
+
{
|
|
1381
|
+
d: "M20.5 15.25C20.09 15.25 19.75 14.91 19.75 14.5C19.75 14.09 20.09 13.75 20.5 13.75C21.09 13.75 21.22 13.66 21.23 13.66C21.25 13.6 21.25 13.25 21.25 13V11C21.25 10.75 21.25 10.41 21.21 10.32C21.2 10.33 21.05 10.25 20.5 10.25C20.09 10.25 19.75 9.91 19.75 9.5C19.75 9.09 20.09 8.75 20.5 8.75C22.58 8.75 22.75 9.77 22.75 11V13C22.75 14.23 22.58 15.25 20.5 15.25Z",
|
|
1382
|
+
fill: "currentColor"
|
|
1383
|
+
}
|
|
1384
|
+
),
|
|
1385
|
+
/* @__PURE__ */ o(
|
|
1386
|
+
"path",
|
|
1387
|
+
{
|
|
1388
|
+
d: "M6.38001 14.75C6.32001 14.75 6.26001 14.74 6.20001 14.73C5.80001 14.63 5.55001 14.22 5.65001 13.82C5.95001 12.63 5.95001 11.37 5.65001 10.18C5.55001 9.78001 5.79001 9.37001 6.20001 9.27001C6.60001 9.17001 7.00001 9.42001 7.10001 9.82001C7.46001 11.25 7.46001 12.76 7.10001 14.18C7.02001 14.52 6.71001 14.75 6.38001 14.75Z",
|
|
1389
|
+
fill: "currentColor"
|
|
1390
|
+
}
|
|
1391
|
+
),
|
|
1392
|
+
/* @__PURE__ */ o(
|
|
1393
|
+
"path",
|
|
1394
|
+
{
|
|
1395
|
+
d: "M9.88001 14.75C9.82001 14.75 9.76001 14.74 9.70001 14.73C9.30001 14.63 9.05001 14.22 9.15001 13.82C9.45001 12.63 9.45001 11.37 9.15001 10.18C9.05001 9.78001 9.29001 9.37001 9.70001 9.27001C10.1 9.17001 10.51 9.41001 10.61 9.82001C10.97 11.25 10.97 12.76 10.61 14.18C10.52 14.52 10.21 14.75 9.88001 14.75Z",
|
|
1396
|
+
fill: "currentColor"
|
|
1397
|
+
}
|
|
1398
|
+
),
|
|
1399
|
+
/* @__PURE__ */ o(
|
|
1400
|
+
"path",
|
|
1401
|
+
{
|
|
1402
|
+
d: "M13.38 14.75C13.32 14.75 13.26 14.74 13.2 14.73C12.8 14.63 12.55 14.22 12.65 13.82C12.95 12.63 12.95 11.37 12.65 10.18C12.55 9.78001 12.79 9.37001 13.2 9.27001C13.6 9.17001 14.01 9.41001 14.11 9.82001C14.47 11.25 14.47 12.76 14.11 14.18C14.02 14.52 13.71 14.75 13.38 14.75Z",
|
|
1403
|
+
fill: "currentColor"
|
|
1404
|
+
}
|
|
1405
|
+
),
|
|
1406
|
+
/* @__PURE__ */ o(
|
|
1407
|
+
"path",
|
|
1408
|
+
{
|
|
1409
|
+
d: "M13 19.75H7C2.59 19.75 1.25 18.41 1.25 14V10C1.25 5.59 2.59 4.25 7 4.25H13C17.41 4.25 18.75 5.59 18.75 10V14C18.75 18.41 17.41 19.75 13 19.75ZM7 5.75C3.43 5.75 2.75 6.43 2.75 10V14C2.75 17.57 3.43 18.25 7 18.25H13C16.57 18.25 17.25 17.57 17.25 14V10C17.25 6.43 16.57 5.75 13 5.75H7Z",
|
|
1410
|
+
fill: "currentColor"
|
|
1411
|
+
}
|
|
1412
|
+
)
|
|
1413
|
+
]
|
|
1414
|
+
}
|
|
1415
|
+
), q = ({
|
|
1416
|
+
color: r,
|
|
1417
|
+
size: t = 24
|
|
1418
|
+
}) => /* @__PURE__ */ e(
|
|
1419
|
+
"svg",
|
|
1420
|
+
{
|
|
1421
|
+
width: t,
|
|
1422
|
+
height: t,
|
|
1423
|
+
viewBox: "0 0 24 24",
|
|
1424
|
+
fill: "none",
|
|
1425
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1426
|
+
style: { color: r },
|
|
1427
|
+
children: [
|
|
1428
|
+
/* @__PURE__ */ o(
|
|
1429
|
+
"path",
|
|
1430
|
+
{
|
|
1431
|
+
opacity: "0.34",
|
|
1432
|
+
d: "M20.5 9.5C22 9.5 22 10 22 11V13C22 14 22 14.5 20.5 14.5",
|
|
1433
|
+
stroke: "currentColor",
|
|
1434
|
+
strokeWidth: 1.5,
|
|
1435
|
+
strokeLinecap: "round",
|
|
1436
|
+
strokeLinejoin: "round"
|
|
1437
|
+
}
|
|
1438
|
+
),
|
|
1439
|
+
/* @__PURE__ */ o(
|
|
1440
|
+
"path",
|
|
1441
|
+
{
|
|
1442
|
+
opacity: "0.34",
|
|
1443
|
+
d: "M6.38 10C6.71 11.31 6.71 12.69 6.38 14",
|
|
1444
|
+
stroke: "currentColor",
|
|
1445
|
+
strokeWidth: 1.5,
|
|
1446
|
+
strokeLinecap: "round",
|
|
1447
|
+
strokeLinejoin: "round"
|
|
1448
|
+
}
|
|
1449
|
+
),
|
|
1450
|
+
/* @__PURE__ */ o(
|
|
1451
|
+
"path",
|
|
1452
|
+
{
|
|
1453
|
+
opacity: "0.34",
|
|
1454
|
+
d: "M9.88 10C10.21 11.31 10.21 12.69 9.88 14",
|
|
1455
|
+
stroke: "currentColor",
|
|
1456
|
+
strokeWidth: 1.5,
|
|
1457
|
+
strokeLinecap: "round",
|
|
1458
|
+
strokeLinejoin: "round"
|
|
1459
|
+
}
|
|
1460
|
+
),
|
|
1461
|
+
/* @__PURE__ */ o(
|
|
1462
|
+
"path",
|
|
1463
|
+
{
|
|
1464
|
+
opacity: "0.34",
|
|
1465
|
+
d: "M13.38 10C13.71 11.31 13.71 12.69 13.38 14",
|
|
1466
|
+
stroke: "currentColor",
|
|
1467
|
+
strokeWidth: 1.5,
|
|
1468
|
+
strokeLinecap: "round",
|
|
1469
|
+
strokeLinejoin: "round"
|
|
1470
|
+
}
|
|
1471
|
+
),
|
|
1472
|
+
/* @__PURE__ */ o(
|
|
1473
|
+
"path",
|
|
1474
|
+
{
|
|
1475
|
+
d: "M13 19H7C3 19 2 18 2 14V10C2 6 3 5 7 5H13C17 5 18 6 18 10V14C18 18 17 19 13 19Z",
|
|
1476
|
+
stroke: "currentColor",
|
|
1477
|
+
strokeWidth: 1.5,
|
|
1478
|
+
strokeLinecap: "round",
|
|
1479
|
+
strokeLinejoin: "round"
|
|
1480
|
+
}
|
|
1481
|
+
)
|
|
1482
|
+
]
|
|
1483
|
+
}
|
|
1484
|
+
), A = ({
|
|
1485
|
+
color: r,
|
|
1486
|
+
size: t = 24
|
|
1487
|
+
}) => /* @__PURE__ */ e(
|
|
1488
|
+
"svg",
|
|
1489
|
+
{
|
|
1490
|
+
width: t,
|
|
1491
|
+
height: t,
|
|
1492
|
+
viewBox: "0 0 24 24",
|
|
1493
|
+
fill: "none",
|
|
1494
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1495
|
+
style: { color: r },
|
|
1496
|
+
children: [
|
|
1497
|
+
/* @__PURE__ */ o(
|
|
1498
|
+
"path",
|
|
1499
|
+
{
|
|
1500
|
+
d: "M20.42 9.00001C20.28 8.99001 20.1 8.98001 19.9 8.98001C19.51 8.98001 19.2 9.29001 19.2 9.68001V14.33C19.2 14.72 19.51 15.03 19.9 15.03C20.1 15.03 20.27 15.02 20.44 15.01C22 14.83 22 13.73 22 12.93V11.07C22 10.27 22 9.17001 20.42 9.00001Z",
|
|
1501
|
+
fill: "currentColor"
|
|
1502
|
+
}
|
|
1503
|
+
),
|
|
1504
|
+
/* @__PURE__ */ o(
|
|
1505
|
+
"path",
|
|
1506
|
+
{
|
|
1507
|
+
d: "M12.93 4.79001H7.35C3.25 4.79001 2 6.04001 2 10.14V13.86C2 17.96 3.25 19.21 7.35 19.21H12.93C17.03 19.21 18.28 17.96 18.28 13.86V10.14C18.28 6.04001 17.03 4.79001 12.93 4.79001ZM12.53 13.68C12.51 13.72 12.48 13.76 12.45 13.79L10.58 15.98C10.43 16.15 10.22 16.24 10.01 16.24C9.84 16.24 9.66 16.18 9.52 16.06C9.21 15.79 9.17 15.32 9.44 15L11.24 12.89C11.25 12.86 11.24 12.83 11.22 12.8C11.2 12.76 11.16 12.74 11.11 12.74H9.12C8.53 12.74 8.01 12.44 7.71 11.93C7.42 11.42 7.42 10.82 7.71 10.31L9.42 8.05001C9.67 7.72001 10.14 7.65001 10.47 7.90001C10.8 8.15001 10.87 8.62001 10.62 8.95001L8.97 11.14C9 11.1 9 11.14 9.02 11.19C9.04 11.23 9.08 11.25 9.13 11.25H11.14C11.73 11.25 12.25 11.55 12.55 12.06C12.82 12.57 12.82 13.17 12.53 13.68Z",
|
|
1508
|
+
fill: "currentColor"
|
|
1509
|
+
}
|
|
1510
|
+
)
|
|
1511
|
+
]
|
|
1512
|
+
}
|
|
1513
|
+
), G = ({
|
|
1514
|
+
color: r,
|
|
1515
|
+
size: t = 24
|
|
1516
|
+
}) => /* @__PURE__ */ e(
|
|
1517
|
+
"svg",
|
|
1518
|
+
{
|
|
1519
|
+
width: t,
|
|
1520
|
+
height: t,
|
|
1521
|
+
viewBox: "0 0 24 24",
|
|
1522
|
+
fill: "none",
|
|
1523
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1524
|
+
style: { color: r },
|
|
1525
|
+
children: [
|
|
1526
|
+
/* @__PURE__ */ o(
|
|
1527
|
+
"path",
|
|
1528
|
+
{
|
|
1529
|
+
d: "M20.5 9.5C22 9.5 22 10 22 11V13C22 14 22 14.5 20.5 14.5",
|
|
1530
|
+
stroke: "currentColor",
|
|
1531
|
+
strokeWidth: 1.5,
|
|
1532
|
+
strokeLinecap: "round",
|
|
1533
|
+
strokeLinejoin: "round"
|
|
1534
|
+
}
|
|
1535
|
+
),
|
|
1536
|
+
/* @__PURE__ */ o(
|
|
1537
|
+
"path",
|
|
1538
|
+
{
|
|
1539
|
+
d: "M11.27 12C12.04 12 12.52 12.83 12.14 13.5L10 16",
|
|
1540
|
+
stroke: "currentColor",
|
|
1541
|
+
strokeWidth: 1.5,
|
|
1542
|
+
strokeLinecap: "round",
|
|
1543
|
+
strokeLinejoin: "round"
|
|
1544
|
+
}
|
|
1545
|
+
),
|
|
1546
|
+
/* @__PURE__ */ o(
|
|
1547
|
+
"path",
|
|
1548
|
+
{
|
|
1549
|
+
d: "M10 8L8.11001 10.5C7.72001 11.17 8.20001 12 8.97001 12",
|
|
1550
|
+
stroke: "currentColor",
|
|
1551
|
+
strokeWidth: 1.5,
|
|
1552
|
+
strokeLinecap: "round",
|
|
1553
|
+
strokeLinejoin: "round"
|
|
1554
|
+
}
|
|
1555
|
+
),
|
|
1556
|
+
/* @__PURE__ */ o(
|
|
1557
|
+
"path",
|
|
1558
|
+
{
|
|
1559
|
+
d: "M2 10C2 6 3 5 7 5",
|
|
1560
|
+
stroke: "currentColor",
|
|
1561
|
+
strokeWidth: 1.5,
|
|
1562
|
+
strokeLinecap: "round",
|
|
1563
|
+
strokeLinejoin: "round"
|
|
1564
|
+
}
|
|
1565
|
+
),
|
|
1566
|
+
/* @__PURE__ */ o(
|
|
1567
|
+
"path",
|
|
1568
|
+
{
|
|
1569
|
+
d: "M7 19C3 19 2 18 2 14",
|
|
1570
|
+
stroke: "currentColor",
|
|
1571
|
+
strokeWidth: 1.5,
|
|
1572
|
+
strokeLinecap: "round",
|
|
1573
|
+
strokeLinejoin: "round"
|
|
1574
|
+
}
|
|
1575
|
+
),
|
|
1576
|
+
/* @__PURE__ */ o(
|
|
1577
|
+
"path",
|
|
1578
|
+
{
|
|
1579
|
+
d: "M13 5C17 5 18 6 18 10V14C18 18 17 19 13 19",
|
|
1580
|
+
stroke: "currentColor",
|
|
1581
|
+
strokeWidth: 1.5,
|
|
1582
|
+
strokeLinecap: "round",
|
|
1583
|
+
strokeLinejoin: "round"
|
|
1584
|
+
}
|
|
1585
|
+
)
|
|
1586
|
+
]
|
|
1587
|
+
}
|
|
1588
|
+
), J = ({
|
|
1589
|
+
color: r,
|
|
1590
|
+
size: t = 24
|
|
1591
|
+
}) => /* @__PURE__ */ e(
|
|
1592
|
+
"svg",
|
|
1593
|
+
{
|
|
1594
|
+
width: t,
|
|
1595
|
+
height: t,
|
|
1596
|
+
viewBox: "0 0 24 24",
|
|
1597
|
+
fill: "none",
|
|
1598
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1599
|
+
style: { color: r },
|
|
1600
|
+
children: [
|
|
1601
|
+
/* @__PURE__ */ o(
|
|
1602
|
+
"path",
|
|
1603
|
+
{
|
|
1604
|
+
opacity: "0.4",
|
|
1605
|
+
d: "M12.93 4.79001H7.35C3.25 4.79001 2 6.04001 2 10.14V13.86C2 17.96 3.25 19.21 7.35 19.21H12.93C17.03 19.21 18.28 17.96 18.28 13.86V10.14C18.28 6.04001 17.03 4.79001 12.93 4.79001Z",
|
|
1606
|
+
fill: "currentColor"
|
|
1607
|
+
}
|
|
1608
|
+
),
|
|
1609
|
+
/* @__PURE__ */ o(
|
|
1610
|
+
"path",
|
|
1611
|
+
{
|
|
1612
|
+
d: "M20.42 9.00001C20.28 8.99001 20.1 8.98001 19.9 8.98001C19.51 8.98001 19.2 9.29001 19.2 9.68001V14.33C19.2 14.72 19.51 15.03 19.9 15.03C20.1 15.03 20.27 15.02 20.44 15.01C22 14.83 22 13.73 22 12.93V11.07C22 10.27 22 9.17001 20.42 9.00001Z",
|
|
1613
|
+
fill: "currentColor"
|
|
1614
|
+
}
|
|
1615
|
+
),
|
|
1616
|
+
/* @__PURE__ */ o(
|
|
1617
|
+
"path",
|
|
1618
|
+
{
|
|
1619
|
+
d: "M10.01 16.24C9.83999 16.24 9.65999 16.18 9.51999 16.06C9.20999 15.79 9.16999 15.32 9.43999 15L11.24 12.89C11.25 12.86 11.24 12.83 11.22 12.8C11.2 12.76 11.16 12.74 11.11 12.74H9.11999C8.52999 12.74 8.00999 12.44 7.70999 11.93C7.41999 11.42 7.41999 10.82 7.70999 10.31L9.41999 8.05C9.66999 7.72 10.14 7.65 10.47 7.9C10.8 8.15 10.87 8.62 10.62 8.95L8.96999 11.14C8.99999 11.1 8.99999 11.14 9.01999 11.19C9.03999 11.23 9.07999 11.25 9.12999 11.25H11.14C11.73 11.25 12.25 11.55 12.55 12.06C12.84 12.57 12.84 13.17 12.55 13.68C12.53 13.72 12.5 13.76 12.47 13.79L10.6 15.98C10.44 16.16 10.23 16.24 10.01 16.24Z",
|
|
1620
|
+
fill: "currentColor"
|
|
1621
|
+
}
|
|
1622
|
+
)
|
|
1623
|
+
]
|
|
1624
|
+
}
|
|
1625
|
+
), K = ({
|
|
1626
|
+
color: r,
|
|
1627
|
+
size: t = 24
|
|
1628
|
+
}) => /* @__PURE__ */ e(
|
|
1629
|
+
"svg",
|
|
1630
|
+
{
|
|
1631
|
+
width: t,
|
|
1632
|
+
height: t,
|
|
1633
|
+
viewBox: "0 0 24 24",
|
|
1634
|
+
fill: "none",
|
|
1635
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1636
|
+
style: { color: r },
|
|
1637
|
+
children: [
|
|
1638
|
+
/* @__PURE__ */ o(
|
|
1639
|
+
"path",
|
|
1640
|
+
{
|
|
1641
|
+
d: "M20.5 9.5C22 9.5 22 10 22 11V13C22 14 22 14.5 20.5 14.5",
|
|
1642
|
+
stroke: "currentColor",
|
|
1643
|
+
strokeWidth: 1.5,
|
|
1644
|
+
strokeLinecap: "round",
|
|
1645
|
+
strokeLinejoin: "round"
|
|
1646
|
+
}
|
|
1647
|
+
),
|
|
1648
|
+
/* @__PURE__ */ o(
|
|
1649
|
+
"path",
|
|
1650
|
+
{
|
|
1651
|
+
d: "M10 8L8.11001 10.5C7.72001 11.17 8.20001 12 8.97001 12H11.27C12.04 12 12.52 12.83 12.14 13.5L10 16",
|
|
1652
|
+
stroke: "currentColor",
|
|
1653
|
+
strokeWidth: 1.5,
|
|
1654
|
+
strokeLinecap: "round",
|
|
1655
|
+
strokeLinejoin: "round"
|
|
1656
|
+
}
|
|
1657
|
+
),
|
|
1658
|
+
/* @__PURE__ */ o(
|
|
1659
|
+
"path",
|
|
1660
|
+
{
|
|
1661
|
+
d: "M7 19C3 19 2 18 2 14V10C2 6 3 5 7 5",
|
|
1662
|
+
stroke: "currentColor",
|
|
1663
|
+
strokeWidth: 1.5,
|
|
1664
|
+
strokeLinecap: "round",
|
|
1665
|
+
strokeLinejoin: "round"
|
|
1666
|
+
}
|
|
1667
|
+
),
|
|
1668
|
+
/* @__PURE__ */ o(
|
|
1669
|
+
"path",
|
|
1670
|
+
{
|
|
1671
|
+
d: "M13 5C17 5 18 6 18 10V14C18 18 17 19 13 19",
|
|
1672
|
+
stroke: "currentColor",
|
|
1673
|
+
strokeWidth: 1.5,
|
|
1674
|
+
strokeLinecap: "round",
|
|
1675
|
+
strokeLinejoin: "round"
|
|
1676
|
+
}
|
|
1677
|
+
)
|
|
1678
|
+
]
|
|
1679
|
+
}
|
|
1680
|
+
), P = ({
|
|
1681
|
+
color: r,
|
|
1682
|
+
size: t = 24
|
|
1683
|
+
}) => /* @__PURE__ */ e(
|
|
1684
|
+
"svg",
|
|
1685
|
+
{
|
|
1686
|
+
width: t,
|
|
1687
|
+
height: t,
|
|
1688
|
+
viewBox: "0 0 24 24",
|
|
1689
|
+
fill: "none",
|
|
1690
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1691
|
+
style: { color: r },
|
|
1692
|
+
children: [
|
|
1693
|
+
/* @__PURE__ */ o(
|
|
1694
|
+
"path",
|
|
1695
|
+
{
|
|
1696
|
+
d: "M20.5 15.25C20.09 15.25 19.75 14.91 19.75 14.5C19.75 14.09 20.09 13.75 20.5 13.75C21.09 13.75 21.22 13.66 21.23 13.66C21.25 13.6 21.25 13.25 21.25 13V11C21.25 10.75 21.25 10.41 21.21 10.32C21.2 10.33 21.05 10.25 20.5 10.25C20.09 10.25 19.75 9.91 19.75 9.5C19.75 9.09 20.09 8.75 20.5 8.75C22.58 8.75 22.75 9.77 22.75 11V13C22.75 14.23 22.58 15.25 20.5 15.25Z",
|
|
1697
|
+
fill: "currentColor"
|
|
1698
|
+
}
|
|
1699
|
+
),
|
|
1700
|
+
/* @__PURE__ */ o(
|
|
1701
|
+
"path",
|
|
1702
|
+
{
|
|
1703
|
+
d: "M10 16.75C9.83002 16.75 9.65002 16.69 9.51002 16.57C9.20002 16.3 9.16002 15.83 9.43002 15.51L11.51 13.08C11.54 12.99 11.51 12.91 11.49 12.87C11.46 12.82 11.4 12.75 11.27 12.75H8.97002C8.34002 12.75 7.77002 12.42 7.45002 11.88C7.13002 11.34 7.13002 10.68 7.45002 10.13L9.40002 7.55C9.65002 7.22 10.12 7.15 10.45 7.4C10.78 7.65 10.85 8.12 10.6 8.45L8.71002 10.95C8.70002 10.98 8.74002 11.07 8.76002 11.12C8.79002 11.17 8.85002 11.24 8.98002 11.24H11.28C11.91 11.24 12.48 11.57 12.8 12.11C13.12 12.65 13.12 13.31 12.8 13.86C12.78 13.9 12.75 13.94 12.72 13.97L10.58 16.47C10.42 16.66 10.21 16.75 10 16.75Z",
|
|
1704
|
+
fill: "currentColor"
|
|
1705
|
+
}
|
|
1706
|
+
),
|
|
1707
|
+
/* @__PURE__ */ o(
|
|
1708
|
+
"path",
|
|
1709
|
+
{
|
|
1710
|
+
d: "M7 19.75C2.59 19.75 1.25 18.41 1.25 14V10C1.25 5.59 2.59 4.25 7 4.25C7.41 4.25 7.75 4.59 7.75 5C7.75 5.41 7.41 5.75 7 5.75C3.43 5.75 2.75 6.43 2.75 10V14C2.75 17.57 3.43 18.25 7 18.25C7.41 18.25 7.75 18.59 7.75 19C7.75 19.41 7.41 19.75 7 19.75Z",
|
|
1711
|
+
fill: "currentColor"
|
|
1712
|
+
}
|
|
1713
|
+
),
|
|
1714
|
+
/* @__PURE__ */ o(
|
|
1715
|
+
"path",
|
|
1716
|
+
{
|
|
1717
|
+
d: "M13 19.75C12.59 19.75 12.25 19.41 12.25 19C12.25 18.59 12.59 18.25 13 18.25C16.57 18.25 17.25 17.57 17.25 14V10C17.25 6.43 16.57 5.75 13 5.75C12.59 5.75 12.25 5.41 12.25 5C12.25 4.59 12.59 4.25 13 4.25C17.41 4.25 18.75 5.59 18.75 10V14C18.75 18.41 17.41 19.75 13 19.75Z",
|
|
1718
|
+
fill: "currentColor"
|
|
1719
|
+
}
|
|
1720
|
+
)
|
|
1721
|
+
]
|
|
1722
|
+
}
|
|
1723
|
+
), Q = ({
|
|
1724
|
+
color: r,
|
|
1725
|
+
size: t = 24
|
|
1726
|
+
}) => /* @__PURE__ */ e(
|
|
1727
|
+
"svg",
|
|
1728
|
+
{
|
|
1729
|
+
width: t,
|
|
1730
|
+
height: t,
|
|
1731
|
+
viewBox: "0 0 24 24",
|
|
1732
|
+
fill: "none",
|
|
1733
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1734
|
+
style: { color: r },
|
|
1735
|
+
children: [
|
|
1736
|
+
/* @__PURE__ */ o(
|
|
1737
|
+
"path",
|
|
1738
|
+
{
|
|
1739
|
+
opacity: "0.34",
|
|
1740
|
+
d: "M20.5 9.5C22 9.5 22 10 22 11V13C22 14 22 14.5 20.5 14.5",
|
|
1741
|
+
stroke: "currentColor",
|
|
1742
|
+
"stroke-width": "1.5",
|
|
1743
|
+
"stroke-linecap": "round",
|
|
1744
|
+
"stroke-linejoin": "round"
|
|
1745
|
+
}
|
|
1746
|
+
),
|
|
1747
|
+
/* @__PURE__ */ o(
|
|
1748
|
+
"path",
|
|
1749
|
+
{
|
|
1750
|
+
opacity: "0.34",
|
|
1751
|
+
d: "M10 8L8.11001 10.5C7.72001 11.17 8.20001 12 8.97001 12H11.27C12.04 12 12.52 12.83 12.14 13.5L10 16",
|
|
1752
|
+
stroke: "currentColor",
|
|
1753
|
+
"stroke-width": "1.5",
|
|
1754
|
+
"stroke-linecap": "round",
|
|
1755
|
+
"stroke-linejoin": "round"
|
|
1756
|
+
}
|
|
1757
|
+
),
|
|
1758
|
+
/* @__PURE__ */ o(
|
|
1759
|
+
"path",
|
|
1760
|
+
{
|
|
1761
|
+
d: "M7 19C3 19 2 18 2 14V10C2 6 3 5 7 5",
|
|
1762
|
+
stroke: "currentColor",
|
|
1763
|
+
"stroke-width": "1.5",
|
|
1764
|
+
"stroke-linecap": "round",
|
|
1765
|
+
"stroke-linejoin": "round"
|
|
1766
|
+
}
|
|
1767
|
+
),
|
|
1768
|
+
/* @__PURE__ */ o(
|
|
1769
|
+
"path",
|
|
1770
|
+
{
|
|
1771
|
+
d: "M13 5C17 5 18 6 18 10V14C18 18 17 19 13 19",
|
|
1772
|
+
stroke: "currentColor",
|
|
1773
|
+
"stroke-width": "1.5",
|
|
1774
|
+
"stroke-linecap": "round",
|
|
1775
|
+
"stroke-linejoin": "round"
|
|
1776
|
+
}
|
|
1777
|
+
)
|
|
1778
|
+
]
|
|
1779
|
+
}
|
|
1780
|
+
), S = ({
|
|
1781
|
+
color: r,
|
|
1782
|
+
size: t = 24
|
|
1783
|
+
}) => /* @__PURE__ */ e(
|
|
1784
|
+
"svg",
|
|
1785
|
+
{
|
|
1786
|
+
width: t,
|
|
1787
|
+
height: t,
|
|
1788
|
+
viewBox: "0 0 24 24",
|
|
1789
|
+
fill: "none",
|
|
1790
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1791
|
+
style: { color: r },
|
|
1792
|
+
children: [
|
|
1793
|
+
/* @__PURE__ */ o(
|
|
1794
|
+
"path",
|
|
1795
|
+
{
|
|
1796
|
+
d: "M20.42 9.00001C20.28 8.99001 20.1 8.98001 19.9 8.98001C19.51 8.98001 19.2 9.29001 19.2 9.68001V14.33C19.2 14.72 19.51 15.03 19.9 15.03C20.1 15.03 20.27 15.02 20.44 15.01C22 14.83 22 13.73 22 12.93V11.07C22 10.27 22 9.17001 20.42 9.00001Z",
|
|
1797
|
+
fill: "currentColor"
|
|
1798
|
+
}
|
|
1799
|
+
),
|
|
1800
|
+
/* @__PURE__ */ o(
|
|
1801
|
+
"path",
|
|
1802
|
+
{
|
|
1803
|
+
d: "M18.28 10.14V13.86C18.28 16.81 15.88 19.21 12.93 19.21H9.25997C8.46997 19.21 7.98997 18.34 8.40997 17.68L15.67 6.20001C16.03 5.63001 16.84 5.58001 17.29 6.09001C18.01 6.92001 18.28 8.21001 18.28 10.14Z",
|
|
1804
|
+
fill: "currentColor"
|
|
1805
|
+
}
|
|
1806
|
+
),
|
|
1807
|
+
/* @__PURE__ */ o(
|
|
1808
|
+
"path",
|
|
1809
|
+
{
|
|
1810
|
+
d: "M16.4 1.86999C16.05 1.64999 15.59 1.74999 15.37 2.09999L13.66 4.80999C13.43 4.79999 13.19 4.78999 12.93 4.78999H7.35C3.25 4.78999 2 6.03999 2 10.14V13.86C2 16.91 2.7 18.37 4.74 18.92L3.37 21.1C3.15 21.45 3.25 21.91 3.6 22.13C3.72 22.21 3.86 22.25 4 22.25C4.25 22.25 4.49 22.13 4.63 21.9L16.63 2.89999C16.86 2.54999 16.75 2.08999 16.4 1.86999Z",
|
|
1811
|
+
fill: "currentColor"
|
|
1812
|
+
}
|
|
1813
|
+
)
|
|
1814
|
+
]
|
|
1815
|
+
}
|
|
1816
|
+
), U = ({
|
|
1817
|
+
color: r,
|
|
1818
|
+
size: t = 24
|
|
1819
|
+
}) => /* @__PURE__ */ e(
|
|
1820
|
+
"svg",
|
|
1821
|
+
{
|
|
1822
|
+
width: t,
|
|
1823
|
+
height: t,
|
|
1824
|
+
viewBox: "0 0 24 24",
|
|
1825
|
+
fill: "none",
|
|
1826
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1827
|
+
style: { color: r },
|
|
1828
|
+
children: [
|
|
1829
|
+
/* @__PURE__ */ o(
|
|
1830
|
+
"path",
|
|
1831
|
+
{
|
|
1832
|
+
d: "M20.5 9.5C22 9.5 22 10 22 11V13C22 14 22 14.5 20.5 14.5",
|
|
1833
|
+
stroke: "currentColor",
|
|
1834
|
+
strokeWidth: 1.5,
|
|
1835
|
+
strokeLinecap: "round",
|
|
1836
|
+
strokeLinejoin: "round"
|
|
1837
|
+
}
|
|
1838
|
+
),
|
|
1839
|
+
/* @__PURE__ */ o(
|
|
1840
|
+
"path",
|
|
1841
|
+
{
|
|
1842
|
+
d: "M4 21.5L8.09 15.03L16 2.5",
|
|
1843
|
+
stroke: "currentColor",
|
|
1844
|
+
strokeWidth: 1.5,
|
|
1845
|
+
strokeLinecap: "round",
|
|
1846
|
+
strokeLinejoin: "round"
|
|
1847
|
+
}
|
|
1848
|
+
),
|
|
1849
|
+
/* @__PURE__ */ o(
|
|
1850
|
+
"path",
|
|
1851
|
+
{
|
|
1852
|
+
d: "M2 14C2 17.4 2.72 18.63 5.39 18.92",
|
|
1853
|
+
stroke: "currentColor",
|
|
1854
|
+
strokeWidth: 1.5,
|
|
1855
|
+
strokeLinecap: "round",
|
|
1856
|
+
strokeLinejoin: "round"
|
|
1857
|
+
}
|
|
1858
|
+
),
|
|
1859
|
+
/* @__PURE__ */ o(
|
|
1860
|
+
"path",
|
|
1861
|
+
{
|
|
1862
|
+
d: "M7 5C3 5 2 6 2 10",
|
|
1863
|
+
stroke: "currentColor",
|
|
1864
|
+
strokeWidth: 1.5,
|
|
1865
|
+
strokeLinecap: "round",
|
|
1866
|
+
strokeLinejoin: "round"
|
|
1867
|
+
}
|
|
1868
|
+
),
|
|
1869
|
+
/* @__PURE__ */ o(
|
|
1870
|
+
"path",
|
|
1871
|
+
{
|
|
1872
|
+
d: "M13 19C17 19 18 18 18 14V9.99999C18 6.60999 17.28 5.36999 14.63 5.07999",
|
|
1873
|
+
stroke: "currentColor",
|
|
1874
|
+
strokeWidth: 1.5,
|
|
1875
|
+
strokeLinecap: "round",
|
|
1876
|
+
strokeLinejoin: "round"
|
|
1877
|
+
}
|
|
1878
|
+
)
|
|
1879
|
+
]
|
|
1880
|
+
}
|
|
1881
|
+
), X = ({
|
|
1882
|
+
color: r,
|
|
1883
|
+
size: t = 24
|
|
1884
|
+
}) => /* @__PURE__ */ e(
|
|
1885
|
+
"svg",
|
|
1886
|
+
{
|
|
1887
|
+
width: t,
|
|
1888
|
+
height: t,
|
|
1889
|
+
viewBox: "0 0 24 24",
|
|
1890
|
+
fill: "none",
|
|
1891
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1892
|
+
style: { color: r },
|
|
1893
|
+
children: [
|
|
1894
|
+
/* @__PURE__ */ o(
|
|
1895
|
+
"path",
|
|
1896
|
+
{
|
|
1897
|
+
d: "M20.42 9.00001C20.28 8.99001 20.1 8.98001 19.9 8.98001C19.51 8.98001 19.2 9.29001 19.2 9.68001V14.33C19.2 14.72 19.51 15.03 19.9 15.03C20.1 15.03 20.27 15.02 20.44 15.01C22 14.83 22 13.73 22 12.93V11.07C22 10.27 22 9.17001 20.42 9.00001Z",
|
|
1898
|
+
fill: "currentColor"
|
|
1899
|
+
}
|
|
1900
|
+
),
|
|
1901
|
+
/* @__PURE__ */ o(
|
|
1902
|
+
"path",
|
|
1903
|
+
{
|
|
1904
|
+
opacity: "0.4",
|
|
1905
|
+
d: "M14.5 4.87001L5.52 19.09C2.87 18.71 2 17.27 2 13.86V10.14C2 6.04001 3.25 4.79001 7.35 4.79001H12.93C13.51 4.79001 14.03 4.81001 14.5 4.87001Z",
|
|
1906
|
+
fill: "currentColor"
|
|
1907
|
+
}
|
|
1908
|
+
),
|
|
1909
|
+
/* @__PURE__ */ o(
|
|
1910
|
+
"path",
|
|
1911
|
+
{
|
|
1912
|
+
opacity: "0.4",
|
|
1913
|
+
d: "M18.28 10.14V13.86C18.28 16.81 15.88 19.21 12.93 19.21H7.45001L16.23 5.31C17.75 6 18.28 7.46 18.28 10.14Z",
|
|
1914
|
+
fill: "currentColor"
|
|
1915
|
+
}
|
|
1916
|
+
),
|
|
1917
|
+
/* @__PURE__ */ o(
|
|
1918
|
+
"path",
|
|
1919
|
+
{
|
|
1920
|
+
d: "M4.00003 22.25C3.86003 22.25 3.72003 22.21 3.60003 22.13C3.25003 21.91 3.14003 21.45 3.37003 21.1L15.37 2.09999C15.59 1.74999 16.06 1.64999 16.4 1.86999C16.75 2.08999 16.86 2.54999 16.63 2.89999L4.63003 21.9C4.49003 22.13 4.25003 22.25 4.00003 22.25Z",
|
|
1921
|
+
fill: "currentColor"
|
|
1922
|
+
}
|
|
1923
|
+
)
|
|
1924
|
+
]
|
|
1925
|
+
}
|
|
1926
|
+
), Y = ({
|
|
1927
|
+
color: r,
|
|
1928
|
+
size: t = 24
|
|
1929
|
+
}) => /* @__PURE__ */ e(
|
|
1930
|
+
"svg",
|
|
1931
|
+
{
|
|
1932
|
+
width: t,
|
|
1933
|
+
height: t,
|
|
1934
|
+
viewBox: "0 0 24 24",
|
|
1935
|
+
fill: "none",
|
|
1936
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1937
|
+
style: { color: r },
|
|
1938
|
+
children: [
|
|
1939
|
+
/* @__PURE__ */ o(
|
|
1940
|
+
"path",
|
|
1941
|
+
{
|
|
1942
|
+
d: "M20.5 9.5C22 9.5 22 10 22 11V13C22 14 22 14.5 20.5 14.5",
|
|
1943
|
+
stroke: "currentColor",
|
|
1944
|
+
strokeWidth: 1.5,
|
|
1945
|
+
strokeLinecap: "round",
|
|
1946
|
+
strokeLinejoin: "round"
|
|
1947
|
+
}
|
|
1948
|
+
),
|
|
1949
|
+
/* @__PURE__ */ o(
|
|
1950
|
+
"path",
|
|
1951
|
+
{
|
|
1952
|
+
d: "M4 21.5L16 2.5",
|
|
1953
|
+
stroke: "currentColor",
|
|
1954
|
+
strokeWidth: 1.5,
|
|
1955
|
+
strokeLinecap: "round",
|
|
1956
|
+
strokeLinejoin: "round"
|
|
1957
|
+
}
|
|
1958
|
+
),
|
|
1959
|
+
/* @__PURE__ */ o(
|
|
1960
|
+
"path",
|
|
1961
|
+
{
|
|
1962
|
+
d: "M7 5C3 5 2 6 2 10V14C2 17.4 2.72 18.63 5.39 18.92",
|
|
1963
|
+
stroke: "currentColor",
|
|
1964
|
+
strokeWidth: 1.5,
|
|
1965
|
+
strokeLinecap: "round",
|
|
1966
|
+
strokeLinejoin: "round"
|
|
1967
|
+
}
|
|
1968
|
+
),
|
|
1969
|
+
/* @__PURE__ */ o(
|
|
1970
|
+
"path",
|
|
1971
|
+
{
|
|
1972
|
+
d: "M13 19C17 19 18 18 18 14V10C18 6.61 17.28 5.37 14.63 5.08",
|
|
1973
|
+
stroke: "currentColor",
|
|
1974
|
+
strokeWidth: 1.5,
|
|
1975
|
+
strokeLinecap: "round",
|
|
1976
|
+
strokeLinejoin: "round"
|
|
1977
|
+
}
|
|
1978
|
+
)
|
|
1979
|
+
]
|
|
1980
|
+
}
|
|
1981
|
+
), _ = ({
|
|
1982
|
+
color: r,
|
|
1983
|
+
size: t = 24
|
|
1984
|
+
}) => /* @__PURE__ */ e(
|
|
1985
|
+
"svg",
|
|
1986
|
+
{
|
|
1987
|
+
width: t,
|
|
1988
|
+
height: t,
|
|
1989
|
+
viewBox: "0 0 24 24",
|
|
1990
|
+
fill: "none",
|
|
1991
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1992
|
+
style: { color: r },
|
|
1993
|
+
children: [
|
|
1994
|
+
/* @__PURE__ */ o(
|
|
1995
|
+
"path",
|
|
1996
|
+
{
|
|
1997
|
+
d: "M20.5 15.25C20.09 15.25 19.75 14.91 19.75 14.5C19.75 14.09 20.09 13.75 20.5 13.75C21.09 13.75 21.22 13.66 21.23 13.66C21.25 13.6 21.25 13.25 21.25 13V11C21.25 10.75 21.25 10.41 21.21 10.32C21.2 10.33 21.05 10.25 20.5 10.25C20.09 10.25 19.75 9.91 19.75 9.5C19.75 9.09 20.09 8.75 20.5 8.75C22.58 8.75 22.75 9.77 22.75 11V13C22.75 14.23 22.58 15.25 20.5 15.25Z",
|
|
1998
|
+
fill: "currentColor"
|
|
1999
|
+
}
|
|
2000
|
+
),
|
|
2001
|
+
/* @__PURE__ */ o(
|
|
2002
|
+
"path",
|
|
2003
|
+
{
|
|
2004
|
+
d: "M4.00003 22.25C3.86003 22.25 3.72003 22.21 3.60003 22.13C3.25003 21.91 3.14003 21.45 3.37003 21.1L15.37 2.09999C15.59 1.74999 16.06 1.64999 16.4 1.86999C16.75 2.08999 16.86 2.54999 16.63 2.89999L4.63003 21.9C4.49003 22.13 4.25003 22.25 4.00003 22.25Z",
|
|
2005
|
+
fill: "currentColor"
|
|
2006
|
+
}
|
|
2007
|
+
),
|
|
2008
|
+
/* @__PURE__ */ o(
|
|
2009
|
+
"path",
|
|
2010
|
+
{
|
|
2011
|
+
d: "M5.39 19.67C5.36 19.67 5.33 19.67 5.31 19.67C1.91 19.29 1.25 17.31 1.25 14V10C1.25 5.59 2.59 4.25 7 4.25C7.41 4.25 7.75 4.59 7.75 5C7.75 5.41 7.41 5.75 7 5.75C3.43 5.75 2.75 6.43 2.75 10V14C2.75 17.32 3.43 17.95 5.47 18.18C5.88 18.23 6.18 18.6 6.13 19.01C6.09 19.39 5.76 19.67 5.39 19.67Z",
|
|
2012
|
+
fill: "currentColor"
|
|
2013
|
+
}
|
|
2014
|
+
),
|
|
2015
|
+
/* @__PURE__ */ o(
|
|
2016
|
+
"path",
|
|
2017
|
+
{
|
|
2018
|
+
d: "M13 19.75C12.59 19.75 12.25 19.41 12.25 19C12.25 18.59 12.59 18.25 13 18.25C16.57 18.25 17.25 17.57 17.25 14V9.99999C17.25 6.68999 16.57 6.04999 14.54 5.81999C14.13 5.76999 13.83 5.39999 13.88 4.98999C13.93 4.57999 14.29 4.26999 14.71 4.32999C18.09 4.70999 18.75 6.69999 18.75 9.99999V14C18.75 18.41 17.41 19.75 13 19.75Z",
|
|
2019
|
+
fill: "currentColor"
|
|
2020
|
+
}
|
|
2021
|
+
)
|
|
2022
|
+
]
|
|
2023
|
+
}
|
|
2024
|
+
), $ = ({
|
|
2025
|
+
color: r,
|
|
2026
|
+
size: t = 24
|
|
2027
|
+
}) => /* @__PURE__ */ e(
|
|
2028
|
+
"svg",
|
|
2029
|
+
{
|
|
2030
|
+
width: t,
|
|
2031
|
+
height: t,
|
|
2032
|
+
viewBox: "0 0 24 24",
|
|
2033
|
+
fill: "none",
|
|
2034
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2035
|
+
style: { color: r },
|
|
2036
|
+
children: [
|
|
2037
|
+
/* @__PURE__ */ o(
|
|
2038
|
+
"path",
|
|
2039
|
+
{
|
|
2040
|
+
opacity: "0.34",
|
|
2041
|
+
d: "M20.5 9.5C22 9.5 22 10 22 11V13C22 14 22 14.5 20.5 14.5",
|
|
2042
|
+
stroke: "currentColor",
|
|
2043
|
+
strokeWidth: 1.5,
|
|
2044
|
+
strokeLinecap: "round",
|
|
2045
|
+
strokeLinejoin: "round"
|
|
2046
|
+
}
|
|
2047
|
+
),
|
|
2048
|
+
/* @__PURE__ */ o(
|
|
2049
|
+
"path",
|
|
2050
|
+
{
|
|
2051
|
+
d: "M4 21.5L16 2.5",
|
|
2052
|
+
stroke: "currentColor",
|
|
2053
|
+
strokeWidth: 1.5,
|
|
2054
|
+
strokeLinecap: "round",
|
|
2055
|
+
strokeLinejoin: "round"
|
|
2056
|
+
}
|
|
2057
|
+
),
|
|
2058
|
+
/* @__PURE__ */ o(
|
|
2059
|
+
"path",
|
|
2060
|
+
{
|
|
2061
|
+
d: "M7 5C3 5 2 6 2 10V14C2 17.4 2.72 18.63 5.39 18.92",
|
|
2062
|
+
stroke: "currentColor",
|
|
2063
|
+
strokeWidth: 1.5,
|
|
2064
|
+
strokeLinecap: "round",
|
|
2065
|
+
strokeLinejoin: "round"
|
|
2066
|
+
}
|
|
2067
|
+
),
|
|
2068
|
+
/* @__PURE__ */ o(
|
|
2069
|
+
"path",
|
|
2070
|
+
{
|
|
2071
|
+
opacity: "0.34",
|
|
2072
|
+
d: "M13 19C17 19 18 18 18 14V9.99999C18 6.60999 17.28 5.36999 14.63 5.07999",
|
|
2073
|
+
stroke: "currentColor",
|
|
2074
|
+
strokeWidth: 1.5,
|
|
2075
|
+
strokeLinecap: "round",
|
|
2076
|
+
strokeLinejoin: "round"
|
|
2077
|
+
}
|
|
2078
|
+
)
|
|
2079
|
+
]
|
|
2080
|
+
}
|
|
1535
2081
|
);
|
|
1536
2082
|
export {
|
|
1537
|
-
|
|
1538
|
-
|
|
1539
|
-
|
|
1540
|
-
|
|
1541
|
-
|
|
1542
|
-
|
|
2083
|
+
A as BatteryChargingBoldIcon,
|
|
2084
|
+
G as BatteryChargingBrokenIcon,
|
|
2085
|
+
J as BatteryChargingBulkIcon,
|
|
2086
|
+
K as BatteryChargingLinearIcon,
|
|
2087
|
+
P as BatteryChargingOutlineIcon,
|
|
2088
|
+
Q as BatteryChargingTwotoneIcon,
|
|
2089
|
+
S as BatteryDisableBoldIcon,
|
|
2090
|
+
U as BatteryDisableBrokenIcon,
|
|
2091
|
+
X as BatteryDisableBulkIcon,
|
|
2092
|
+
Y as BatteryDisableLinearIcon,
|
|
2093
|
+
_ as BatteryDisableOutlineIcon,
|
|
2094
|
+
$ as BatteryDisableTwotoneIcon,
|
|
2095
|
+
L as BatteryEmptyBoldIcon,
|
|
2096
|
+
g as BatteryEmptyBrokenIcon,
|
|
2097
|
+
M as BatteryEmptyBulkIcon,
|
|
2098
|
+
V as BatteryEmptyLinearIcon,
|
|
2099
|
+
v as BatteryEmptyOutlineIcon,
|
|
2100
|
+
f as BatteryEmptyTwotoneIcon,
|
|
2101
|
+
D as BatteryFullBoldIcon,
|
|
2102
|
+
E as BatteryFullBrokenIcon,
|
|
2103
|
+
F as BatteryFullBulkIcon,
|
|
2104
|
+
N as BatteryFullLinearIcon,
|
|
2105
|
+
R as BatteryFullOutlineIcon,
|
|
2106
|
+
q as BatteryFullTwotoneIcon,
|
|
1543
2107
|
y as BatteryLowBoldIcon,
|
|
1544
|
-
|
|
1545
|
-
|
|
2108
|
+
B as BatteryLowBrokenIcon,
|
|
2109
|
+
Z as BatteryLowBulkIcon,
|
|
1546
2110
|
x as BatteryLowLinearIcon,
|
|
1547
|
-
|
|
1548
|
-
|
|
1549
|
-
|
|
1550
|
-
|
|
1551
|
-
|
|
1552
|
-
|
|
1553
|
-
|
|
1554
|
-
|
|
1555
|
-
|
|
1556
|
-
|
|
1557
|
-
|
|
1558
|
-
|
|
1559
|
-
|
|
1560
|
-
|
|
2111
|
+
H as BatteryLowOutlineIcon,
|
|
2112
|
+
j as BatteryLowTwotoneIcon,
|
|
2113
|
+
m as BatteryMidBoldIcon,
|
|
2114
|
+
W as BatteryMidBrokenIcon,
|
|
2115
|
+
I as BatteryMidBulkIcon,
|
|
2116
|
+
T as BatteryMidLinearIcon,
|
|
2117
|
+
O as BatteryMidOutlineIcon,
|
|
2118
|
+
b as BatteryMidTwotoneIcon,
|
|
2119
|
+
C as NotificationBoldIcon,
|
|
2120
|
+
i as NotificationBrokenIcon,
|
|
2121
|
+
l as NotificationBulkIcon,
|
|
2122
|
+
s as NotificationLinearIcon,
|
|
2123
|
+
h as NotificationOutlineIcon,
|
|
2124
|
+
d as NotificationTwotoneIcon,
|
|
2125
|
+
c as TrashBoldIcon,
|
|
2126
|
+
k as TrashBrokenIcon,
|
|
2127
|
+
u as TrashBulkIcon,
|
|
2128
|
+
a as TrashLinearIcon,
|
|
2129
|
+
p as TrashOutlineIcon,
|
|
2130
|
+
w as TrashTwotoneIcon
|
|
1561
2131
|
};
|