huspy-icons 0.3.4 → 0.3.5
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/fonts/HuspyIcons.css +69 -57
- package/dist/fonts/HuspyIcons.eot +0 -0
- package/dist/fonts/HuspyIcons.json +57 -53
- package/dist/fonts/HuspyIcons.ts +66 -54
- package/dist/fonts/HuspyIcons.ttf +0 -0
- package/dist/fonts/HuspyIcons.woff +0 -0
- package/dist/fonts/HuspyIcons.woff2 +0 -0
- package/dist/native/index.d.ts +1 -1
- package/dist/native/index.js +57 -53
- package/dist/native/index.js.map +1 -1
- package/dist/react/index.d.mts +10 -2
- package/dist/react/index.d.ts +10 -2
- package/dist/react/index.js +625 -397
- package/dist/react/index.js.map +1 -1
- package/dist/react/index.mjs +558 -330
- package/dist/react/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/native/glyphMap.ts +58 -54
- package/src/react/AddNote.tsx +36 -0
- package/src/react/CheckCircle2.tsx +32 -0
- package/src/react/Icon.tsx +13 -1
- package/src/react/Notes.tsx +34 -0
- package/src/react/PencilLine.tsx +38 -0
- package/src/react/index.ts +4 -0
- package/src/react/index.tsx +4 -0
package/dist/react/index.mjs
CHANGED
|
@@ -29,12 +29,69 @@ var init_types = __esm({
|
|
|
29
29
|
}
|
|
30
30
|
});
|
|
31
31
|
|
|
32
|
+
// src/react/AddNote.tsx
|
|
33
|
+
var AddNote_exports = {};
|
|
34
|
+
__export(AddNote_exports, {
|
|
35
|
+
default: () => AddNote_default
|
|
36
|
+
});
|
|
37
|
+
import * as React from "react";
|
|
38
|
+
var SvgAddNote, AddNote_default;
|
|
39
|
+
var init_AddNote = __esm({
|
|
40
|
+
"src/react/AddNote.tsx"() {
|
|
41
|
+
"use strict";
|
|
42
|
+
init_types();
|
|
43
|
+
SvgAddNote = ({ size = 16, ...props }) => {
|
|
44
|
+
const sizeValue = resolveSize(size);
|
|
45
|
+
return /* @__PURE__ */ React.createElement(
|
|
46
|
+
"svg",
|
|
47
|
+
{
|
|
48
|
+
width: sizeValue,
|
|
49
|
+
height: sizeValue,
|
|
50
|
+
viewBox: "0 0 24 24",
|
|
51
|
+
fill: "none",
|
|
52
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
53
|
+
...props
|
|
54
|
+
},
|
|
55
|
+
/* @__PURE__ */ React.createElement(
|
|
56
|
+
"path",
|
|
57
|
+
{
|
|
58
|
+
d: "M18.7041 15C19.2154 15 19.6298 15.4145 19.6299 15.9258V17.7783H21.4824C21.9937 17.7785 22.4082 18.1928 22.4082 18.7041C22.4082 19.2154 21.9937 19.6297 21.4824 19.6299H19.6299V21.4824C19.6297 21.9937 19.2154 22.4082 18.7041 22.4082C18.1928 22.4082 17.7785 21.9937 17.7783 21.4824V19.6299H15.9258C15.4145 19.6298 15 19.2154 15 18.7041C15 18.1928 15.4145 17.7784 15.9258 17.7783H17.7783V15.9258C17.7784 15.4145 18.1928 15 18.7041 15Z",
|
|
59
|
+
fill: "currentColor"
|
|
60
|
+
}
|
|
61
|
+
),
|
|
62
|
+
/* @__PURE__ */ React.createElement(
|
|
63
|
+
"path",
|
|
64
|
+
{
|
|
65
|
+
d: "M16.6016 2C18.0065 2.00011 19.3541 2.55844 20.3477 3.55176C21.3413 4.54545 21.9004 5.89452 21.9004 7.2998V12.9355C21.9004 13.4442 21.4872 13.8574 20.9785 13.8574C20.4699 13.8573 20.0576 13.4442 20.0576 12.9355V7.2998C20.0576 6.38321 19.694 5.50267 19.0459 4.85449C18.3978 4.20648 17.518 3.84288 16.6016 3.84277H7.2998C6.38312 3.84277 5.50269 4.2063 4.85449 4.85449C4.2063 5.50269 3.84277 6.38312 3.84277 7.2998V16.6016C3.84288 17.518 4.20648 18.3978 4.85449 19.0459C5.50267 19.694 6.38321 20.0576 7.2998 20.0576H12.9355C13.4442 20.0576 13.8573 20.4699 13.8574 20.9785C13.8574 21.4872 13.4442 21.9004 12.9355 21.9004H7.2998C5.89452 21.9004 4.54545 21.3413 3.55176 20.3477C2.55844 19.3541 2.00011 18.0065 2 16.6016V7.2998C2 5.89452 2.55807 4.54545 3.55176 3.55176C4.54545 2.55807 5.89452 2 7.2998 2H16.6016Z",
|
|
66
|
+
fill: "currentColor"
|
|
67
|
+
}
|
|
68
|
+
),
|
|
69
|
+
/* @__PURE__ */ React.createElement(
|
|
70
|
+
"path",
|
|
71
|
+
{
|
|
72
|
+
d: "M12.7715 10.7549C13.2799 10.7552 13.6913 11.1683 13.6914 11.6768C13.6912 12.1852 13.2799 12.5974 12.7715 12.5977H7.29883C6.7903 12.5975 6.37809 12.1853 6.37793 11.6768C6.378 11.1682 6.79025 10.755 7.29883 10.7549H12.7715Z",
|
|
73
|
+
fill: "currentColor"
|
|
74
|
+
}
|
|
75
|
+
),
|
|
76
|
+
/* @__PURE__ */ React.createElement(
|
|
77
|
+
"path",
|
|
78
|
+
{
|
|
79
|
+
d: "M15.5068 6.37793C16.0155 6.37796 16.4286 6.79023 16.4287 7.29883C16.4287 7.80754 16.0155 8.22067 15.5068 8.2207H7.29883C6.7902 8.22058 6.37793 7.80748 6.37793 7.29883C6.37807 6.79029 6.79029 6.37805 7.29883 6.37793H15.5068Z",
|
|
80
|
+
fill: "currentColor"
|
|
81
|
+
}
|
|
82
|
+
)
|
|
83
|
+
);
|
|
84
|
+
};
|
|
85
|
+
AddNote_default = SvgAddNote;
|
|
86
|
+
}
|
|
87
|
+
});
|
|
88
|
+
|
|
32
89
|
// src/react/AlertTriangle.tsx
|
|
33
90
|
var AlertTriangle_exports = {};
|
|
34
91
|
__export(AlertTriangle_exports, {
|
|
35
92
|
default: () => AlertTriangle_default
|
|
36
93
|
});
|
|
37
|
-
import * as
|
|
94
|
+
import * as React2 from "react";
|
|
38
95
|
var SvgAlertTriangle, AlertTriangle_default;
|
|
39
96
|
var init_AlertTriangle = __esm({
|
|
40
97
|
"src/react/AlertTriangle.tsx"() {
|
|
@@ -42,7 +99,7 @@ var init_AlertTriangle = __esm({
|
|
|
42
99
|
init_types();
|
|
43
100
|
SvgAlertTriangle = ({ size = 16, ...props }) => {
|
|
44
101
|
const sizeValue = resolveSize(size);
|
|
45
|
-
return /* @__PURE__ */
|
|
102
|
+
return /* @__PURE__ */ React2.createElement(
|
|
46
103
|
"svg",
|
|
47
104
|
{
|
|
48
105
|
width: sizeValue,
|
|
@@ -52,7 +109,7 @@ var init_AlertTriangle = __esm({
|
|
|
52
109
|
xmlns: "http://www.w3.org/2000/svg",
|
|
53
110
|
...props
|
|
54
111
|
},
|
|
55
|
-
/* @__PURE__ */
|
|
112
|
+
/* @__PURE__ */ React2.createElement(
|
|
56
113
|
"path",
|
|
57
114
|
{
|
|
58
115
|
fillRule: "evenodd",
|
|
@@ -61,7 +118,7 @@ var init_AlertTriangle = __esm({
|
|
|
61
118
|
fill: "currentColor"
|
|
62
119
|
}
|
|
63
120
|
),
|
|
64
|
-
/* @__PURE__ */
|
|
121
|
+
/* @__PURE__ */ React2.createElement(
|
|
65
122
|
"path",
|
|
66
123
|
{
|
|
67
124
|
fillRule: "evenodd",
|
|
@@ -70,7 +127,7 @@ var init_AlertTriangle = __esm({
|
|
|
70
127
|
fill: "currentColor"
|
|
71
128
|
}
|
|
72
129
|
),
|
|
73
|
-
/* @__PURE__ */
|
|
130
|
+
/* @__PURE__ */ React2.createElement(
|
|
74
131
|
"path",
|
|
75
132
|
{
|
|
76
133
|
fillRule: "evenodd",
|
|
@@ -90,7 +147,7 @@ var ArrowDown_exports = {};
|
|
|
90
147
|
__export(ArrowDown_exports, {
|
|
91
148
|
default: () => ArrowDown_default
|
|
92
149
|
});
|
|
93
|
-
import * as
|
|
150
|
+
import * as React3 from "react";
|
|
94
151
|
var SvgArrowDown, ArrowDown_default;
|
|
95
152
|
var init_ArrowDown = __esm({
|
|
96
153
|
"src/react/ArrowDown.tsx"() {
|
|
@@ -98,7 +155,7 @@ var init_ArrowDown = __esm({
|
|
|
98
155
|
init_types();
|
|
99
156
|
SvgArrowDown = ({ size = 16, ...props }) => {
|
|
100
157
|
const sizeValue = resolveSize(size);
|
|
101
|
-
return /* @__PURE__ */
|
|
158
|
+
return /* @__PURE__ */ React3.createElement(
|
|
102
159
|
"svg",
|
|
103
160
|
{
|
|
104
161
|
width: sizeValue,
|
|
@@ -108,7 +165,7 @@ var init_ArrowDown = __esm({
|
|
|
108
165
|
xmlns: "http://www.w3.org/2000/svg",
|
|
109
166
|
...props
|
|
110
167
|
},
|
|
111
|
-
/* @__PURE__ */
|
|
168
|
+
/* @__PURE__ */ React3.createElement(
|
|
112
169
|
"path",
|
|
113
170
|
{
|
|
114
171
|
fillRule: "evenodd",
|
|
@@ -117,7 +174,7 @@ var init_ArrowDown = __esm({
|
|
|
117
174
|
fill: "currentColor"
|
|
118
175
|
}
|
|
119
176
|
),
|
|
120
|
-
/* @__PURE__ */
|
|
177
|
+
/* @__PURE__ */ React3.createElement(
|
|
121
178
|
"path",
|
|
122
179
|
{
|
|
123
180
|
fillRule: "evenodd",
|
|
@@ -137,7 +194,7 @@ var ArrowDownLeft_exports = {};
|
|
|
137
194
|
__export(ArrowDownLeft_exports, {
|
|
138
195
|
default: () => ArrowDownLeft_default
|
|
139
196
|
});
|
|
140
|
-
import * as
|
|
197
|
+
import * as React4 from "react";
|
|
141
198
|
var SvgArrowDownLeft, ArrowDownLeft_default;
|
|
142
199
|
var init_ArrowDownLeft = __esm({
|
|
143
200
|
"src/react/ArrowDownLeft.tsx"() {
|
|
@@ -145,7 +202,7 @@ var init_ArrowDownLeft = __esm({
|
|
|
145
202
|
init_types();
|
|
146
203
|
SvgArrowDownLeft = ({ size = 16, ...props }) => {
|
|
147
204
|
const sizeValue = resolveSize(size);
|
|
148
|
-
return /* @__PURE__ */
|
|
205
|
+
return /* @__PURE__ */ React4.createElement(
|
|
149
206
|
"svg",
|
|
150
207
|
{
|
|
151
208
|
width: sizeValue,
|
|
@@ -155,7 +212,7 @@ var init_ArrowDownLeft = __esm({
|
|
|
155
212
|
xmlns: "http://www.w3.org/2000/svg",
|
|
156
213
|
...props
|
|
157
214
|
},
|
|
158
|
-
/* @__PURE__ */
|
|
215
|
+
/* @__PURE__ */ React4.createElement(
|
|
159
216
|
"path",
|
|
160
217
|
{
|
|
161
218
|
fillRule: "evenodd",
|
|
@@ -164,7 +221,7 @@ var init_ArrowDownLeft = __esm({
|
|
|
164
221
|
fill: "currentColor"
|
|
165
222
|
}
|
|
166
223
|
),
|
|
167
|
-
/* @__PURE__ */
|
|
224
|
+
/* @__PURE__ */ React4.createElement(
|
|
168
225
|
"path",
|
|
169
226
|
{
|
|
170
227
|
fillRule: "evenodd",
|
|
@@ -184,7 +241,7 @@ var ArrowDownRight_exports = {};
|
|
|
184
241
|
__export(ArrowDownRight_exports, {
|
|
185
242
|
default: () => ArrowDownRight_default
|
|
186
243
|
});
|
|
187
|
-
import * as
|
|
244
|
+
import * as React5 from "react";
|
|
188
245
|
var SvgArrowDownRight, ArrowDownRight_default;
|
|
189
246
|
var init_ArrowDownRight = __esm({
|
|
190
247
|
"src/react/ArrowDownRight.tsx"() {
|
|
@@ -192,7 +249,7 @@ var init_ArrowDownRight = __esm({
|
|
|
192
249
|
init_types();
|
|
193
250
|
SvgArrowDownRight = ({ size = 16, ...props }) => {
|
|
194
251
|
const sizeValue = resolveSize(size);
|
|
195
|
-
return /* @__PURE__ */
|
|
252
|
+
return /* @__PURE__ */ React5.createElement(
|
|
196
253
|
"svg",
|
|
197
254
|
{
|
|
198
255
|
width: sizeValue,
|
|
@@ -202,7 +259,7 @@ var init_ArrowDownRight = __esm({
|
|
|
202
259
|
xmlns: "http://www.w3.org/2000/svg",
|
|
203
260
|
...props
|
|
204
261
|
},
|
|
205
|
-
/* @__PURE__ */
|
|
262
|
+
/* @__PURE__ */ React5.createElement(
|
|
206
263
|
"path",
|
|
207
264
|
{
|
|
208
265
|
fillRule: "evenodd",
|
|
@@ -211,7 +268,7 @@ var init_ArrowDownRight = __esm({
|
|
|
211
268
|
fill: "currentColor"
|
|
212
269
|
}
|
|
213
270
|
),
|
|
214
|
-
/* @__PURE__ */
|
|
271
|
+
/* @__PURE__ */ React5.createElement(
|
|
215
272
|
"path",
|
|
216
273
|
{
|
|
217
274
|
fillRule: "evenodd",
|
|
@@ -231,7 +288,7 @@ var ArrowLeft_exports = {};
|
|
|
231
288
|
__export(ArrowLeft_exports, {
|
|
232
289
|
default: () => ArrowLeft_default
|
|
233
290
|
});
|
|
234
|
-
import * as
|
|
291
|
+
import * as React6 from "react";
|
|
235
292
|
var SvgArrowLeft, ArrowLeft_default;
|
|
236
293
|
var init_ArrowLeft = __esm({
|
|
237
294
|
"src/react/ArrowLeft.tsx"() {
|
|
@@ -239,7 +296,7 @@ var init_ArrowLeft = __esm({
|
|
|
239
296
|
init_types();
|
|
240
297
|
SvgArrowLeft = ({ size = 16, ...props }) => {
|
|
241
298
|
const sizeValue = resolveSize(size);
|
|
242
|
-
return /* @__PURE__ */
|
|
299
|
+
return /* @__PURE__ */ React6.createElement(
|
|
243
300
|
"svg",
|
|
244
301
|
{
|
|
245
302
|
width: sizeValue,
|
|
@@ -249,7 +306,7 @@ var init_ArrowLeft = __esm({
|
|
|
249
306
|
xmlns: "http://www.w3.org/2000/svg",
|
|
250
307
|
...props
|
|
251
308
|
},
|
|
252
|
-
/* @__PURE__ */
|
|
309
|
+
/* @__PURE__ */ React6.createElement(
|
|
253
310
|
"path",
|
|
254
311
|
{
|
|
255
312
|
fillRule: "evenodd",
|
|
@@ -258,7 +315,7 @@ var init_ArrowLeft = __esm({
|
|
|
258
315
|
fill: "currentColor"
|
|
259
316
|
}
|
|
260
317
|
),
|
|
261
|
-
/* @__PURE__ */
|
|
318
|
+
/* @__PURE__ */ React6.createElement(
|
|
262
319
|
"path",
|
|
263
320
|
{
|
|
264
321
|
fillRule: "evenodd",
|
|
@@ -278,7 +335,7 @@ var ArrowRight_exports = {};
|
|
|
278
335
|
__export(ArrowRight_exports, {
|
|
279
336
|
default: () => ArrowRight_default
|
|
280
337
|
});
|
|
281
|
-
import * as
|
|
338
|
+
import * as React7 from "react";
|
|
282
339
|
var SvgArrowRight, ArrowRight_default;
|
|
283
340
|
var init_ArrowRight = __esm({
|
|
284
341
|
"src/react/ArrowRight.tsx"() {
|
|
@@ -286,7 +343,7 @@ var init_ArrowRight = __esm({
|
|
|
286
343
|
init_types();
|
|
287
344
|
SvgArrowRight = ({ size = 16, ...props }) => {
|
|
288
345
|
const sizeValue = resolveSize(size);
|
|
289
|
-
return /* @__PURE__ */
|
|
346
|
+
return /* @__PURE__ */ React7.createElement(
|
|
290
347
|
"svg",
|
|
291
348
|
{
|
|
292
349
|
width: sizeValue,
|
|
@@ -296,7 +353,7 @@ var init_ArrowRight = __esm({
|
|
|
296
353
|
xmlns: "http://www.w3.org/2000/svg",
|
|
297
354
|
...props
|
|
298
355
|
},
|
|
299
|
-
/* @__PURE__ */
|
|
356
|
+
/* @__PURE__ */ React7.createElement(
|
|
300
357
|
"path",
|
|
301
358
|
{
|
|
302
359
|
fillRule: "evenodd",
|
|
@@ -305,7 +362,7 @@ var init_ArrowRight = __esm({
|
|
|
305
362
|
fill: "currentColor"
|
|
306
363
|
}
|
|
307
364
|
),
|
|
308
|
-
/* @__PURE__ */
|
|
365
|
+
/* @__PURE__ */ React7.createElement(
|
|
309
366
|
"path",
|
|
310
367
|
{
|
|
311
368
|
fillRule: "evenodd",
|
|
@@ -325,7 +382,7 @@ var ArrowUp_exports = {};
|
|
|
325
382
|
__export(ArrowUp_exports, {
|
|
326
383
|
default: () => ArrowUp_default
|
|
327
384
|
});
|
|
328
|
-
import * as
|
|
385
|
+
import * as React8 from "react";
|
|
329
386
|
var SvgArrowUp, ArrowUp_default;
|
|
330
387
|
var init_ArrowUp = __esm({
|
|
331
388
|
"src/react/ArrowUp.tsx"() {
|
|
@@ -333,7 +390,7 @@ var init_ArrowUp = __esm({
|
|
|
333
390
|
init_types();
|
|
334
391
|
SvgArrowUp = ({ size = 16, ...props }) => {
|
|
335
392
|
const sizeValue = resolveSize(size);
|
|
336
|
-
return /* @__PURE__ */
|
|
393
|
+
return /* @__PURE__ */ React8.createElement(
|
|
337
394
|
"svg",
|
|
338
395
|
{
|
|
339
396
|
width: sizeValue,
|
|
@@ -343,7 +400,7 @@ var init_ArrowUp = __esm({
|
|
|
343
400
|
xmlns: "http://www.w3.org/2000/svg",
|
|
344
401
|
...props
|
|
345
402
|
},
|
|
346
|
-
/* @__PURE__ */
|
|
403
|
+
/* @__PURE__ */ React8.createElement(
|
|
347
404
|
"path",
|
|
348
405
|
{
|
|
349
406
|
fillRule: "evenodd",
|
|
@@ -352,7 +409,7 @@ var init_ArrowUp = __esm({
|
|
|
352
409
|
fill: "currentColor"
|
|
353
410
|
}
|
|
354
411
|
),
|
|
355
|
-
/* @__PURE__ */
|
|
412
|
+
/* @__PURE__ */ React8.createElement(
|
|
356
413
|
"path",
|
|
357
414
|
{
|
|
358
415
|
fillRule: "evenodd",
|
|
@@ -372,7 +429,7 @@ var ArrowUpDown_exports = {};
|
|
|
372
429
|
__export(ArrowUpDown_exports, {
|
|
373
430
|
default: () => ArrowUpDown_default
|
|
374
431
|
});
|
|
375
|
-
import * as
|
|
432
|
+
import * as React9 from "react";
|
|
376
433
|
var SvgArrowUpDown, ArrowUpDown_default;
|
|
377
434
|
var init_ArrowUpDown = __esm({
|
|
378
435
|
"src/react/ArrowUpDown.tsx"() {
|
|
@@ -380,7 +437,7 @@ var init_ArrowUpDown = __esm({
|
|
|
380
437
|
init_types();
|
|
381
438
|
SvgArrowUpDown = ({ size = 16, ...props }) => {
|
|
382
439
|
const sizeValue = resolveSize(size);
|
|
383
|
-
return /* @__PURE__ */
|
|
440
|
+
return /* @__PURE__ */ React9.createElement(
|
|
384
441
|
"svg",
|
|
385
442
|
{
|
|
386
443
|
width: sizeValue,
|
|
@@ -390,7 +447,7 @@ var init_ArrowUpDown = __esm({
|
|
|
390
447
|
xmlns: "http://www.w3.org/2000/svg",
|
|
391
448
|
...props
|
|
392
449
|
},
|
|
393
|
-
/* @__PURE__ */
|
|
450
|
+
/* @__PURE__ */ React9.createElement(
|
|
394
451
|
"path",
|
|
395
452
|
{
|
|
396
453
|
fillRule: "evenodd",
|
|
@@ -399,7 +456,7 @@ var init_ArrowUpDown = __esm({
|
|
|
399
456
|
fill: "currentColor"
|
|
400
457
|
}
|
|
401
458
|
),
|
|
402
|
-
/* @__PURE__ */
|
|
459
|
+
/* @__PURE__ */ React9.createElement(
|
|
403
460
|
"path",
|
|
404
461
|
{
|
|
405
462
|
fillRule: "evenodd",
|
|
@@ -408,7 +465,7 @@ var init_ArrowUpDown = __esm({
|
|
|
408
465
|
fill: "currentColor"
|
|
409
466
|
}
|
|
410
467
|
),
|
|
411
|
-
/* @__PURE__ */
|
|
468
|
+
/* @__PURE__ */ React9.createElement(
|
|
412
469
|
"path",
|
|
413
470
|
{
|
|
414
471
|
fillRule: "evenodd",
|
|
@@ -417,7 +474,7 @@ var init_ArrowUpDown = __esm({
|
|
|
417
474
|
fill: "currentColor"
|
|
418
475
|
}
|
|
419
476
|
),
|
|
420
|
-
/* @__PURE__ */
|
|
477
|
+
/* @__PURE__ */ React9.createElement(
|
|
421
478
|
"path",
|
|
422
479
|
{
|
|
423
480
|
fillRule: "evenodd",
|
|
@@ -437,7 +494,7 @@ var ArrowUpLeft_exports = {};
|
|
|
437
494
|
__export(ArrowUpLeft_exports, {
|
|
438
495
|
default: () => ArrowUpLeft_default
|
|
439
496
|
});
|
|
440
|
-
import * as
|
|
497
|
+
import * as React10 from "react";
|
|
441
498
|
var SvgArrowUpLeft, ArrowUpLeft_default;
|
|
442
499
|
var init_ArrowUpLeft = __esm({
|
|
443
500
|
"src/react/ArrowUpLeft.tsx"() {
|
|
@@ -445,7 +502,7 @@ var init_ArrowUpLeft = __esm({
|
|
|
445
502
|
init_types();
|
|
446
503
|
SvgArrowUpLeft = ({ size = 16, ...props }) => {
|
|
447
504
|
const sizeValue = resolveSize(size);
|
|
448
|
-
return /* @__PURE__ */
|
|
505
|
+
return /* @__PURE__ */ React10.createElement(
|
|
449
506
|
"svg",
|
|
450
507
|
{
|
|
451
508
|
width: sizeValue,
|
|
@@ -455,7 +512,7 @@ var init_ArrowUpLeft = __esm({
|
|
|
455
512
|
xmlns: "http://www.w3.org/2000/svg",
|
|
456
513
|
...props
|
|
457
514
|
},
|
|
458
|
-
/* @__PURE__ */
|
|
515
|
+
/* @__PURE__ */ React10.createElement(
|
|
459
516
|
"path",
|
|
460
517
|
{
|
|
461
518
|
fillRule: "evenodd",
|
|
@@ -464,7 +521,7 @@ var init_ArrowUpLeft = __esm({
|
|
|
464
521
|
fill: "currentColor"
|
|
465
522
|
}
|
|
466
523
|
),
|
|
467
|
-
/* @__PURE__ */
|
|
524
|
+
/* @__PURE__ */ React10.createElement(
|
|
468
525
|
"path",
|
|
469
526
|
{
|
|
470
527
|
fillRule: "evenodd",
|
|
@@ -484,7 +541,7 @@ var ArrowUpRight_exports = {};
|
|
|
484
541
|
__export(ArrowUpRight_exports, {
|
|
485
542
|
default: () => ArrowUpRight_default
|
|
486
543
|
});
|
|
487
|
-
import * as
|
|
544
|
+
import * as React11 from "react";
|
|
488
545
|
var SvgArrowUpRight, ArrowUpRight_default;
|
|
489
546
|
var init_ArrowUpRight = __esm({
|
|
490
547
|
"src/react/ArrowUpRight.tsx"() {
|
|
@@ -492,7 +549,7 @@ var init_ArrowUpRight = __esm({
|
|
|
492
549
|
init_types();
|
|
493
550
|
SvgArrowUpRight = ({ size = 16, ...props }) => {
|
|
494
551
|
const sizeValue = resolveSize(size);
|
|
495
|
-
return /* @__PURE__ */
|
|
552
|
+
return /* @__PURE__ */ React11.createElement(
|
|
496
553
|
"svg",
|
|
497
554
|
{
|
|
498
555
|
width: sizeValue,
|
|
@@ -502,7 +559,7 @@ var init_ArrowUpRight = __esm({
|
|
|
502
559
|
xmlns: "http://www.w3.org/2000/svg",
|
|
503
560
|
...props
|
|
504
561
|
},
|
|
505
|
-
/* @__PURE__ */
|
|
562
|
+
/* @__PURE__ */ React11.createElement(
|
|
506
563
|
"path",
|
|
507
564
|
{
|
|
508
565
|
fillRule: "evenodd",
|
|
@@ -511,7 +568,7 @@ var init_ArrowUpRight = __esm({
|
|
|
511
568
|
fill: "currentColor"
|
|
512
569
|
}
|
|
513
570
|
),
|
|
514
|
-
/* @__PURE__ */
|
|
571
|
+
/* @__PURE__ */ React11.createElement(
|
|
515
572
|
"path",
|
|
516
573
|
{
|
|
517
574
|
fillRule: "evenodd",
|
|
@@ -531,7 +588,7 @@ var BedDouble_exports = {};
|
|
|
531
588
|
__export(BedDouble_exports, {
|
|
532
589
|
default: () => BedDouble_default
|
|
533
590
|
});
|
|
534
|
-
import * as
|
|
591
|
+
import * as React12 from "react";
|
|
535
592
|
var SvgBedDouble, BedDouble_default;
|
|
536
593
|
var init_BedDouble = __esm({
|
|
537
594
|
"src/react/BedDouble.tsx"() {
|
|
@@ -539,7 +596,7 @@ var init_BedDouble = __esm({
|
|
|
539
596
|
init_types();
|
|
540
597
|
SvgBedDouble = ({ size = 16, ...props }) => {
|
|
541
598
|
const sizeValue = resolveSize(size);
|
|
542
|
-
return /* @__PURE__ */
|
|
599
|
+
return /* @__PURE__ */ React12.createElement(
|
|
543
600
|
"svg",
|
|
544
601
|
{
|
|
545
602
|
width: sizeValue,
|
|
@@ -549,7 +606,7 @@ var init_BedDouble = __esm({
|
|
|
549
606
|
xmlns: "http://www.w3.org/2000/svg",
|
|
550
607
|
...props
|
|
551
608
|
},
|
|
552
|
-
/* @__PURE__ */
|
|
609
|
+
/* @__PURE__ */ React12.createElement(
|
|
553
610
|
"path",
|
|
554
611
|
{
|
|
555
612
|
fillRule: "evenodd",
|
|
@@ -558,7 +615,7 @@ var init_BedDouble = __esm({
|
|
|
558
615
|
fill: "currentColor"
|
|
559
616
|
}
|
|
560
617
|
),
|
|
561
|
-
/* @__PURE__ */
|
|
618
|
+
/* @__PURE__ */ React12.createElement(
|
|
562
619
|
"path",
|
|
563
620
|
{
|
|
564
621
|
fillRule: "evenodd",
|
|
@@ -567,7 +624,7 @@ var init_BedDouble = __esm({
|
|
|
567
624
|
fill: "currentColor"
|
|
568
625
|
}
|
|
569
626
|
),
|
|
570
|
-
/* @__PURE__ */
|
|
627
|
+
/* @__PURE__ */ React12.createElement(
|
|
571
628
|
"path",
|
|
572
629
|
{
|
|
573
630
|
fillRule: "evenodd",
|
|
@@ -576,7 +633,7 @@ var init_BedDouble = __esm({
|
|
|
576
633
|
fill: "currentColor"
|
|
577
634
|
}
|
|
578
635
|
),
|
|
579
|
-
/* @__PURE__ */
|
|
636
|
+
/* @__PURE__ */ React12.createElement(
|
|
580
637
|
"path",
|
|
581
638
|
{
|
|
582
639
|
fillRule: "evenodd",
|
|
@@ -596,7 +653,7 @@ var Bell_exports = {};
|
|
|
596
653
|
__export(Bell_exports, {
|
|
597
654
|
default: () => Bell_default
|
|
598
655
|
});
|
|
599
|
-
import * as
|
|
656
|
+
import * as React13 from "react";
|
|
600
657
|
var SvgBell, Bell_default;
|
|
601
658
|
var init_Bell = __esm({
|
|
602
659
|
"src/react/Bell.tsx"() {
|
|
@@ -604,7 +661,7 @@ var init_Bell = __esm({
|
|
|
604
661
|
init_types();
|
|
605
662
|
SvgBell = ({ size = 16, ...props }) => {
|
|
606
663
|
const sizeValue = resolveSize(size);
|
|
607
|
-
return /* @__PURE__ */
|
|
664
|
+
return /* @__PURE__ */ React13.createElement(
|
|
608
665
|
"svg",
|
|
609
666
|
{
|
|
610
667
|
width: sizeValue,
|
|
@@ -614,14 +671,14 @@ var init_Bell = __esm({
|
|
|
614
671
|
xmlns: "http://www.w3.org/2000/svg",
|
|
615
672
|
...props
|
|
616
673
|
},
|
|
617
|
-
/* @__PURE__ */
|
|
674
|
+
/* @__PURE__ */ React13.createElement(
|
|
618
675
|
"path",
|
|
619
676
|
{
|
|
620
677
|
d: "M12.0001 3C13.3262 3 14.5979 3.52678 15.5356 4.46447C16.4733 5.40215 17.0001 6.67392 17.0001 8C17.0001 11.6473 17.783 14.0654 18.6222 15.6039C18.6983 15.7434 18.7747 15.8753 18.8508 16L5.1494 16C5.22549 15.8753 5.30188 15.7434 5.37797 15.6039C6.21715 14.0654 7.00008 11.6473 7.00008 8C7.00008 6.67392 7.52686 5.40215 8.46454 4.46447C9.40223 3.52678 10.674 3 12.0001 3zM21.5664 16.1758C21.5657 16.1753 21.5647 16.1746 21.5635 16.1737C21.5558 16.168 21.538 16.1544 21.5114 16.1322C21.4581 16.0878 21.3698 16.0091 21.2573 15.8904C21.0329 15.6535 20.7098 15.2544 20.378 14.6461C19.7171 13.4346 19.0001 11.3527 19.0001 8C19.0001 6.14349 18.2626 4.36301 16.9498 3.05025C15.6371 1.7375 13.8566 1 12.0001 1C10.1436 1 8.36309 1.7375 7.05033 3.05025C5.73758 4.36301 5.00008 6.14348 5.00008 8C5.00008 11.3527 4.28301 13.4346 3.62218 14.6461C3.29039 15.2544 2.9673 15.6535 2.74288 15.8904C2.6304 16.0091 2.54202 16.0878 2.4888 16.1322C2.46218 16.1544 2.44432 16.168 2.43663 16.1737C2.43542 16.1746 2.43447 16.1753 2.43377 16.1758C2.07528 16.4221 1.91664 16.8725 2.04299 17.2898C2.17068 17.7115 2.55941 18 3.00008 18H21.0001C21.4407 18 21.8295 17.7115 21.9572 17.2898C22.0835 16.8725 21.9249 16.4221 21.5664 16.1758z",
|
|
621
678
|
fill: "currentColor"
|
|
622
679
|
}
|
|
623
680
|
),
|
|
624
|
-
/* @__PURE__ */
|
|
681
|
+
/* @__PURE__ */ React13.createElement(
|
|
625
682
|
"path",
|
|
626
683
|
{
|
|
627
684
|
d: "M9.81829 20.1237C10.3023 19.8576 10.9103 20.0343 11.1764 20.5182C11.2575 20.6657 11.3767 20.7887 11.5216 20.8744C11.6665 20.9601 11.8317 21.0053 12.0001 21.0053C12.1684 21.0053 12.3337 20.9601 12.4786 20.8744C12.6235 20.7887 12.7427 20.6657 12.8238 20.5182C13.0899 20.0343 13.6979 19.8576 14.1819 20.1237C14.6658 20.3898 14.8424 20.9978 14.5764 21.4818C14.3227 21.9432 13.9498 22.3279 13.4966 22.5959C13.0434 22.8639 12.5266 23.0053 12.0001 23.0053C11.4736 23.0053 10.9567 22.8639 10.5035 22.5959C10.0504 22.3279 9.67745 21.9432 9.42379 21.4818C9.15771 20.9978 9.33433 20.3898 9.81829 20.1237Z",
|
|
@@ -639,7 +696,7 @@ var Building_exports = {};
|
|
|
639
696
|
__export(Building_exports, {
|
|
640
697
|
default: () => Building_default
|
|
641
698
|
});
|
|
642
|
-
import * as
|
|
699
|
+
import * as React14 from "react";
|
|
643
700
|
var SvgBuilding, Building_default;
|
|
644
701
|
var init_Building = __esm({
|
|
645
702
|
"src/react/Building.tsx"() {
|
|
@@ -647,7 +704,7 @@ var init_Building = __esm({
|
|
|
647
704
|
init_types();
|
|
648
705
|
SvgBuilding = ({ size = 16, ...props }) => {
|
|
649
706
|
const sizeValue = resolveSize(size);
|
|
650
|
-
return /* @__PURE__ */
|
|
707
|
+
return /* @__PURE__ */ React14.createElement(
|
|
651
708
|
"svg",
|
|
652
709
|
{
|
|
653
710
|
width: sizeValue,
|
|
@@ -657,7 +714,7 @@ var init_Building = __esm({
|
|
|
657
714
|
xmlns: "http://www.w3.org/2000/svg",
|
|
658
715
|
...props
|
|
659
716
|
},
|
|
660
|
-
/* @__PURE__ */
|
|
717
|
+
/* @__PURE__ */ React14.createElement(
|
|
661
718
|
"path",
|
|
662
719
|
{
|
|
663
720
|
fillRule: "evenodd",
|
|
@@ -666,7 +723,7 @@ var init_Building = __esm({
|
|
|
666
723
|
fill: "currentColor"
|
|
667
724
|
}
|
|
668
725
|
),
|
|
669
|
-
/* @__PURE__ */
|
|
726
|
+
/* @__PURE__ */ React14.createElement(
|
|
670
727
|
"path",
|
|
671
728
|
{
|
|
672
729
|
fillRule: "evenodd",
|
|
@@ -675,7 +732,7 @@ var init_Building = __esm({
|
|
|
675
732
|
fill: "currentColor"
|
|
676
733
|
}
|
|
677
734
|
),
|
|
678
|
-
/* @__PURE__ */
|
|
735
|
+
/* @__PURE__ */ React14.createElement(
|
|
679
736
|
"path",
|
|
680
737
|
{
|
|
681
738
|
fillRule: "evenodd",
|
|
@@ -684,7 +741,7 @@ var init_Building = __esm({
|
|
|
684
741
|
fill: "currentColor"
|
|
685
742
|
}
|
|
686
743
|
),
|
|
687
|
-
/* @__PURE__ */
|
|
744
|
+
/* @__PURE__ */ React14.createElement(
|
|
688
745
|
"path",
|
|
689
746
|
{
|
|
690
747
|
fillRule: "evenodd",
|
|
@@ -693,7 +750,7 @@ var init_Building = __esm({
|
|
|
693
750
|
fill: "currentColor"
|
|
694
751
|
}
|
|
695
752
|
),
|
|
696
|
-
/* @__PURE__ */
|
|
753
|
+
/* @__PURE__ */ React14.createElement(
|
|
697
754
|
"path",
|
|
698
755
|
{
|
|
699
756
|
fillRule: "evenodd",
|
|
@@ -702,7 +759,7 @@ var init_Building = __esm({
|
|
|
702
759
|
fill: "currentColor"
|
|
703
760
|
}
|
|
704
761
|
),
|
|
705
|
-
/* @__PURE__ */
|
|
762
|
+
/* @__PURE__ */ React14.createElement(
|
|
706
763
|
"path",
|
|
707
764
|
{
|
|
708
765
|
fillRule: "evenodd",
|
|
@@ -711,7 +768,7 @@ var init_Building = __esm({
|
|
|
711
768
|
fill: "currentColor"
|
|
712
769
|
}
|
|
713
770
|
),
|
|
714
|
-
/* @__PURE__ */
|
|
771
|
+
/* @__PURE__ */ React14.createElement(
|
|
715
772
|
"path",
|
|
716
773
|
{
|
|
717
774
|
fillRule: "evenodd",
|
|
@@ -720,7 +777,7 @@ var init_Building = __esm({
|
|
|
720
777
|
fill: "currentColor"
|
|
721
778
|
}
|
|
722
779
|
),
|
|
723
|
-
/* @__PURE__ */
|
|
780
|
+
/* @__PURE__ */ React14.createElement(
|
|
724
781
|
"path",
|
|
725
782
|
{
|
|
726
783
|
fillRule: "evenodd",
|
|
@@ -729,7 +786,7 @@ var init_Building = __esm({
|
|
|
729
786
|
fill: "currentColor"
|
|
730
787
|
}
|
|
731
788
|
),
|
|
732
|
-
/* @__PURE__ */
|
|
789
|
+
/* @__PURE__ */ React14.createElement(
|
|
733
790
|
"path",
|
|
734
791
|
{
|
|
735
792
|
fillRule: "evenodd",
|
|
@@ -738,7 +795,7 @@ var init_Building = __esm({
|
|
|
738
795
|
fill: "currentColor"
|
|
739
796
|
}
|
|
740
797
|
),
|
|
741
|
-
/* @__PURE__ */
|
|
798
|
+
/* @__PURE__ */ React14.createElement(
|
|
742
799
|
"path",
|
|
743
800
|
{
|
|
744
801
|
fillRule: "evenodd",
|
|
@@ -747,7 +804,7 @@ var init_Building = __esm({
|
|
|
747
804
|
fill: "currentColor"
|
|
748
805
|
}
|
|
749
806
|
),
|
|
750
|
-
/* @__PURE__ */
|
|
807
|
+
/* @__PURE__ */ React14.createElement(
|
|
751
808
|
"path",
|
|
752
809
|
{
|
|
753
810
|
fillRule: "evenodd",
|
|
@@ -767,7 +824,7 @@ var Calendar_exports = {};
|
|
|
767
824
|
__export(Calendar_exports, {
|
|
768
825
|
default: () => Calendar_default
|
|
769
826
|
});
|
|
770
|
-
import * as
|
|
827
|
+
import * as React15 from "react";
|
|
771
828
|
var SvgCalendar, Calendar_default;
|
|
772
829
|
var init_Calendar = __esm({
|
|
773
830
|
"src/react/Calendar.tsx"() {
|
|
@@ -775,7 +832,7 @@ var init_Calendar = __esm({
|
|
|
775
832
|
init_types();
|
|
776
833
|
SvgCalendar = ({ size = 16, ...props }) => {
|
|
777
834
|
const sizeValue = resolveSize(size);
|
|
778
|
-
return /* @__PURE__ */
|
|
835
|
+
return /* @__PURE__ */ React15.createElement(
|
|
779
836
|
"svg",
|
|
780
837
|
{
|
|
781
838
|
width: sizeValue,
|
|
@@ -785,7 +842,7 @@ var init_Calendar = __esm({
|
|
|
785
842
|
xmlns: "http://www.w3.org/2000/svg",
|
|
786
843
|
...props
|
|
787
844
|
},
|
|
788
|
-
/* @__PURE__ */
|
|
845
|
+
/* @__PURE__ */ React15.createElement(
|
|
789
846
|
"path",
|
|
790
847
|
{
|
|
791
848
|
fillRule: "evenodd",
|
|
@@ -794,7 +851,7 @@ var init_Calendar = __esm({
|
|
|
794
851
|
fill: "currentColor"
|
|
795
852
|
}
|
|
796
853
|
),
|
|
797
|
-
/* @__PURE__ */
|
|
854
|
+
/* @__PURE__ */ React15.createElement(
|
|
798
855
|
"path",
|
|
799
856
|
{
|
|
800
857
|
fillRule: "evenodd",
|
|
@@ -803,7 +860,7 @@ var init_Calendar = __esm({
|
|
|
803
860
|
fill: "currentColor"
|
|
804
861
|
}
|
|
805
862
|
),
|
|
806
|
-
/* @__PURE__ */
|
|
863
|
+
/* @__PURE__ */ React15.createElement(
|
|
807
864
|
"path",
|
|
808
865
|
{
|
|
809
866
|
fillRule: "evenodd",
|
|
@@ -812,7 +869,7 @@ var init_Calendar = __esm({
|
|
|
812
869
|
fill: "currentColor"
|
|
813
870
|
}
|
|
814
871
|
),
|
|
815
|
-
/* @__PURE__ */
|
|
872
|
+
/* @__PURE__ */ React15.createElement(
|
|
816
873
|
"path",
|
|
817
874
|
{
|
|
818
875
|
fillRule: "evenodd",
|
|
@@ -832,7 +889,7 @@ var Cancel_exports = {};
|
|
|
832
889
|
__export(Cancel_exports, {
|
|
833
890
|
default: () => Cancel_default
|
|
834
891
|
});
|
|
835
|
-
import * as
|
|
892
|
+
import * as React16 from "react";
|
|
836
893
|
var SvgCancel, Cancel_default;
|
|
837
894
|
var init_Cancel = __esm({
|
|
838
895
|
"src/react/Cancel.tsx"() {
|
|
@@ -840,7 +897,7 @@ var init_Cancel = __esm({
|
|
|
840
897
|
init_types();
|
|
841
898
|
SvgCancel = ({ size = 16, ...props }) => {
|
|
842
899
|
const sizeValue = resolveSize(size);
|
|
843
|
-
return /* @__PURE__ */
|
|
900
|
+
return /* @__PURE__ */ React16.createElement(
|
|
844
901
|
"svg",
|
|
845
902
|
{
|
|
846
903
|
width: sizeValue,
|
|
@@ -850,7 +907,7 @@ var init_Cancel = __esm({
|
|
|
850
907
|
xmlns: "http://www.w3.org/2000/svg",
|
|
851
908
|
...props
|
|
852
909
|
},
|
|
853
|
-
/* @__PURE__ */
|
|
910
|
+
/* @__PURE__ */ React16.createElement(
|
|
854
911
|
"path",
|
|
855
912
|
{
|
|
856
913
|
fillRule: "evenodd",
|
|
@@ -859,7 +916,7 @@ var init_Cancel = __esm({
|
|
|
859
916
|
fill: "currentColor"
|
|
860
917
|
}
|
|
861
918
|
),
|
|
862
|
-
/* @__PURE__ */
|
|
919
|
+
/* @__PURE__ */ React16.createElement(
|
|
863
920
|
"path",
|
|
864
921
|
{
|
|
865
922
|
fillRule: "evenodd",
|
|
@@ -879,7 +936,7 @@ var CancelCircleSolid_exports = {};
|
|
|
879
936
|
__export(CancelCircleSolid_exports, {
|
|
880
937
|
default: () => CancelCircleSolid_default
|
|
881
938
|
});
|
|
882
|
-
import * as
|
|
939
|
+
import * as React17 from "react";
|
|
883
940
|
var SvgCancelCircleSolid, CancelCircleSolid_default;
|
|
884
941
|
var init_CancelCircleSolid = __esm({
|
|
885
942
|
"src/react/CancelCircleSolid.tsx"() {
|
|
@@ -887,7 +944,7 @@ var init_CancelCircleSolid = __esm({
|
|
|
887
944
|
init_types();
|
|
888
945
|
SvgCancelCircleSolid = ({ size = 16, ...props }) => {
|
|
889
946
|
const sizeValue = resolveSize(size);
|
|
890
|
-
return /* @__PURE__ */
|
|
947
|
+
return /* @__PURE__ */ React17.createElement(
|
|
891
948
|
"svg",
|
|
892
949
|
{
|
|
893
950
|
width: sizeValue,
|
|
@@ -897,7 +954,7 @@ var init_CancelCircleSolid = __esm({
|
|
|
897
954
|
xmlns: "http://www.w3.org/2000/svg",
|
|
898
955
|
...props
|
|
899
956
|
},
|
|
900
|
-
/* @__PURE__ */
|
|
957
|
+
/* @__PURE__ */ React17.createElement(
|
|
901
958
|
"path",
|
|
902
959
|
{
|
|
903
960
|
fillRule: "evenodd",
|
|
@@ -917,7 +974,7 @@ var Check_exports = {};
|
|
|
917
974
|
__export(Check_exports, {
|
|
918
975
|
default: () => Check_default
|
|
919
976
|
});
|
|
920
|
-
import * as
|
|
977
|
+
import * as React18 from "react";
|
|
921
978
|
var SvgCheck, Check_default;
|
|
922
979
|
var init_Check = __esm({
|
|
923
980
|
"src/react/Check.tsx"() {
|
|
@@ -925,7 +982,7 @@ var init_Check = __esm({
|
|
|
925
982
|
init_types();
|
|
926
983
|
SvgCheck = ({ size = 16, ...props }) => {
|
|
927
984
|
const sizeValue = resolveSize(size);
|
|
928
|
-
return /* @__PURE__ */
|
|
985
|
+
return /* @__PURE__ */ React18.createElement(
|
|
929
986
|
"svg",
|
|
930
987
|
{
|
|
931
988
|
width: sizeValue,
|
|
@@ -935,7 +992,7 @@ var init_Check = __esm({
|
|
|
935
992
|
xmlns: "http://www.w3.org/2000/svg",
|
|
936
993
|
...props
|
|
937
994
|
},
|
|
938
|
-
/* @__PURE__ */
|
|
995
|
+
/* @__PURE__ */ React18.createElement(
|
|
939
996
|
"path",
|
|
940
997
|
{
|
|
941
998
|
fillRule: "evenodd",
|
|
@@ -950,12 +1007,59 @@ var init_Check = __esm({
|
|
|
950
1007
|
}
|
|
951
1008
|
});
|
|
952
1009
|
|
|
1010
|
+
// src/react/CheckCircle2.tsx
|
|
1011
|
+
var CheckCircle2_exports = {};
|
|
1012
|
+
__export(CheckCircle2_exports, {
|
|
1013
|
+
default: () => CheckCircle2_default
|
|
1014
|
+
});
|
|
1015
|
+
import * as React19 from "react";
|
|
1016
|
+
var SvgCheckCircle2, CheckCircle2_default;
|
|
1017
|
+
var init_CheckCircle2 = __esm({
|
|
1018
|
+
"src/react/CheckCircle2.tsx"() {
|
|
1019
|
+
"use strict";
|
|
1020
|
+
init_types();
|
|
1021
|
+
SvgCheckCircle2 = ({ size = 16, ...props }) => {
|
|
1022
|
+
const sizeValue = resolveSize(size);
|
|
1023
|
+
return /* @__PURE__ */ React19.createElement(
|
|
1024
|
+
"svg",
|
|
1025
|
+
{
|
|
1026
|
+
width: sizeValue,
|
|
1027
|
+
height: sizeValue,
|
|
1028
|
+
viewBox: "0 0 24 24",
|
|
1029
|
+
fill: "none",
|
|
1030
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1031
|
+
...props
|
|
1032
|
+
},
|
|
1033
|
+
/* @__PURE__ */ React19.createElement(
|
|
1034
|
+
"path",
|
|
1035
|
+
{
|
|
1036
|
+
fillRule: "evenodd",
|
|
1037
|
+
clipRule: "evenodd",
|
|
1038
|
+
d: "M1 12C1 5.92472 5.92472 1 12 1C18.0753 1 23 5.92472 23 12C23 18.0753 18.0753 23 12 23C5.92472 23 1 18.0753 1 12ZM12 3C7.02928 3 3 7.02928 3 12C3 16.9707 7.02928 21 12 21C16.9707 21 21 16.9707 21 12C21 7.02928 16.9707 3 12 3Z",
|
|
1039
|
+
fill: "currentColor"
|
|
1040
|
+
}
|
|
1041
|
+
),
|
|
1042
|
+
/* @__PURE__ */ React19.createElement(
|
|
1043
|
+
"path",
|
|
1044
|
+
{
|
|
1045
|
+
fillRule: "evenodd",
|
|
1046
|
+
clipRule: "evenodd",
|
|
1047
|
+
d: "M15.7071 9.29289C16.0976 9.68342 16.0976 10.3166 15.7071 10.7071L11.7071 14.7071C11.3166 15.0976 10.6834 15.0976 10.2929 14.7071L8.29289 12.7071C7.90237 12.3166 7.90237 11.6834 8.29289 11.2929C8.68342 10.9024 9.31658 10.9024 9.70711 11.2929L11 12.5858L14.2929 9.29289C14.6834 8.90237 15.3166 8.90237 15.7071 9.29289Z",
|
|
1048
|
+
fill: "currentColor"
|
|
1049
|
+
}
|
|
1050
|
+
)
|
|
1051
|
+
);
|
|
1052
|
+
};
|
|
1053
|
+
CheckCircle2_default = SvgCheckCircle2;
|
|
1054
|
+
}
|
|
1055
|
+
});
|
|
1056
|
+
|
|
953
1057
|
// src/react/ChevronDown.tsx
|
|
954
1058
|
var ChevronDown_exports = {};
|
|
955
1059
|
__export(ChevronDown_exports, {
|
|
956
1060
|
default: () => ChevronDown_default
|
|
957
1061
|
});
|
|
958
|
-
import * as
|
|
1062
|
+
import * as React20 from "react";
|
|
959
1063
|
var SvgChevronDown, ChevronDown_default;
|
|
960
1064
|
var init_ChevronDown = __esm({
|
|
961
1065
|
"src/react/ChevronDown.tsx"() {
|
|
@@ -963,7 +1067,7 @@ var init_ChevronDown = __esm({
|
|
|
963
1067
|
init_types();
|
|
964
1068
|
SvgChevronDown = ({ size = 16, ...props }) => {
|
|
965
1069
|
const sizeValue = resolveSize(size);
|
|
966
|
-
return /* @__PURE__ */
|
|
1070
|
+
return /* @__PURE__ */ React20.createElement(
|
|
967
1071
|
"svg",
|
|
968
1072
|
{
|
|
969
1073
|
width: sizeValue,
|
|
@@ -973,7 +1077,7 @@ var init_ChevronDown = __esm({
|
|
|
973
1077
|
xmlns: "http://www.w3.org/2000/svg",
|
|
974
1078
|
...props
|
|
975
1079
|
},
|
|
976
|
-
/* @__PURE__ */
|
|
1080
|
+
/* @__PURE__ */ React20.createElement(
|
|
977
1081
|
"path",
|
|
978
1082
|
{
|
|
979
1083
|
d: "M5.33203 9.6216C5.05614 9.32026 5.07568 8.87557 5.39062 8.59451C5.72691 8.29477 6.27309 8.29477 6.60937 8.59451L12.1992 13.5777L17.791 8.59451C18.1273 8.29477 18.6725 8.29477 19.0088 8.59451C19.345 8.89425 19.345 9.38021 19.0088 9.67992L12.8086 15.2062C12.4723 15.5056 11.927 15.5057 11.5908 15.2062L5.39062 9.67992L5.33203 9.6216Z",
|
|
@@ -991,7 +1095,7 @@ var ChevronLeft_exports = {};
|
|
|
991
1095
|
__export(ChevronLeft_exports, {
|
|
992
1096
|
default: () => ChevronLeft_default
|
|
993
1097
|
});
|
|
994
|
-
import * as
|
|
1098
|
+
import * as React21 from "react";
|
|
995
1099
|
var SvgChevronLeft, ChevronLeft_default;
|
|
996
1100
|
var init_ChevronLeft = __esm({
|
|
997
1101
|
"src/react/ChevronLeft.tsx"() {
|
|
@@ -999,7 +1103,7 @@ var init_ChevronLeft = __esm({
|
|
|
999
1103
|
init_types();
|
|
1000
1104
|
SvgChevronLeft = ({ size = 16, ...props }) => {
|
|
1001
1105
|
const sizeValue = resolveSize(size);
|
|
1002
|
-
return /* @__PURE__ */
|
|
1106
|
+
return /* @__PURE__ */ React21.createElement(
|
|
1003
1107
|
"svg",
|
|
1004
1108
|
{
|
|
1005
1109
|
width: sizeValue,
|
|
@@ -1009,7 +1113,7 @@ var init_ChevronLeft = __esm({
|
|
|
1009
1113
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1010
1114
|
...props
|
|
1011
1115
|
},
|
|
1012
|
-
/* @__PURE__ */
|
|
1116
|
+
/* @__PURE__ */ React21.createElement(
|
|
1013
1117
|
"path",
|
|
1014
1118
|
{
|
|
1015
1119
|
d: "M13.6932 4.09302C14.0837 3.70259 14.7167 3.70252 15.1072 4.09302C15.4976 4.48351 15.4976 5.11658 15.1072 5.50708L8.61407 12.0002L15.1072 18.4934L15.1756 18.5686C15.4962 18.9614 15.4734 19.5413 15.1072 19.9075C14.741 20.2736 14.1611 20.2964 13.7684 19.9758L13.6932 19.9075L6.49298 12.7073C6.10249 12.3168 6.10255 11.6837 6.49298 11.2932L13.6932 4.09302Z",
|
|
@@ -1027,7 +1131,7 @@ var ChevronRight_exports = {};
|
|
|
1027
1131
|
__export(ChevronRight_exports, {
|
|
1028
1132
|
default: () => ChevronRight_default
|
|
1029
1133
|
});
|
|
1030
|
-
import * as
|
|
1134
|
+
import * as React22 from "react";
|
|
1031
1135
|
var SvgChevronRight, ChevronRight_default;
|
|
1032
1136
|
var init_ChevronRight = __esm({
|
|
1033
1137
|
"src/react/ChevronRight.tsx"() {
|
|
@@ -1035,7 +1139,7 @@ var init_ChevronRight = __esm({
|
|
|
1035
1139
|
init_types();
|
|
1036
1140
|
SvgChevronRight = ({ size = 16, ...props }) => {
|
|
1037
1141
|
const sizeValue = resolveSize(size);
|
|
1038
|
-
return /* @__PURE__ */
|
|
1142
|
+
return /* @__PURE__ */ React22.createElement(
|
|
1039
1143
|
"svg",
|
|
1040
1144
|
{
|
|
1041
1145
|
width: sizeValue,
|
|
@@ -1045,7 +1149,7 @@ var init_ChevronRight = __esm({
|
|
|
1045
1149
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1046
1150
|
...props
|
|
1047
1151
|
},
|
|
1048
|
-
/* @__PURE__ */
|
|
1152
|
+
/* @__PURE__ */ React22.createElement(
|
|
1049
1153
|
"path",
|
|
1050
1154
|
{
|
|
1051
1155
|
d: "M9.10694 4.09302C8.7164 3.70259 8.08337 3.70252 7.69287 4.09302C7.30248 4.48351 7.30248 5.11658 7.69287 5.50708L14.186 12.0002L7.69287 18.4934L7.62451 18.5686C7.30395 18.9614 7.32668 19.5413 7.69287 19.9075C8.05908 20.2736 8.639 20.2964 9.03174 19.9758L9.10694 19.9075L16.3071 12.7073C16.6976 12.3168 16.6976 11.6837 16.3071 11.2932L9.10694 4.09302Z",
|
|
@@ -1063,7 +1167,7 @@ var ChevronUp_exports = {};
|
|
|
1063
1167
|
__export(ChevronUp_exports, {
|
|
1064
1168
|
default: () => ChevronUp_default
|
|
1065
1169
|
});
|
|
1066
|
-
import * as
|
|
1170
|
+
import * as React23 from "react";
|
|
1067
1171
|
var SvgChevronUp, ChevronUp_default;
|
|
1068
1172
|
var init_ChevronUp = __esm({
|
|
1069
1173
|
"src/react/ChevronUp.tsx"() {
|
|
@@ -1071,7 +1175,7 @@ var init_ChevronUp = __esm({
|
|
|
1071
1175
|
init_types();
|
|
1072
1176
|
SvgChevronUp = ({ size = 16, ...props }) => {
|
|
1073
1177
|
const sizeValue = resolveSize(size);
|
|
1074
|
-
return /* @__PURE__ */
|
|
1178
|
+
return /* @__PURE__ */ React23.createElement(
|
|
1075
1179
|
"svg",
|
|
1076
1180
|
{
|
|
1077
1181
|
width: sizeValue,
|
|
@@ -1081,7 +1185,7 @@ var init_ChevronUp = __esm({
|
|
|
1081
1185
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1082
1186
|
...props
|
|
1083
1187
|
},
|
|
1084
|
-
/* @__PURE__ */
|
|
1188
|
+
/* @__PURE__ */ React23.createElement(
|
|
1085
1189
|
"path",
|
|
1086
1190
|
{
|
|
1087
1191
|
d: "M5.33203 14.1783C5.05614 14.4797 5.07568 14.9244 5.39062 15.2054C5.72691 15.5052 6.27309 15.5052 6.60937 15.2054L12.1992 10.2223L17.791 15.2054C18.1273 15.5052 18.6725 15.5052 19.0088 15.2054C19.345 14.9057 19.345 14.4197 19.0088 14.12L12.8086 8.59372C12.4723 8.29437 11.927 8.29419 11.5908 8.59372L5.39062 14.12L5.33203 14.1783Z",
|
|
@@ -1099,7 +1203,7 @@ var Collections_exports = {};
|
|
|
1099
1203
|
__export(Collections_exports, {
|
|
1100
1204
|
default: () => Collections_default
|
|
1101
1205
|
});
|
|
1102
|
-
import * as
|
|
1206
|
+
import * as React24 from "react";
|
|
1103
1207
|
var SvgCollections, Collections_default;
|
|
1104
1208
|
var init_Collections = __esm({
|
|
1105
1209
|
"src/react/Collections.tsx"() {
|
|
@@ -1107,7 +1211,7 @@ var init_Collections = __esm({
|
|
|
1107
1211
|
init_types();
|
|
1108
1212
|
SvgCollections = ({ size = 16, ...props }) => {
|
|
1109
1213
|
const sizeValue = resolveSize(size);
|
|
1110
|
-
return /* @__PURE__ */
|
|
1214
|
+
return /* @__PURE__ */ React24.createElement(
|
|
1111
1215
|
"svg",
|
|
1112
1216
|
{
|
|
1113
1217
|
width: sizeValue,
|
|
@@ -1117,7 +1221,7 @@ var init_Collections = __esm({
|
|
|
1117
1221
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1118
1222
|
...props
|
|
1119
1223
|
},
|
|
1120
|
-
/* @__PURE__ */
|
|
1224
|
+
/* @__PURE__ */ React24.createElement(
|
|
1121
1225
|
"path",
|
|
1122
1226
|
{
|
|
1123
1227
|
fillRule: "evenodd",
|
|
@@ -1137,7 +1241,7 @@ var Edit_exports = {};
|
|
|
1137
1241
|
__export(Edit_exports, {
|
|
1138
1242
|
default: () => Edit_default
|
|
1139
1243
|
});
|
|
1140
|
-
import * as
|
|
1244
|
+
import * as React25 from "react";
|
|
1141
1245
|
var SvgEdit, Edit_default;
|
|
1142
1246
|
var init_Edit = __esm({
|
|
1143
1247
|
"src/react/Edit.tsx"() {
|
|
@@ -1145,7 +1249,7 @@ var init_Edit = __esm({
|
|
|
1145
1249
|
init_types();
|
|
1146
1250
|
SvgEdit = ({ size = 16, ...props }) => {
|
|
1147
1251
|
const sizeValue = resolveSize(size);
|
|
1148
|
-
return /* @__PURE__ */
|
|
1252
|
+
return /* @__PURE__ */ React25.createElement(
|
|
1149
1253
|
"svg",
|
|
1150
1254
|
{
|
|
1151
1255
|
width: sizeValue,
|
|
@@ -1155,7 +1259,7 @@ var init_Edit = __esm({
|
|
|
1155
1259
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1156
1260
|
...props
|
|
1157
1261
|
},
|
|
1158
|
-
/* @__PURE__ */
|
|
1262
|
+
/* @__PURE__ */ React25.createElement(
|
|
1159
1263
|
"path",
|
|
1160
1264
|
{
|
|
1161
1265
|
fillRule: "evenodd",
|
|
@@ -1164,7 +1268,7 @@ var init_Edit = __esm({
|
|
|
1164
1268
|
fill: "currentColor"
|
|
1165
1269
|
}
|
|
1166
1270
|
),
|
|
1167
|
-
/* @__PURE__ */
|
|
1271
|
+
/* @__PURE__ */ React25.createElement(
|
|
1168
1272
|
"path",
|
|
1169
1273
|
{
|
|
1170
1274
|
fillRule: "evenodd",
|
|
@@ -1184,7 +1288,7 @@ var ExploreFilled_exports = {};
|
|
|
1184
1288
|
__export(ExploreFilled_exports, {
|
|
1185
1289
|
default: () => ExploreFilled_default
|
|
1186
1290
|
});
|
|
1187
|
-
import * as
|
|
1291
|
+
import * as React26 from "react";
|
|
1188
1292
|
var SvgExploreFilled, ExploreFilled_default;
|
|
1189
1293
|
var init_ExploreFilled = __esm({
|
|
1190
1294
|
"src/react/ExploreFilled.tsx"() {
|
|
@@ -1192,7 +1296,7 @@ var init_ExploreFilled = __esm({
|
|
|
1192
1296
|
init_types();
|
|
1193
1297
|
SvgExploreFilled = ({ size = 16, ...props }) => {
|
|
1194
1298
|
const sizeValue = resolveSize(size);
|
|
1195
|
-
return /* @__PURE__ */
|
|
1299
|
+
return /* @__PURE__ */ React26.createElement(
|
|
1196
1300
|
"svg",
|
|
1197
1301
|
{
|
|
1198
1302
|
width: sizeValue,
|
|
@@ -1202,7 +1306,7 @@ var init_ExploreFilled = __esm({
|
|
|
1202
1306
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1203
1307
|
...props
|
|
1204
1308
|
},
|
|
1205
|
-
/* @__PURE__ */
|
|
1309
|
+
/* @__PURE__ */ React26.createElement(
|
|
1206
1310
|
"path",
|
|
1207
1311
|
{
|
|
1208
1312
|
fillRule: "evenodd",
|
|
@@ -1211,7 +1315,7 @@ var init_ExploreFilled = __esm({
|
|
|
1211
1315
|
fill: "currentColor"
|
|
1212
1316
|
}
|
|
1213
1317
|
),
|
|
1214
|
-
/* @__PURE__ */
|
|
1318
|
+
/* @__PURE__ */ React26.createElement(
|
|
1215
1319
|
"path",
|
|
1216
1320
|
{
|
|
1217
1321
|
fillRule: "evenodd",
|
|
@@ -1220,7 +1324,7 @@ var init_ExploreFilled = __esm({
|
|
|
1220
1324
|
fill: "currentColor"
|
|
1221
1325
|
}
|
|
1222
1326
|
),
|
|
1223
|
-
/* @__PURE__ */
|
|
1327
|
+
/* @__PURE__ */ React26.createElement(
|
|
1224
1328
|
"path",
|
|
1225
1329
|
{
|
|
1226
1330
|
d: "M16.1046 11.1024C16.1046 13.9203 13.8202 16.2047 11.0022 16.2047C8.1843 16.2047 5.8999 13.9203 5.8999 11.1024C5.8999 8.28445 8.1843 6.00005 11.0022 6.00005C13.8202 6.00005 16.1046 8.28445 16.1046 11.1024Z",
|
|
@@ -1238,7 +1342,7 @@ var ExploreLinear_exports = {};
|
|
|
1238
1342
|
__export(ExploreLinear_exports, {
|
|
1239
1343
|
default: () => ExploreLinear_default
|
|
1240
1344
|
});
|
|
1241
|
-
import * as
|
|
1345
|
+
import * as React27 from "react";
|
|
1242
1346
|
var SvgExploreLinear, ExploreLinear_default;
|
|
1243
1347
|
var init_ExploreLinear = __esm({
|
|
1244
1348
|
"src/react/ExploreLinear.tsx"() {
|
|
@@ -1246,7 +1350,7 @@ var init_ExploreLinear = __esm({
|
|
|
1246
1350
|
init_types();
|
|
1247
1351
|
SvgExploreLinear = ({ size = 16, ...props }) => {
|
|
1248
1352
|
const sizeValue = resolveSize(size);
|
|
1249
|
-
return /* @__PURE__ */
|
|
1353
|
+
return /* @__PURE__ */ React27.createElement(
|
|
1250
1354
|
"svg",
|
|
1251
1355
|
{
|
|
1252
1356
|
width: sizeValue,
|
|
@@ -1256,7 +1360,7 @@ var init_ExploreLinear = __esm({
|
|
|
1256
1360
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1257
1361
|
...props
|
|
1258
1362
|
},
|
|
1259
|
-
/* @__PURE__ */
|
|
1363
|
+
/* @__PURE__ */ React27.createElement(
|
|
1260
1364
|
"path",
|
|
1261
1365
|
{
|
|
1262
1366
|
fillRule: "evenodd",
|
|
@@ -1265,7 +1369,7 @@ var init_ExploreLinear = __esm({
|
|
|
1265
1369
|
fill: "currentColor"
|
|
1266
1370
|
}
|
|
1267
1371
|
),
|
|
1268
|
-
/* @__PURE__ */
|
|
1372
|
+
/* @__PURE__ */ React27.createElement(
|
|
1269
1373
|
"path",
|
|
1270
1374
|
{
|
|
1271
1375
|
fillRule: "evenodd",
|
|
@@ -1285,7 +1389,7 @@ var EyeHidden_exports = {};
|
|
|
1285
1389
|
__export(EyeHidden_exports, {
|
|
1286
1390
|
default: () => EyeHidden_default
|
|
1287
1391
|
});
|
|
1288
|
-
import * as
|
|
1392
|
+
import * as React28 from "react";
|
|
1289
1393
|
var SvgEyeHidden, EyeHidden_default;
|
|
1290
1394
|
var init_EyeHidden = __esm({
|
|
1291
1395
|
"src/react/EyeHidden.tsx"() {
|
|
@@ -1293,7 +1397,7 @@ var init_EyeHidden = __esm({
|
|
|
1293
1397
|
init_types();
|
|
1294
1398
|
SvgEyeHidden = ({ size = 16, ...props }) => {
|
|
1295
1399
|
const sizeValue = resolveSize(size);
|
|
1296
|
-
return /* @__PURE__ */
|
|
1400
|
+
return /* @__PURE__ */ React28.createElement(
|
|
1297
1401
|
"svg",
|
|
1298
1402
|
{
|
|
1299
1403
|
width: sizeValue,
|
|
@@ -1303,7 +1407,7 @@ var init_EyeHidden = __esm({
|
|
|
1303
1407
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1304
1408
|
...props
|
|
1305
1409
|
},
|
|
1306
|
-
/* @__PURE__ */
|
|
1410
|
+
/* @__PURE__ */ React28.createElement(
|
|
1307
1411
|
"path",
|
|
1308
1412
|
{
|
|
1309
1413
|
fillRule: "evenodd",
|
|
@@ -1312,7 +1416,7 @@ var init_EyeHidden = __esm({
|
|
|
1312
1416
|
fill: "currentColor"
|
|
1313
1417
|
}
|
|
1314
1418
|
),
|
|
1315
|
-
/* @__PURE__ */
|
|
1419
|
+
/* @__PURE__ */ React28.createElement(
|
|
1316
1420
|
"path",
|
|
1317
1421
|
{
|
|
1318
1422
|
fillRule: "evenodd",
|
|
@@ -1321,7 +1425,7 @@ var init_EyeHidden = __esm({
|
|
|
1321
1425
|
fill: "currentColor"
|
|
1322
1426
|
}
|
|
1323
1427
|
),
|
|
1324
|
-
/* @__PURE__ */
|
|
1428
|
+
/* @__PURE__ */ React28.createElement(
|
|
1325
1429
|
"path",
|
|
1326
1430
|
{
|
|
1327
1431
|
fillRule: "evenodd",
|
|
@@ -1341,7 +1445,7 @@ var EyeVisible_exports = {};
|
|
|
1341
1445
|
__export(EyeVisible_exports, {
|
|
1342
1446
|
default: () => EyeVisible_default
|
|
1343
1447
|
});
|
|
1344
|
-
import * as
|
|
1448
|
+
import * as React29 from "react";
|
|
1345
1449
|
var SvgEyeVisible, EyeVisible_default;
|
|
1346
1450
|
var init_EyeVisible = __esm({
|
|
1347
1451
|
"src/react/EyeVisible.tsx"() {
|
|
@@ -1349,7 +1453,7 @@ var init_EyeVisible = __esm({
|
|
|
1349
1453
|
init_types();
|
|
1350
1454
|
SvgEyeVisible = ({ size = 16, ...props }) => {
|
|
1351
1455
|
const sizeValue = resolveSize(size);
|
|
1352
|
-
return /* @__PURE__ */
|
|
1456
|
+
return /* @__PURE__ */ React29.createElement(
|
|
1353
1457
|
"svg",
|
|
1354
1458
|
{
|
|
1355
1459
|
width: sizeValue,
|
|
@@ -1359,7 +1463,7 @@ var init_EyeVisible = __esm({
|
|
|
1359
1463
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1360
1464
|
...props
|
|
1361
1465
|
},
|
|
1362
|
-
/* @__PURE__ */
|
|
1466
|
+
/* @__PURE__ */ React29.createElement(
|
|
1363
1467
|
"path",
|
|
1364
1468
|
{
|
|
1365
1469
|
fillRule: "evenodd",
|
|
@@ -1368,7 +1472,7 @@ var init_EyeVisible = __esm({
|
|
|
1368
1472
|
fill: "currentColor"
|
|
1369
1473
|
}
|
|
1370
1474
|
),
|
|
1371
|
-
/* @__PURE__ */
|
|
1475
|
+
/* @__PURE__ */ React29.createElement(
|
|
1372
1476
|
"path",
|
|
1373
1477
|
{
|
|
1374
1478
|
fillRule: "evenodd",
|
|
@@ -1388,7 +1492,7 @@ var FaceId_exports = {};
|
|
|
1388
1492
|
__export(FaceId_exports, {
|
|
1389
1493
|
default: () => FaceId_default
|
|
1390
1494
|
});
|
|
1391
|
-
import * as
|
|
1495
|
+
import * as React30 from "react";
|
|
1392
1496
|
var SvgFaceId, FaceId_default;
|
|
1393
1497
|
var init_FaceId = __esm({
|
|
1394
1498
|
"src/react/FaceId.tsx"() {
|
|
@@ -1396,7 +1500,7 @@ var init_FaceId = __esm({
|
|
|
1396
1500
|
init_types();
|
|
1397
1501
|
SvgFaceId = ({ size = 16, ...props }) => {
|
|
1398
1502
|
const sizeValue = resolveSize(size);
|
|
1399
|
-
return /* @__PURE__ */
|
|
1503
|
+
return /* @__PURE__ */ React30.createElement(
|
|
1400
1504
|
"svg",
|
|
1401
1505
|
{
|
|
1402
1506
|
width: sizeValue,
|
|
@@ -1406,56 +1510,56 @@ var init_FaceId = __esm({
|
|
|
1406
1510
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1407
1511
|
...props
|
|
1408
1512
|
},
|
|
1409
|
-
/* @__PURE__ */
|
|
1513
|
+
/* @__PURE__ */ React30.createElement(
|
|
1410
1514
|
"path",
|
|
1411
1515
|
{
|
|
1412
1516
|
d: "M13.9145 15.5719C14.3166 15.2798 14.8797 15.3692 15.1719 15.7713C15.464 16.1734 15.3745 16.7365 14.9725 17.0287C14.2541 17.5507 13.1722 18.1007 11.7994 18.1007C10.4266 18.1006 9.34461 17.5507 8.62624 17.0287C8.22423 16.7365 8.13483 16.1734 8.42684 15.7713C8.719 15.3693 9.28216 15.2799 9.68423 15.5719C10.2042 15.9498 10.9224 16.3003 11.7994 16.3003C12.6764 16.3003 13.3945 15.9498 13.9145 15.5719Z",
|
|
1413
1517
|
fill: "currentColor"
|
|
1414
1518
|
}
|
|
1415
1519
|
),
|
|
1416
|
-
/* @__PURE__ */
|
|
1520
|
+
/* @__PURE__ */ React30.createElement(
|
|
1417
1521
|
"path",
|
|
1418
1522
|
{
|
|
1419
1523
|
d: "M15.3999 10.9008V9.10037C15.3999 8.60331 15.8026 8.20059 16.2997 8.20059C16.7967 8.20059 17.1994 8.60331 17.1994 9.10037V10.9008C17.1992 11.3976 16.7966 11.8005 16.2997 11.8005C15.8027 11.8005 15.4001 11.3976 15.3999 10.9008Z",
|
|
1420
1524
|
fill: "currentColor"
|
|
1421
1525
|
}
|
|
1422
1526
|
),
|
|
1423
|
-
/* @__PURE__ */
|
|
1527
|
+
/* @__PURE__ */ React30.createElement(
|
|
1424
1528
|
"path",
|
|
1425
1529
|
{
|
|
1426
1530
|
d: "M6.39986 10.9008V9.10037C6.39986 8.60331 6.80258 8.20059 7.29964 8.20059C7.7967 8.20059 8.19942 8.60331 8.19942 9.10037V10.9008C8.19922 11.3976 7.79657 11.8005 7.29964 11.8005C6.80271 11.8005 6.40007 11.3976 6.39986 10.9008Z",
|
|
1427
1531
|
fill: "currentColor"
|
|
1428
1532
|
}
|
|
1429
1533
|
),
|
|
1430
|
-
/* @__PURE__ */
|
|
1534
|
+
/* @__PURE__ */ React30.createElement(
|
|
1431
1535
|
"path",
|
|
1432
1536
|
{
|
|
1433
1537
|
d: "M10.8999 9.10037C10.8999 8.60339 11.3027 8.20071 11.7997 8.20059C12.2967 8.20059 12.7003 8.60331 12.7003 9.10037V12.7003C12.7003 13.6942 11.8937 14.5007 10.8999 14.5007C10.4028 14.5007 10.0001 14.0972 10.0001 13.6001C10.0002 13.1032 10.4029 12.7003 10.8999 12.7003V9.10037Z",
|
|
1434
1538
|
fill: "currentColor"
|
|
1435
1539
|
}
|
|
1436
1540
|
),
|
|
1437
|
-
/* @__PURE__ */
|
|
1541
|
+
/* @__PURE__ */ React30.createElement(
|
|
1438
1542
|
"path",
|
|
1439
1543
|
{
|
|
1440
1544
|
d: "M20.7999 6.39952V3.70017C20.7999 3.20278 20.3975 2.79965 19.9001 2.79956H17.1999C16.7029 2.79956 16.3001 2.39684 16.3001 1.89978C16.3001 1.40272 16.7029 1 17.1999 1H19.9001C21.3916 1.00009 22.6003 2.20867 22.6003 3.70017V6.39952C22.6003 6.89657 22.1967 7.30012 21.6997 7.30012C21.2027 7.29997 20.7999 6.89648 20.7999 6.39952Z",
|
|
1441
1545
|
fill: "currentColor"
|
|
1442
1546
|
}
|
|
1443
1547
|
),
|
|
1444
|
-
/* @__PURE__ */
|
|
1548
|
+
/* @__PURE__ */ React30.createElement(
|
|
1445
1549
|
"path",
|
|
1446
1550
|
{
|
|
1447
1551
|
d: "M1.00014 6.39979V3.70044C1.00014 2.20889 2.20875 1.00027 3.70031 1.00027H6.39965C6.89671 1.00027 7.30026 1.403 7.30026 1.90006C7.30026 2.39711 6.89671 2.79984 6.39965 2.79984H3.70031C3.20286 2.79984 2.7997 3.203 2.7997 3.70044V6.39979C2.7997 6.89685 2.39698 7.3004 1.89992 7.3004C1.40286 7.3004 1.00014 6.89685 1.00014 6.39979Z",
|
|
1448
1552
|
fill: "currentColor"
|
|
1449
1553
|
}
|
|
1450
1554
|
),
|
|
1451
|
-
/* @__PURE__ */
|
|
1555
|
+
/* @__PURE__ */ React30.createElement(
|
|
1452
1556
|
"path",
|
|
1453
1557
|
{
|
|
1454
1558
|
d: "M20.7999 19.9001V17.1999C20.7999 16.703 21.2027 16.3003 21.6997 16.3001C22.1967 16.3001 22.6003 16.7029 22.6003 17.1999V19.9001C22.6002 21.3915 21.3915 22.6002 19.9001 22.6003H17.1999C16.7029 22.6003 16.3001 22.1967 16.3001 21.6997C16.3003 21.2027 16.703 20.7999 17.1999 20.7999H19.9001C20.3974 20.7998 20.7998 20.3974 20.7999 19.9001Z",
|
|
1455
1559
|
fill: "currentColor"
|
|
1456
1560
|
}
|
|
1457
1561
|
),
|
|
1458
|
-
/* @__PURE__ */
|
|
1562
|
+
/* @__PURE__ */ React30.createElement(
|
|
1459
1563
|
"path",
|
|
1460
1564
|
{
|
|
1461
1565
|
d: "M1 19.9001V17.1999C1 16.7029 1.40272 16.3001 1.89978 16.3001C2.39684 16.3001 2.79956 16.7029 2.79956 17.1999V19.9001C2.79965 20.3975 3.20278 20.7999 3.70017 20.7999H6.39952C6.89648 20.7999 7.29997 21.2027 7.30012 21.6997C7.30012 22.1967 6.89657 22.6003 6.39952 22.6003H3.70017C2.20867 22.6003 1.00009 21.3916 1 19.9001Z",
|
|
@@ -1473,7 +1577,7 @@ var FileCheck_exports = {};
|
|
|
1473
1577
|
__export(FileCheck_exports, {
|
|
1474
1578
|
default: () => FileCheck_default
|
|
1475
1579
|
});
|
|
1476
|
-
import * as
|
|
1580
|
+
import * as React31 from "react";
|
|
1477
1581
|
var SvgFileCheck, FileCheck_default;
|
|
1478
1582
|
var init_FileCheck = __esm({
|
|
1479
1583
|
"src/react/FileCheck.tsx"() {
|
|
@@ -1481,7 +1585,7 @@ var init_FileCheck = __esm({
|
|
|
1481
1585
|
init_types();
|
|
1482
1586
|
SvgFileCheck = ({ size = 16, ...props }) => {
|
|
1483
1587
|
const sizeValue = resolveSize(size);
|
|
1484
|
-
return /* @__PURE__ */
|
|
1588
|
+
return /* @__PURE__ */ React31.createElement(
|
|
1485
1589
|
"svg",
|
|
1486
1590
|
{
|
|
1487
1591
|
width: sizeValue,
|
|
@@ -1491,7 +1595,7 @@ var init_FileCheck = __esm({
|
|
|
1491
1595
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1492
1596
|
...props
|
|
1493
1597
|
},
|
|
1494
|
-
/* @__PURE__ */
|
|
1598
|
+
/* @__PURE__ */ React31.createElement(
|
|
1495
1599
|
"path",
|
|
1496
1600
|
{
|
|
1497
1601
|
fillRule: "evenodd",
|
|
@@ -1500,7 +1604,7 @@ var init_FileCheck = __esm({
|
|
|
1500
1604
|
fill: "currentColor"
|
|
1501
1605
|
}
|
|
1502
1606
|
),
|
|
1503
|
-
/* @__PURE__ */
|
|
1607
|
+
/* @__PURE__ */ React31.createElement(
|
|
1504
1608
|
"path",
|
|
1505
1609
|
{
|
|
1506
1610
|
fillRule: "evenodd",
|
|
@@ -1509,7 +1613,7 @@ var init_FileCheck = __esm({
|
|
|
1509
1613
|
fill: "currentColor"
|
|
1510
1614
|
}
|
|
1511
1615
|
),
|
|
1512
|
-
/* @__PURE__ */
|
|
1616
|
+
/* @__PURE__ */ React31.createElement(
|
|
1513
1617
|
"path",
|
|
1514
1618
|
{
|
|
1515
1619
|
fillRule: "evenodd",
|
|
@@ -1529,7 +1633,7 @@ var FileInput_exports = {};
|
|
|
1529
1633
|
__export(FileInput_exports, {
|
|
1530
1634
|
default: () => FileInput_default
|
|
1531
1635
|
});
|
|
1532
|
-
import * as
|
|
1636
|
+
import * as React32 from "react";
|
|
1533
1637
|
var SvgFileInput, FileInput_default;
|
|
1534
1638
|
var init_FileInput = __esm({
|
|
1535
1639
|
"src/react/FileInput.tsx"() {
|
|
@@ -1537,7 +1641,7 @@ var init_FileInput = __esm({
|
|
|
1537
1641
|
init_types();
|
|
1538
1642
|
SvgFileInput = ({ size = 16, ...props }) => {
|
|
1539
1643
|
const sizeValue = resolveSize(size);
|
|
1540
|
-
return /* @__PURE__ */
|
|
1644
|
+
return /* @__PURE__ */ React32.createElement(
|
|
1541
1645
|
"svg",
|
|
1542
1646
|
{
|
|
1543
1647
|
width: sizeValue,
|
|
@@ -1547,7 +1651,7 @@ var init_FileInput = __esm({
|
|
|
1547
1651
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1548
1652
|
...props
|
|
1549
1653
|
},
|
|
1550
|
-
/* @__PURE__ */
|
|
1654
|
+
/* @__PURE__ */ React32.createElement(
|
|
1551
1655
|
"path",
|
|
1552
1656
|
{
|
|
1553
1657
|
fillRule: "evenodd",
|
|
@@ -1556,7 +1660,7 @@ var init_FileInput = __esm({
|
|
|
1556
1660
|
fill: "currentColor"
|
|
1557
1661
|
}
|
|
1558
1662
|
),
|
|
1559
|
-
/* @__PURE__ */
|
|
1663
|
+
/* @__PURE__ */ React32.createElement(
|
|
1560
1664
|
"path",
|
|
1561
1665
|
{
|
|
1562
1666
|
fillRule: "evenodd",
|
|
@@ -1565,7 +1669,7 @@ var init_FileInput = __esm({
|
|
|
1565
1669
|
fill: "currentColor"
|
|
1566
1670
|
}
|
|
1567
1671
|
),
|
|
1568
|
-
/* @__PURE__ */
|
|
1672
|
+
/* @__PURE__ */ React32.createElement(
|
|
1569
1673
|
"path",
|
|
1570
1674
|
{
|
|
1571
1675
|
fillRule: "evenodd",
|
|
@@ -1574,7 +1678,7 @@ var init_FileInput = __esm({
|
|
|
1574
1678
|
fill: "currentColor"
|
|
1575
1679
|
}
|
|
1576
1680
|
),
|
|
1577
|
-
/* @__PURE__ */
|
|
1681
|
+
/* @__PURE__ */ React32.createElement(
|
|
1578
1682
|
"path",
|
|
1579
1683
|
{
|
|
1580
1684
|
fillRule: "evenodd",
|
|
@@ -1594,7 +1698,7 @@ var FileKey_exports = {};
|
|
|
1594
1698
|
__export(FileKey_exports, {
|
|
1595
1699
|
default: () => FileKey_default
|
|
1596
1700
|
});
|
|
1597
|
-
import * as
|
|
1701
|
+
import * as React33 from "react";
|
|
1598
1702
|
var SvgFileKey, FileKey_default;
|
|
1599
1703
|
var init_FileKey = __esm({
|
|
1600
1704
|
"src/react/FileKey.tsx"() {
|
|
@@ -1602,7 +1706,7 @@ var init_FileKey = __esm({
|
|
|
1602
1706
|
init_types();
|
|
1603
1707
|
SvgFileKey = ({ size = 16, ...props }) => {
|
|
1604
1708
|
const sizeValue = resolveSize(size);
|
|
1605
|
-
return /* @__PURE__ */
|
|
1709
|
+
return /* @__PURE__ */ React33.createElement(
|
|
1606
1710
|
"svg",
|
|
1607
1711
|
{
|
|
1608
1712
|
width: sizeValue,
|
|
@@ -1612,7 +1716,7 @@ var init_FileKey = __esm({
|
|
|
1612
1716
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1613
1717
|
...props
|
|
1614
1718
|
},
|
|
1615
|
-
/* @__PURE__ */
|
|
1719
|
+
/* @__PURE__ */ React33.createElement(
|
|
1616
1720
|
"path",
|
|
1617
1721
|
{
|
|
1618
1722
|
fillRule: "evenodd",
|
|
@@ -1621,7 +1725,7 @@ var init_FileKey = __esm({
|
|
|
1621
1725
|
fill: "currentColor"
|
|
1622
1726
|
}
|
|
1623
1727
|
),
|
|
1624
|
-
/* @__PURE__ */
|
|
1728
|
+
/* @__PURE__ */ React33.createElement(
|
|
1625
1729
|
"path",
|
|
1626
1730
|
{
|
|
1627
1731
|
fillRule: "evenodd",
|
|
@@ -1630,7 +1734,7 @@ var init_FileKey = __esm({
|
|
|
1630
1734
|
fill: "currentColor"
|
|
1631
1735
|
}
|
|
1632
1736
|
),
|
|
1633
|
-
/* @__PURE__ */
|
|
1737
|
+
/* @__PURE__ */ React33.createElement(
|
|
1634
1738
|
"path",
|
|
1635
1739
|
{
|
|
1636
1740
|
fillRule: "evenodd",
|
|
@@ -1639,7 +1743,7 @@ var init_FileKey = __esm({
|
|
|
1639
1743
|
fill: "currentColor"
|
|
1640
1744
|
}
|
|
1641
1745
|
),
|
|
1642
|
-
/* @__PURE__ */
|
|
1746
|
+
/* @__PURE__ */ React33.createElement(
|
|
1643
1747
|
"path",
|
|
1644
1748
|
{
|
|
1645
1749
|
fillRule: "evenodd",
|
|
@@ -1659,7 +1763,7 @@ var FileLock_exports = {};
|
|
|
1659
1763
|
__export(FileLock_exports, {
|
|
1660
1764
|
default: () => FileLock_default
|
|
1661
1765
|
});
|
|
1662
|
-
import * as
|
|
1766
|
+
import * as React34 from "react";
|
|
1663
1767
|
var SvgFileLock, FileLock_default;
|
|
1664
1768
|
var init_FileLock = __esm({
|
|
1665
1769
|
"src/react/FileLock.tsx"() {
|
|
@@ -1667,7 +1771,7 @@ var init_FileLock = __esm({
|
|
|
1667
1771
|
init_types();
|
|
1668
1772
|
SvgFileLock = ({ size = 16, ...props }) => {
|
|
1669
1773
|
const sizeValue = resolveSize(size);
|
|
1670
|
-
return /* @__PURE__ */
|
|
1774
|
+
return /* @__PURE__ */ React34.createElement(
|
|
1671
1775
|
"svg",
|
|
1672
1776
|
{
|
|
1673
1777
|
width: sizeValue,
|
|
@@ -1677,7 +1781,7 @@ var init_FileLock = __esm({
|
|
|
1677
1781
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1678
1782
|
...props
|
|
1679
1783
|
},
|
|
1680
|
-
/* @__PURE__ */
|
|
1784
|
+
/* @__PURE__ */ React34.createElement(
|
|
1681
1785
|
"path",
|
|
1682
1786
|
{
|
|
1683
1787
|
fillRule: "evenodd",
|
|
@@ -1686,7 +1790,7 @@ var init_FileLock = __esm({
|
|
|
1686
1790
|
fill: "currentColor"
|
|
1687
1791
|
}
|
|
1688
1792
|
),
|
|
1689
|
-
/* @__PURE__ */
|
|
1793
|
+
/* @__PURE__ */ React34.createElement(
|
|
1690
1794
|
"path",
|
|
1691
1795
|
{
|
|
1692
1796
|
fillRule: "evenodd",
|
|
@@ -1695,7 +1799,7 @@ var init_FileLock = __esm({
|
|
|
1695
1799
|
fill: "currentColor"
|
|
1696
1800
|
}
|
|
1697
1801
|
),
|
|
1698
|
-
/* @__PURE__ */
|
|
1802
|
+
/* @__PURE__ */ React34.createElement(
|
|
1699
1803
|
"path",
|
|
1700
1804
|
{
|
|
1701
1805
|
fillRule: "evenodd",
|
|
@@ -1715,7 +1819,7 @@ var FileSignature_exports = {};
|
|
|
1715
1819
|
__export(FileSignature_exports, {
|
|
1716
1820
|
default: () => FileSignature_default
|
|
1717
1821
|
});
|
|
1718
|
-
import * as
|
|
1822
|
+
import * as React35 from "react";
|
|
1719
1823
|
var SvgFileSignature, FileSignature_default;
|
|
1720
1824
|
var init_FileSignature = __esm({
|
|
1721
1825
|
"src/react/FileSignature.tsx"() {
|
|
@@ -1723,7 +1827,7 @@ var init_FileSignature = __esm({
|
|
|
1723
1827
|
init_types();
|
|
1724
1828
|
SvgFileSignature = ({ size = 16, ...props }) => {
|
|
1725
1829
|
const sizeValue = resolveSize(size);
|
|
1726
|
-
return /* @__PURE__ */
|
|
1830
|
+
return /* @__PURE__ */ React35.createElement(
|
|
1727
1831
|
"svg",
|
|
1728
1832
|
{
|
|
1729
1833
|
width: sizeValue,
|
|
@@ -1733,7 +1837,7 @@ var init_FileSignature = __esm({
|
|
|
1733
1837
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1734
1838
|
...props
|
|
1735
1839
|
},
|
|
1736
|
-
/* @__PURE__ */
|
|
1840
|
+
/* @__PURE__ */ React35.createElement(
|
|
1737
1841
|
"path",
|
|
1738
1842
|
{
|
|
1739
1843
|
fillRule: "evenodd",
|
|
@@ -1742,7 +1846,7 @@ var init_FileSignature = __esm({
|
|
|
1742
1846
|
fill: "currentColor"
|
|
1743
1847
|
}
|
|
1744
1848
|
),
|
|
1745
|
-
/* @__PURE__ */
|
|
1849
|
+
/* @__PURE__ */ React35.createElement(
|
|
1746
1850
|
"path",
|
|
1747
1851
|
{
|
|
1748
1852
|
fillRule: "evenodd",
|
|
@@ -1751,7 +1855,7 @@ var init_FileSignature = __esm({
|
|
|
1751
1855
|
fill: "currentColor"
|
|
1752
1856
|
}
|
|
1753
1857
|
),
|
|
1754
|
-
/* @__PURE__ */
|
|
1858
|
+
/* @__PURE__ */ React35.createElement(
|
|
1755
1859
|
"path",
|
|
1756
1860
|
{
|
|
1757
1861
|
fillRule: "evenodd",
|
|
@@ -1771,7 +1875,7 @@ var FileSpreadsheet_exports = {};
|
|
|
1771
1875
|
__export(FileSpreadsheet_exports, {
|
|
1772
1876
|
default: () => FileSpreadsheet_default
|
|
1773
1877
|
});
|
|
1774
|
-
import * as
|
|
1878
|
+
import * as React36 from "react";
|
|
1775
1879
|
var SvgFileSpreadsheet, FileSpreadsheet_default;
|
|
1776
1880
|
var init_FileSpreadsheet = __esm({
|
|
1777
1881
|
"src/react/FileSpreadsheet.tsx"() {
|
|
@@ -1779,7 +1883,7 @@ var init_FileSpreadsheet = __esm({
|
|
|
1779
1883
|
init_types();
|
|
1780
1884
|
SvgFileSpreadsheet = ({ size = 16, ...props }) => {
|
|
1781
1885
|
const sizeValue = resolveSize(size);
|
|
1782
|
-
return /* @__PURE__ */
|
|
1886
|
+
return /* @__PURE__ */ React36.createElement(
|
|
1783
1887
|
"svg",
|
|
1784
1888
|
{
|
|
1785
1889
|
width: sizeValue,
|
|
@@ -1789,7 +1893,7 @@ var init_FileSpreadsheet = __esm({
|
|
|
1789
1893
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1790
1894
|
...props
|
|
1791
1895
|
},
|
|
1792
|
-
/* @__PURE__ */
|
|
1896
|
+
/* @__PURE__ */ React36.createElement(
|
|
1793
1897
|
"path",
|
|
1794
1898
|
{
|
|
1795
1899
|
fillRule: "evenodd",
|
|
@@ -1798,7 +1902,7 @@ var init_FileSpreadsheet = __esm({
|
|
|
1798
1902
|
fill: "currentColor"
|
|
1799
1903
|
}
|
|
1800
1904
|
),
|
|
1801
|
-
/* @__PURE__ */
|
|
1905
|
+
/* @__PURE__ */ React36.createElement(
|
|
1802
1906
|
"path",
|
|
1803
1907
|
{
|
|
1804
1908
|
fillRule: "evenodd",
|
|
@@ -1807,7 +1911,7 @@ var init_FileSpreadsheet = __esm({
|
|
|
1807
1911
|
fill: "currentColor"
|
|
1808
1912
|
}
|
|
1809
1913
|
),
|
|
1810
|
-
/* @__PURE__ */
|
|
1914
|
+
/* @__PURE__ */ React36.createElement(
|
|
1811
1915
|
"path",
|
|
1812
1916
|
{
|
|
1813
1917
|
fillRule: "evenodd",
|
|
@@ -1816,7 +1920,7 @@ var init_FileSpreadsheet = __esm({
|
|
|
1816
1920
|
fill: "currentColor"
|
|
1817
1921
|
}
|
|
1818
1922
|
),
|
|
1819
|
-
/* @__PURE__ */
|
|
1923
|
+
/* @__PURE__ */ React36.createElement(
|
|
1820
1924
|
"path",
|
|
1821
1925
|
{
|
|
1822
1926
|
fillRule: "evenodd",
|
|
@@ -1825,7 +1929,7 @@ var init_FileSpreadsheet = __esm({
|
|
|
1825
1929
|
fill: "currentColor"
|
|
1826
1930
|
}
|
|
1827
1931
|
),
|
|
1828
|
-
/* @__PURE__ */
|
|
1932
|
+
/* @__PURE__ */ React36.createElement(
|
|
1829
1933
|
"path",
|
|
1830
1934
|
{
|
|
1831
1935
|
fillRule: "evenodd",
|
|
@@ -1834,7 +1938,7 @@ var init_FileSpreadsheet = __esm({
|
|
|
1834
1938
|
fill: "currentColor"
|
|
1835
1939
|
}
|
|
1836
1940
|
),
|
|
1837
|
-
/* @__PURE__ */
|
|
1941
|
+
/* @__PURE__ */ React36.createElement(
|
|
1838
1942
|
"path",
|
|
1839
1943
|
{
|
|
1840
1944
|
fillRule: "evenodd",
|
|
@@ -1854,7 +1958,7 @@ var FileText_exports = {};
|
|
|
1854
1958
|
__export(FileText_exports, {
|
|
1855
1959
|
default: () => FileText_default
|
|
1856
1960
|
});
|
|
1857
|
-
import * as
|
|
1961
|
+
import * as React37 from "react";
|
|
1858
1962
|
var SvgFileText, FileText_default;
|
|
1859
1963
|
var init_FileText = __esm({
|
|
1860
1964
|
"src/react/FileText.tsx"() {
|
|
@@ -1862,7 +1966,7 @@ var init_FileText = __esm({
|
|
|
1862
1966
|
init_types();
|
|
1863
1967
|
SvgFileText = ({ size = 16, ...props }) => {
|
|
1864
1968
|
const sizeValue = resolveSize(size);
|
|
1865
|
-
return /* @__PURE__ */
|
|
1969
|
+
return /* @__PURE__ */ React37.createElement(
|
|
1866
1970
|
"svg",
|
|
1867
1971
|
{
|
|
1868
1972
|
width: sizeValue,
|
|
@@ -1872,7 +1976,7 @@ var init_FileText = __esm({
|
|
|
1872
1976
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1873
1977
|
...props
|
|
1874
1978
|
},
|
|
1875
|
-
/* @__PURE__ */
|
|
1979
|
+
/* @__PURE__ */ React37.createElement(
|
|
1876
1980
|
"path",
|
|
1877
1981
|
{
|
|
1878
1982
|
fillRule: "evenodd",
|
|
@@ -1881,7 +1985,7 @@ var init_FileText = __esm({
|
|
|
1881
1985
|
fill: "currentColor"
|
|
1882
1986
|
}
|
|
1883
1987
|
),
|
|
1884
|
-
/* @__PURE__ */
|
|
1988
|
+
/* @__PURE__ */ React37.createElement(
|
|
1885
1989
|
"path",
|
|
1886
1990
|
{
|
|
1887
1991
|
fillRule: "evenodd",
|
|
@@ -1890,7 +1994,7 @@ var init_FileText = __esm({
|
|
|
1890
1994
|
fill: "currentColor"
|
|
1891
1995
|
}
|
|
1892
1996
|
),
|
|
1893
|
-
/* @__PURE__ */
|
|
1997
|
+
/* @__PURE__ */ React37.createElement(
|
|
1894
1998
|
"path",
|
|
1895
1999
|
{
|
|
1896
2000
|
fillRule: "evenodd",
|
|
@@ -1899,7 +2003,7 @@ var init_FileText = __esm({
|
|
|
1899
2003
|
fill: "currentColor"
|
|
1900
2004
|
}
|
|
1901
2005
|
),
|
|
1902
|
-
/* @__PURE__ */
|
|
2006
|
+
/* @__PURE__ */ React37.createElement(
|
|
1903
2007
|
"path",
|
|
1904
2008
|
{
|
|
1905
2009
|
fillRule: "evenodd",
|
|
@@ -1908,7 +2012,7 @@ var init_FileText = __esm({
|
|
|
1908
2012
|
fill: "currentColor"
|
|
1909
2013
|
}
|
|
1910
2014
|
),
|
|
1911
|
-
/* @__PURE__ */
|
|
2015
|
+
/* @__PURE__ */ React37.createElement(
|
|
1912
2016
|
"path",
|
|
1913
2017
|
{
|
|
1914
2018
|
fillRule: "evenodd",
|
|
@@ -1928,7 +2032,7 @@ var Filter_exports = {};
|
|
|
1928
2032
|
__export(Filter_exports, {
|
|
1929
2033
|
default: () => Filter_default
|
|
1930
2034
|
});
|
|
1931
|
-
import * as
|
|
2035
|
+
import * as React38 from "react";
|
|
1932
2036
|
var SvgFilter, Filter_default;
|
|
1933
2037
|
var init_Filter = __esm({
|
|
1934
2038
|
"src/react/Filter.tsx"() {
|
|
@@ -1936,7 +2040,7 @@ var init_Filter = __esm({
|
|
|
1936
2040
|
init_types();
|
|
1937
2041
|
SvgFilter = ({ size = 16, ...props }) => {
|
|
1938
2042
|
const sizeValue = resolveSize(size);
|
|
1939
|
-
return /* @__PURE__ */
|
|
2043
|
+
return /* @__PURE__ */ React38.createElement(
|
|
1940
2044
|
"svg",
|
|
1941
2045
|
{
|
|
1942
2046
|
width: sizeValue,
|
|
@@ -1946,7 +2050,7 @@ var init_Filter = __esm({
|
|
|
1946
2050
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1947
2051
|
...props
|
|
1948
2052
|
},
|
|
1949
|
-
/* @__PURE__ */
|
|
2053
|
+
/* @__PURE__ */ React38.createElement(
|
|
1950
2054
|
"path",
|
|
1951
2055
|
{
|
|
1952
2056
|
fillRule: "evenodd",
|
|
@@ -1955,7 +2059,7 @@ var init_Filter = __esm({
|
|
|
1955
2059
|
fill: "currentColor"
|
|
1956
2060
|
}
|
|
1957
2061
|
),
|
|
1958
|
-
/* @__PURE__ */
|
|
2062
|
+
/* @__PURE__ */ React38.createElement(
|
|
1959
2063
|
"path",
|
|
1960
2064
|
{
|
|
1961
2065
|
fillRule: "evenodd",
|
|
@@ -1964,7 +2068,7 @@ var init_Filter = __esm({
|
|
|
1964
2068
|
fill: "currentColor"
|
|
1965
2069
|
}
|
|
1966
2070
|
),
|
|
1967
|
-
/* @__PURE__ */
|
|
2071
|
+
/* @__PURE__ */ React38.createElement(
|
|
1968
2072
|
"path",
|
|
1969
2073
|
{
|
|
1970
2074
|
fillRule: "evenodd",
|
|
@@ -1973,7 +2077,7 @@ var init_Filter = __esm({
|
|
|
1973
2077
|
fill: "currentColor"
|
|
1974
2078
|
}
|
|
1975
2079
|
),
|
|
1976
|
-
/* @__PURE__ */
|
|
2080
|
+
/* @__PURE__ */ React38.createElement(
|
|
1977
2081
|
"path",
|
|
1978
2082
|
{
|
|
1979
2083
|
fillRule: "evenodd",
|
|
@@ -1993,7 +2097,7 @@ var FingerprintAndroid_exports = {};
|
|
|
1993
2097
|
__export(FingerprintAndroid_exports, {
|
|
1994
2098
|
default: () => FingerprintAndroid_default
|
|
1995
2099
|
});
|
|
1996
|
-
import * as
|
|
2100
|
+
import * as React39 from "react";
|
|
1997
2101
|
var SvgFingerprintAndroid, FingerprintAndroid_default;
|
|
1998
2102
|
var init_FingerprintAndroid = __esm({
|
|
1999
2103
|
"src/react/FingerprintAndroid.tsx"() {
|
|
@@ -2001,7 +2105,7 @@ var init_FingerprintAndroid = __esm({
|
|
|
2001
2105
|
init_types();
|
|
2002
2106
|
SvgFingerprintAndroid = ({ size = 16, ...props }) => {
|
|
2003
2107
|
const sizeValue = resolveSize(size);
|
|
2004
|
-
return /* @__PURE__ */
|
|
2108
|
+
return /* @__PURE__ */ React39.createElement(
|
|
2005
2109
|
"svg",
|
|
2006
2110
|
{
|
|
2007
2111
|
width: sizeValue,
|
|
@@ -2011,7 +2115,7 @@ var init_FingerprintAndroid = __esm({
|
|
|
2011
2115
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2012
2116
|
...props
|
|
2013
2117
|
},
|
|
2014
|
-
/* @__PURE__ */
|
|
2118
|
+
/* @__PURE__ */ React39.createElement(
|
|
2015
2119
|
"path",
|
|
2016
2120
|
{
|
|
2017
2121
|
d: "M18.3069 4.55233C18.2243 4.55233 18.1416 4.53167 18.0693 4.49033C16.0853 3.46733 14.3699 3.03333 12.3136 3.03333C10.2676 3.03333 8.32493 3.519 6.55793 4.49033C6.30993 4.62467 5.99993 4.53167 5.85526 4.28367C5.72093 4.03567 5.81393 3.71533 6.06193 3.581C7.98393 2.53733 10.0919 2 12.3136 2C14.5146 2 16.4366 2.48567 18.5446 3.57067C18.8029 3.705 18.8959 4.015 18.7616 4.263C18.6686 4.449 18.4929 4.55233 18.3069 4.55233ZM3.51993 9.97733C3.4166 9.97733 3.31326 9.94633 3.22026 9.88433C2.9826 9.719 2.93093 9.39867 3.09626 9.161C4.11926 7.71433 5.42126 6.57767 6.97126 5.782C10.2159 4.108 14.3699 4.09767 17.6249 5.77167C19.1749 6.56733 20.4769 7.69367 21.4999 9.13C21.6653 9.35733 21.6136 9.688 21.3759 9.85333C21.1383 10.0187 20.8179 9.967 20.6526 9.72933C19.7226 8.42733 18.5446 7.40433 17.1496 6.69133C14.1839 5.17233 10.3916 5.17233 7.43626 6.70167C6.03093 7.425 4.85293 8.45833 3.92293 9.76033C3.84026 9.905 3.68526 9.97733 3.51993 9.97733ZM9.97826 22.4497C9.84393 22.4497 9.7096 22.398 9.6166 22.2947C8.7176 21.3957 8.23193 20.817 7.5396 19.5667C6.8266 18.2957 6.4546 16.7457 6.4546 15.082C6.4546 12.013 9.07926 9.51233 12.3033 9.51233C15.5273 9.51233 18.1519 12.013 18.1519 15.082C18.1519 15.3713 17.9246 15.5987 17.6353 15.5987C17.3459 15.5987 17.1186 15.3713 17.1186 15.082C17.1186 12.5813 14.9589 10.5457 12.3033 10.5457C9.6476 10.5457 7.48793 12.5813 7.48793 15.082C7.48793 16.57 7.8186 17.9443 8.44893 19.0603C9.11027 20.2487 9.56493 20.755 10.3606 21.561C10.5569 21.7677 10.5569 22.088 10.3606 22.2947C10.2469 22.398 10.1126 22.4497 9.97826 22.4497ZM17.3873 20.538C16.1576 20.538 15.0726 20.228 14.1839 19.6183C12.6443 18.5747 11.7246 16.88 11.7246 15.082C11.7246 14.7927 11.9519 14.5653 12.2413 14.5653C12.5306 14.5653 12.7579 14.7927 12.7579 15.082C12.7579 16.539 13.5019 17.9133 14.7626 18.7607C15.4963 19.2567 16.3539 19.4943 17.3873 19.4943C17.6353 19.4943 18.0486 19.4633 18.4619 19.391C18.7409 19.3393 19.0096 19.5253 19.0613 19.8147C19.1129 20.0937 18.9269 20.3623 18.6376 20.414C18.0486 20.5277 17.5319 20.538 17.3873 20.538ZM15.3103 22.6667C15.2689 22.6667 15.2173 22.6563 15.1759 22.646C13.5329 22.1913 12.4583 21.5817 11.3319 20.476C9.88526 19.0397 9.0896 17.128 9.0896 15.082C9.0896 13.408 10.5156 12.044 12.2723 12.044C14.0289 12.044 15.4549 13.408 15.4549 15.082C15.4549 16.1877 16.4159 17.0867 17.6043 17.0867C18.7926 17.0867 19.7536 16.1877 19.7536 15.082C19.7536 11.1863 16.3953 8.02433 12.2619 8.02433C9.32726 8.02433 6.6406 9.657 5.4316 12.1887C5.0286 13.0257 4.82193 14.0073 4.82193 15.082C4.82193 15.888 4.89426 17.159 5.51426 18.8123C5.6176 19.081 5.48326 19.3807 5.2146 19.4737C4.94593 19.577 4.64626 19.4323 4.55326 19.174C4.04693 17.8203 3.79893 16.477 3.79893 15.082C3.79893 13.842 4.0366 12.7157 4.5016 11.734C5.87593 8.851 8.92426 6.98067 12.2619 6.98067C16.9636 6.98067 20.7869 10.6077 20.7869 15.0717C20.7869 16.7457 19.3609 18.1097 17.6043 18.1097C15.8476 18.1097 14.4216 16.7457 14.4216 15.0717C14.4216 13.966 13.4606 13.067 12.2723 13.067C11.0839 13.067 10.1229 13.966 10.1229 15.0717C10.1229 16.8387 10.8049 18.492 12.0553 19.732C13.0369 20.7033 13.9773 21.2407 15.4343 21.6437C15.7133 21.716 15.8683 22.0053 15.7959 22.274C15.7443 22.5117 15.5273 22.6667 15.3103 22.6667Z",
|
|
@@ -2029,7 +2133,7 @@ var HelpCircle_exports = {};
|
|
|
2029
2133
|
__export(HelpCircle_exports, {
|
|
2030
2134
|
default: () => HelpCircle_default
|
|
2031
2135
|
});
|
|
2032
|
-
import * as
|
|
2136
|
+
import * as React40 from "react";
|
|
2033
2137
|
var SvgHelpCircle, HelpCircle_default;
|
|
2034
2138
|
var init_HelpCircle = __esm({
|
|
2035
2139
|
"src/react/HelpCircle.tsx"() {
|
|
@@ -2037,7 +2141,7 @@ var init_HelpCircle = __esm({
|
|
|
2037
2141
|
init_types();
|
|
2038
2142
|
SvgHelpCircle = ({ size = 16, ...props }) => {
|
|
2039
2143
|
const sizeValue = resolveSize(size);
|
|
2040
|
-
return /* @__PURE__ */
|
|
2144
|
+
return /* @__PURE__ */ React40.createElement(
|
|
2041
2145
|
"svg",
|
|
2042
2146
|
{
|
|
2043
2147
|
width: sizeValue,
|
|
@@ -2047,7 +2151,7 @@ var init_HelpCircle = __esm({
|
|
|
2047
2151
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2048
2152
|
...props
|
|
2049
2153
|
},
|
|
2050
|
-
/* @__PURE__ */
|
|
2154
|
+
/* @__PURE__ */ React40.createElement(
|
|
2051
2155
|
"path",
|
|
2052
2156
|
{
|
|
2053
2157
|
fillRule: "evenodd",
|
|
@@ -2056,7 +2160,7 @@ var init_HelpCircle = __esm({
|
|
|
2056
2160
|
fill: "currentColor"
|
|
2057
2161
|
}
|
|
2058
2162
|
),
|
|
2059
|
-
/* @__PURE__ */
|
|
2163
|
+
/* @__PURE__ */ React40.createElement(
|
|
2060
2164
|
"path",
|
|
2061
2165
|
{
|
|
2062
2166
|
fillRule: "evenodd",
|
|
@@ -2065,7 +2169,7 @@ var init_HelpCircle = __esm({
|
|
|
2065
2169
|
fill: "currentColor"
|
|
2066
2170
|
}
|
|
2067
2171
|
),
|
|
2068
|
-
/* @__PURE__ */
|
|
2172
|
+
/* @__PURE__ */ React40.createElement(
|
|
2069
2173
|
"path",
|
|
2070
2174
|
{
|
|
2071
2175
|
fillRule: "evenodd",
|
|
@@ -2085,7 +2189,7 @@ var HomeFilled_exports = {};
|
|
|
2085
2189
|
__export(HomeFilled_exports, {
|
|
2086
2190
|
default: () => HomeFilled_default
|
|
2087
2191
|
});
|
|
2088
|
-
import * as
|
|
2192
|
+
import * as React41 from "react";
|
|
2089
2193
|
var SvgHomeFilled, HomeFilled_default;
|
|
2090
2194
|
var init_HomeFilled = __esm({
|
|
2091
2195
|
"src/react/HomeFilled.tsx"() {
|
|
@@ -2093,7 +2197,7 @@ var init_HomeFilled = __esm({
|
|
|
2093
2197
|
init_types();
|
|
2094
2198
|
SvgHomeFilled = ({ size = 16, ...props }) => {
|
|
2095
2199
|
const sizeValue = resolveSize(size);
|
|
2096
|
-
return /* @__PURE__ */
|
|
2200
|
+
return /* @__PURE__ */ React41.createElement(
|
|
2097
2201
|
"svg",
|
|
2098
2202
|
{
|
|
2099
2203
|
width: sizeValue,
|
|
@@ -2103,7 +2207,7 @@ var init_HomeFilled = __esm({
|
|
|
2103
2207
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2104
2208
|
...props
|
|
2105
2209
|
},
|
|
2106
|
-
/* @__PURE__ */
|
|
2210
|
+
/* @__PURE__ */ React41.createElement(
|
|
2107
2211
|
"path",
|
|
2108
2212
|
{
|
|
2109
2213
|
d: "M9.78125 3.47949C11.1248 2.58376 12.8752 2.58376 14.2188 3.47949L19.2188 6.8125C20.3315 7.5543 20.9999 8.80333 21 10.1406V18C21 20.2091 19.2091 22 17 22H7C4.79086 22 3 20.2091 3 18V10.1406C3.00011 8.80333 3.66855 7.5543 4.78125 6.8125L9.78125 3.47949ZM11 11.5928C9.89548 11.5928 9.00008 12.4883 9 13.5928V18.9629C9 19.5152 9.44772 19.9629 10 19.9629H14C14.5523 19.9629 15 19.5152 15 18.9629V13.5928C14.9999 12.4883 14.1045 11.5928 13 11.5928H11Z",
|
|
@@ -2121,7 +2225,7 @@ var HomeLinear_exports = {};
|
|
|
2121
2225
|
__export(HomeLinear_exports, {
|
|
2122
2226
|
default: () => HomeLinear_default
|
|
2123
2227
|
});
|
|
2124
|
-
import * as
|
|
2228
|
+
import * as React42 from "react";
|
|
2125
2229
|
var SvgHomeLinear, HomeLinear_default;
|
|
2126
2230
|
var init_HomeLinear = __esm({
|
|
2127
2231
|
"src/react/HomeLinear.tsx"() {
|
|
@@ -2129,7 +2233,7 @@ var init_HomeLinear = __esm({
|
|
|
2129
2233
|
init_types();
|
|
2130
2234
|
SvgHomeLinear = ({ size = 16, ...props }) => {
|
|
2131
2235
|
const sizeValue = resolveSize(size);
|
|
2132
|
-
return /* @__PURE__ */
|
|
2236
|
+
return /* @__PURE__ */ React42.createElement(
|
|
2133
2237
|
"svg",
|
|
2134
2238
|
{
|
|
2135
2239
|
width: sizeValue,
|
|
@@ -2139,7 +2243,7 @@ var init_HomeLinear = __esm({
|
|
|
2139
2243
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2140
2244
|
...props
|
|
2141
2245
|
},
|
|
2142
|
-
/* @__PURE__ */
|
|
2246
|
+
/* @__PURE__ */ React42.createElement(
|
|
2143
2247
|
"path",
|
|
2144
2248
|
{
|
|
2145
2249
|
fillRule: "evenodd",
|
|
@@ -2159,7 +2263,7 @@ var IconSlot_exports = {};
|
|
|
2159
2263
|
__export(IconSlot_exports, {
|
|
2160
2264
|
default: () => IconSlot_default
|
|
2161
2265
|
});
|
|
2162
|
-
import * as
|
|
2266
|
+
import * as React43 from "react";
|
|
2163
2267
|
var SvgIconSlot, IconSlot_default;
|
|
2164
2268
|
var init_IconSlot = __esm({
|
|
2165
2269
|
"src/react/IconSlot.tsx"() {
|
|
@@ -2167,7 +2271,7 @@ var init_IconSlot = __esm({
|
|
|
2167
2271
|
init_types();
|
|
2168
2272
|
SvgIconSlot = ({ size = 16, ...props }) => {
|
|
2169
2273
|
const sizeValue = resolveSize(size);
|
|
2170
|
-
return /* @__PURE__ */
|
|
2274
|
+
return /* @__PURE__ */ React43.createElement(
|
|
2171
2275
|
"svg",
|
|
2172
2276
|
{
|
|
2173
2277
|
width: sizeValue,
|
|
@@ -2177,7 +2281,7 @@ var init_IconSlot = __esm({
|
|
|
2177
2281
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2178
2282
|
...props
|
|
2179
2283
|
},
|
|
2180
|
-
/* @__PURE__ */
|
|
2284
|
+
/* @__PURE__ */ React43.createElement(
|
|
2181
2285
|
"path",
|
|
2182
2286
|
{
|
|
2183
2287
|
d: "M21 12C21 7.02944 16.9706 3 12 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21C16.9706 21 21 16.9706 21 12ZM23 12C23 18.0751 18.0751 23 12 23C5.92487 23 1 18.0751 1 12C1 5.92487 5.92487 1 12 1C18.0751 1 23 5.92487 23 12Z",
|
|
@@ -2195,7 +2299,7 @@ var Info_exports = {};
|
|
|
2195
2299
|
__export(Info_exports, {
|
|
2196
2300
|
default: () => Info_default
|
|
2197
2301
|
});
|
|
2198
|
-
import * as
|
|
2302
|
+
import * as React44 from "react";
|
|
2199
2303
|
var SvgInfo, Info_default;
|
|
2200
2304
|
var init_Info = __esm({
|
|
2201
2305
|
"src/react/Info.tsx"() {
|
|
@@ -2203,7 +2307,7 @@ var init_Info = __esm({
|
|
|
2203
2307
|
init_types();
|
|
2204
2308
|
SvgInfo = ({ size = 16, ...props }) => {
|
|
2205
2309
|
const sizeValue = resolveSize(size);
|
|
2206
|
-
return /* @__PURE__ */
|
|
2310
|
+
return /* @__PURE__ */ React44.createElement(
|
|
2207
2311
|
"svg",
|
|
2208
2312
|
{
|
|
2209
2313
|
width: sizeValue,
|
|
@@ -2213,7 +2317,7 @@ var init_Info = __esm({
|
|
|
2213
2317
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2214
2318
|
...props
|
|
2215
2319
|
},
|
|
2216
|
-
/* @__PURE__ */
|
|
2320
|
+
/* @__PURE__ */ React44.createElement(
|
|
2217
2321
|
"path",
|
|
2218
2322
|
{
|
|
2219
2323
|
fillRule: "evenodd",
|
|
@@ -2222,7 +2326,7 @@ var init_Info = __esm({
|
|
|
2222
2326
|
fill: "currentColor"
|
|
2223
2327
|
}
|
|
2224
2328
|
),
|
|
2225
|
-
/* @__PURE__ */
|
|
2329
|
+
/* @__PURE__ */ React44.createElement(
|
|
2226
2330
|
"path",
|
|
2227
2331
|
{
|
|
2228
2332
|
fillRule: "evenodd",
|
|
@@ -2231,7 +2335,7 @@ var init_Info = __esm({
|
|
|
2231
2335
|
fill: "currentColor"
|
|
2232
2336
|
}
|
|
2233
2337
|
),
|
|
2234
|
-
/* @__PURE__ */
|
|
2338
|
+
/* @__PURE__ */ React44.createElement(
|
|
2235
2339
|
"path",
|
|
2236
2340
|
{
|
|
2237
2341
|
fillRule: "evenodd",
|
|
@@ -2251,7 +2355,7 @@ var Keys01_exports = {};
|
|
|
2251
2355
|
__export(Keys01_exports, {
|
|
2252
2356
|
default: () => Keys01_default
|
|
2253
2357
|
});
|
|
2254
|
-
import * as
|
|
2358
|
+
import * as React45 from "react";
|
|
2255
2359
|
var SvgKeys01, Keys01_default;
|
|
2256
2360
|
var init_Keys01 = __esm({
|
|
2257
2361
|
"src/react/Keys01.tsx"() {
|
|
@@ -2259,7 +2363,7 @@ var init_Keys01 = __esm({
|
|
|
2259
2363
|
init_types();
|
|
2260
2364
|
SvgKeys01 = ({ size = 16, ...props }) => {
|
|
2261
2365
|
const sizeValue = resolveSize(size);
|
|
2262
|
-
return /* @__PURE__ */
|
|
2366
|
+
return /* @__PURE__ */ React45.createElement(
|
|
2263
2367
|
"svg",
|
|
2264
2368
|
{
|
|
2265
2369
|
width: sizeValue,
|
|
@@ -2269,7 +2373,7 @@ var init_Keys01 = __esm({
|
|
|
2269
2373
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2270
2374
|
...props
|
|
2271
2375
|
},
|
|
2272
|
-
/* @__PURE__ */
|
|
2376
|
+
/* @__PURE__ */ React45.createElement(
|
|
2273
2377
|
"path",
|
|
2274
2378
|
{
|
|
2275
2379
|
fillRule: "evenodd",
|
|
@@ -2278,7 +2382,7 @@ var init_Keys01 = __esm({
|
|
|
2278
2382
|
fill: "currentColor"
|
|
2279
2383
|
}
|
|
2280
2384
|
),
|
|
2281
|
-
/* @__PURE__ */
|
|
2385
|
+
/* @__PURE__ */ React45.createElement(
|
|
2282
2386
|
"path",
|
|
2283
2387
|
{
|
|
2284
2388
|
fillRule: "evenodd",
|
|
@@ -2287,7 +2391,7 @@ var init_Keys01 = __esm({
|
|
|
2287
2391
|
fill: "currentColor"
|
|
2288
2392
|
}
|
|
2289
2393
|
),
|
|
2290
|
-
/* @__PURE__ */
|
|
2394
|
+
/* @__PURE__ */ React45.createElement(
|
|
2291
2395
|
"path",
|
|
2292
2396
|
{
|
|
2293
2397
|
fillRule: "evenodd",
|
|
@@ -2307,7 +2411,7 @@ var LeadsFilled_exports = {};
|
|
|
2307
2411
|
__export(LeadsFilled_exports, {
|
|
2308
2412
|
default: () => LeadsFilled_default
|
|
2309
2413
|
});
|
|
2310
|
-
import * as
|
|
2414
|
+
import * as React46 from "react";
|
|
2311
2415
|
var SvgLeadsFilled, LeadsFilled_default;
|
|
2312
2416
|
var init_LeadsFilled = __esm({
|
|
2313
2417
|
"src/react/LeadsFilled.tsx"() {
|
|
@@ -2315,7 +2419,7 @@ var init_LeadsFilled = __esm({
|
|
|
2315
2419
|
init_types();
|
|
2316
2420
|
SvgLeadsFilled = ({ size = 16, ...props }) => {
|
|
2317
2421
|
const sizeValue = resolveSize(size);
|
|
2318
|
-
return /* @__PURE__ */
|
|
2422
|
+
return /* @__PURE__ */ React46.createElement(
|
|
2319
2423
|
"svg",
|
|
2320
2424
|
{
|
|
2321
2425
|
width: sizeValue,
|
|
@@ -2325,7 +2429,7 @@ var init_LeadsFilled = __esm({
|
|
|
2325
2429
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2326
2430
|
...props
|
|
2327
2431
|
},
|
|
2328
|
-
/* @__PURE__ */
|
|
2432
|
+
/* @__PURE__ */ React46.createElement(
|
|
2329
2433
|
"path",
|
|
2330
2434
|
{
|
|
2331
2435
|
fillRule: "evenodd",
|
|
@@ -2334,7 +2438,7 @@ var init_LeadsFilled = __esm({
|
|
|
2334
2438
|
fill: "currentColor"
|
|
2335
2439
|
}
|
|
2336
2440
|
),
|
|
2337
|
-
/* @__PURE__ */
|
|
2441
|
+
/* @__PURE__ */ React46.createElement(
|
|
2338
2442
|
"path",
|
|
2339
2443
|
{
|
|
2340
2444
|
fillRule: "evenodd",
|
|
@@ -2343,7 +2447,7 @@ var init_LeadsFilled = __esm({
|
|
|
2343
2447
|
fill: "currentColor"
|
|
2344
2448
|
}
|
|
2345
2449
|
),
|
|
2346
|
-
/* @__PURE__ */
|
|
2450
|
+
/* @__PURE__ */ React46.createElement(
|
|
2347
2451
|
"path",
|
|
2348
2452
|
{
|
|
2349
2453
|
fillRule: "evenodd",
|
|
@@ -2352,7 +2456,7 @@ var init_LeadsFilled = __esm({
|
|
|
2352
2456
|
fill: "currentColor"
|
|
2353
2457
|
}
|
|
2354
2458
|
),
|
|
2355
|
-
/* @__PURE__ */
|
|
2459
|
+
/* @__PURE__ */ React46.createElement(
|
|
2356
2460
|
"path",
|
|
2357
2461
|
{
|
|
2358
2462
|
fillRule: "evenodd",
|
|
@@ -2372,7 +2476,7 @@ var LeadsLinear_exports = {};
|
|
|
2372
2476
|
__export(LeadsLinear_exports, {
|
|
2373
2477
|
default: () => LeadsLinear_default
|
|
2374
2478
|
});
|
|
2375
|
-
import * as
|
|
2479
|
+
import * as React47 from "react";
|
|
2376
2480
|
var SvgLeadsLinear, LeadsLinear_default;
|
|
2377
2481
|
var init_LeadsLinear = __esm({
|
|
2378
2482
|
"src/react/LeadsLinear.tsx"() {
|
|
@@ -2380,7 +2484,7 @@ var init_LeadsLinear = __esm({
|
|
|
2380
2484
|
init_types();
|
|
2381
2485
|
SvgLeadsLinear = ({ size = 16, ...props }) => {
|
|
2382
2486
|
const sizeValue = resolveSize(size);
|
|
2383
|
-
return /* @__PURE__ */
|
|
2487
|
+
return /* @__PURE__ */ React47.createElement(
|
|
2384
2488
|
"svg",
|
|
2385
2489
|
{
|
|
2386
2490
|
width: sizeValue,
|
|
@@ -2390,7 +2494,7 @@ var init_LeadsLinear = __esm({
|
|
|
2390
2494
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2391
2495
|
...props
|
|
2392
2496
|
},
|
|
2393
|
-
/* @__PURE__ */
|
|
2497
|
+
/* @__PURE__ */ React47.createElement(
|
|
2394
2498
|
"path",
|
|
2395
2499
|
{
|
|
2396
2500
|
fillRule: "evenodd",
|
|
@@ -2399,7 +2503,7 @@ var init_LeadsLinear = __esm({
|
|
|
2399
2503
|
fill: "currentColor"
|
|
2400
2504
|
}
|
|
2401
2505
|
),
|
|
2402
|
-
/* @__PURE__ */
|
|
2506
|
+
/* @__PURE__ */ React47.createElement(
|
|
2403
2507
|
"path",
|
|
2404
2508
|
{
|
|
2405
2509
|
fillRule: "evenodd",
|
|
@@ -2408,7 +2512,7 @@ var init_LeadsLinear = __esm({
|
|
|
2408
2512
|
fill: "currentColor"
|
|
2409
2513
|
}
|
|
2410
2514
|
),
|
|
2411
|
-
/* @__PURE__ */
|
|
2515
|
+
/* @__PURE__ */ React47.createElement(
|
|
2412
2516
|
"path",
|
|
2413
2517
|
{
|
|
2414
2518
|
fillRule: "evenodd",
|
|
@@ -2417,7 +2521,7 @@ var init_LeadsLinear = __esm({
|
|
|
2417
2521
|
fill: "currentColor"
|
|
2418
2522
|
}
|
|
2419
2523
|
),
|
|
2420
|
-
/* @__PURE__ */
|
|
2524
|
+
/* @__PURE__ */ React47.createElement(
|
|
2421
2525
|
"path",
|
|
2422
2526
|
{
|
|
2423
2527
|
fillRule: "evenodd",
|
|
@@ -2437,7 +2541,7 @@ var Lock_exports = {};
|
|
|
2437
2541
|
__export(Lock_exports, {
|
|
2438
2542
|
default: () => Lock_default
|
|
2439
2543
|
});
|
|
2440
|
-
import * as
|
|
2544
|
+
import * as React48 from "react";
|
|
2441
2545
|
var SvgLock, Lock_default;
|
|
2442
2546
|
var init_Lock = __esm({
|
|
2443
2547
|
"src/react/Lock.tsx"() {
|
|
@@ -2445,7 +2549,7 @@ var init_Lock = __esm({
|
|
|
2445
2549
|
init_types();
|
|
2446
2550
|
SvgLock = ({ size = 16, ...props }) => {
|
|
2447
2551
|
const sizeValue = resolveSize(size);
|
|
2448
|
-
return /* @__PURE__ */
|
|
2552
|
+
return /* @__PURE__ */ React48.createElement(
|
|
2449
2553
|
"svg",
|
|
2450
2554
|
{
|
|
2451
2555
|
width: sizeValue,
|
|
@@ -2455,7 +2559,7 @@ var init_Lock = __esm({
|
|
|
2455
2559
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2456
2560
|
...props
|
|
2457
2561
|
},
|
|
2458
|
-
/* @__PURE__ */
|
|
2562
|
+
/* @__PURE__ */ React48.createElement(
|
|
2459
2563
|
"path",
|
|
2460
2564
|
{
|
|
2461
2565
|
fillRule: "evenodd",
|
|
@@ -2464,7 +2568,7 @@ var init_Lock = __esm({
|
|
|
2464
2568
|
fill: "currentColor"
|
|
2465
2569
|
}
|
|
2466
2570
|
),
|
|
2467
|
-
/* @__PURE__ */
|
|
2571
|
+
/* @__PURE__ */ React48.createElement(
|
|
2468
2572
|
"path",
|
|
2469
2573
|
{
|
|
2470
2574
|
fillRule: "evenodd",
|
|
@@ -2484,7 +2588,7 @@ var Logout_exports = {};
|
|
|
2484
2588
|
__export(Logout_exports, {
|
|
2485
2589
|
default: () => Logout_default
|
|
2486
2590
|
});
|
|
2487
|
-
import * as
|
|
2591
|
+
import * as React49 from "react";
|
|
2488
2592
|
var SvgLogout, Logout_default;
|
|
2489
2593
|
var init_Logout = __esm({
|
|
2490
2594
|
"src/react/Logout.tsx"() {
|
|
@@ -2492,7 +2596,7 @@ var init_Logout = __esm({
|
|
|
2492
2596
|
init_types();
|
|
2493
2597
|
SvgLogout = ({ size = 16, ...props }) => {
|
|
2494
2598
|
const sizeValue = resolveSize(size);
|
|
2495
|
-
return /* @__PURE__ */
|
|
2599
|
+
return /* @__PURE__ */ React49.createElement(
|
|
2496
2600
|
"svg",
|
|
2497
2601
|
{
|
|
2498
2602
|
width: sizeValue,
|
|
@@ -2502,7 +2606,7 @@ var init_Logout = __esm({
|
|
|
2502
2606
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2503
2607
|
...props
|
|
2504
2608
|
},
|
|
2505
|
-
/* @__PURE__ */
|
|
2609
|
+
/* @__PURE__ */ React49.createElement(
|
|
2506
2610
|
"path",
|
|
2507
2611
|
{
|
|
2508
2612
|
fillRule: "evenodd",
|
|
@@ -2511,7 +2615,7 @@ var init_Logout = __esm({
|
|
|
2511
2615
|
fill: "currentColor"
|
|
2512
2616
|
}
|
|
2513
2617
|
),
|
|
2514
|
-
/* @__PURE__ */
|
|
2618
|
+
/* @__PURE__ */ React49.createElement(
|
|
2515
2619
|
"path",
|
|
2516
2620
|
{
|
|
2517
2621
|
fillRule: "evenodd",
|
|
@@ -2520,7 +2624,7 @@ var init_Logout = __esm({
|
|
|
2520
2624
|
fill: "currentColor"
|
|
2521
2625
|
}
|
|
2522
2626
|
),
|
|
2523
|
-
/* @__PURE__ */
|
|
2627
|
+
/* @__PURE__ */ React49.createElement(
|
|
2524
2628
|
"path",
|
|
2525
2629
|
{
|
|
2526
2630
|
fillRule: "evenodd",
|
|
@@ -2540,7 +2644,7 @@ var Mail_exports = {};
|
|
|
2540
2644
|
__export(Mail_exports, {
|
|
2541
2645
|
default: () => Mail_default
|
|
2542
2646
|
});
|
|
2543
|
-
import * as
|
|
2647
|
+
import * as React50 from "react";
|
|
2544
2648
|
var SvgMail, Mail_default;
|
|
2545
2649
|
var init_Mail = __esm({
|
|
2546
2650
|
"src/react/Mail.tsx"() {
|
|
@@ -2548,7 +2652,7 @@ var init_Mail = __esm({
|
|
|
2548
2652
|
init_types();
|
|
2549
2653
|
SvgMail = ({ size = 16, ...props }) => {
|
|
2550
2654
|
const sizeValue = resolveSize(size);
|
|
2551
|
-
return /* @__PURE__ */
|
|
2655
|
+
return /* @__PURE__ */ React50.createElement(
|
|
2552
2656
|
"svg",
|
|
2553
2657
|
{
|
|
2554
2658
|
width: sizeValue,
|
|
@@ -2558,7 +2662,7 @@ var init_Mail = __esm({
|
|
|
2558
2662
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2559
2663
|
...props
|
|
2560
2664
|
},
|
|
2561
|
-
/* @__PURE__ */
|
|
2665
|
+
/* @__PURE__ */ React50.createElement(
|
|
2562
2666
|
"path",
|
|
2563
2667
|
{
|
|
2564
2668
|
fillRule: "evenodd",
|
|
@@ -2567,7 +2671,7 @@ var init_Mail = __esm({
|
|
|
2567
2671
|
fill: "currentColor"
|
|
2568
2672
|
}
|
|
2569
2673
|
),
|
|
2570
|
-
/* @__PURE__ */
|
|
2674
|
+
/* @__PURE__ */ React50.createElement(
|
|
2571
2675
|
"path",
|
|
2572
2676
|
{
|
|
2573
2677
|
fillRule: "evenodd",
|
|
@@ -2587,7 +2691,7 @@ var MapPin_exports = {};
|
|
|
2587
2691
|
__export(MapPin_exports, {
|
|
2588
2692
|
default: () => MapPin_default
|
|
2589
2693
|
});
|
|
2590
|
-
import * as
|
|
2694
|
+
import * as React51 from "react";
|
|
2591
2695
|
var SvgMapPin, MapPin_default;
|
|
2592
2696
|
var init_MapPin = __esm({
|
|
2593
2697
|
"src/react/MapPin.tsx"() {
|
|
@@ -2595,7 +2699,7 @@ var init_MapPin = __esm({
|
|
|
2595
2699
|
init_types();
|
|
2596
2700
|
SvgMapPin = ({ size = 16, ...props }) => {
|
|
2597
2701
|
const sizeValue = resolveSize(size);
|
|
2598
|
-
return /* @__PURE__ */
|
|
2702
|
+
return /* @__PURE__ */ React51.createElement(
|
|
2599
2703
|
"svg",
|
|
2600
2704
|
{
|
|
2601
2705
|
width: sizeValue,
|
|
@@ -2605,7 +2709,7 @@ var init_MapPin = __esm({
|
|
|
2605
2709
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2606
2710
|
...props
|
|
2607
2711
|
},
|
|
2608
|
-
/* @__PURE__ */
|
|
2712
|
+
/* @__PURE__ */ React51.createElement(
|
|
2609
2713
|
"path",
|
|
2610
2714
|
{
|
|
2611
2715
|
fillRule: "evenodd",
|
|
@@ -2614,7 +2718,7 @@ var init_MapPin = __esm({
|
|
|
2614
2718
|
fill: "currentColor"
|
|
2615
2719
|
}
|
|
2616
2720
|
),
|
|
2617
|
-
/* @__PURE__ */
|
|
2721
|
+
/* @__PURE__ */ React51.createElement(
|
|
2618
2722
|
"path",
|
|
2619
2723
|
{
|
|
2620
2724
|
fillRule: "evenodd",
|
|
@@ -2634,7 +2738,7 @@ var MoreHorizontal_exports = {};
|
|
|
2634
2738
|
__export(MoreHorizontal_exports, {
|
|
2635
2739
|
default: () => MoreHorizontal_default
|
|
2636
2740
|
});
|
|
2637
|
-
import * as
|
|
2741
|
+
import * as React52 from "react";
|
|
2638
2742
|
var SvgMoreHorizontal, MoreHorizontal_default;
|
|
2639
2743
|
var init_MoreHorizontal = __esm({
|
|
2640
2744
|
"src/react/MoreHorizontal.tsx"() {
|
|
@@ -2642,7 +2746,7 @@ var init_MoreHorizontal = __esm({
|
|
|
2642
2746
|
init_types();
|
|
2643
2747
|
SvgMoreHorizontal = ({ size = 16, ...props }) => {
|
|
2644
2748
|
const sizeValue = resolveSize(size);
|
|
2645
|
-
return /* @__PURE__ */
|
|
2749
|
+
return /* @__PURE__ */ React52.createElement(
|
|
2646
2750
|
"svg",
|
|
2647
2751
|
{
|
|
2648
2752
|
width: sizeValue,
|
|
@@ -2652,7 +2756,7 @@ var init_MoreHorizontal = __esm({
|
|
|
2652
2756
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2653
2757
|
...props
|
|
2654
2758
|
},
|
|
2655
|
-
/* @__PURE__ */
|
|
2759
|
+
/* @__PURE__ */ React52.createElement(
|
|
2656
2760
|
"path",
|
|
2657
2761
|
{
|
|
2658
2762
|
fillRule: "evenodd",
|
|
@@ -2661,7 +2765,7 @@ var init_MoreHorizontal = __esm({
|
|
|
2661
2765
|
fill: "currentColor"
|
|
2662
2766
|
}
|
|
2663
2767
|
),
|
|
2664
|
-
/* @__PURE__ */
|
|
2768
|
+
/* @__PURE__ */ React52.createElement(
|
|
2665
2769
|
"path",
|
|
2666
2770
|
{
|
|
2667
2771
|
fillRule: "evenodd",
|
|
@@ -2670,7 +2774,7 @@ var init_MoreHorizontal = __esm({
|
|
|
2670
2774
|
fill: "currentColor"
|
|
2671
2775
|
}
|
|
2672
2776
|
),
|
|
2673
|
-
/* @__PURE__ */
|
|
2777
|
+
/* @__PURE__ */ React52.createElement(
|
|
2674
2778
|
"path",
|
|
2675
2779
|
{
|
|
2676
2780
|
fillRule: "evenodd",
|
|
@@ -2690,7 +2794,7 @@ var Mortgage_exports = {};
|
|
|
2690
2794
|
__export(Mortgage_exports, {
|
|
2691
2795
|
default: () => Mortgage_default
|
|
2692
2796
|
});
|
|
2693
|
-
import * as
|
|
2797
|
+
import * as React53 from "react";
|
|
2694
2798
|
var SvgMortgage, Mortgage_default;
|
|
2695
2799
|
var init_Mortgage = __esm({
|
|
2696
2800
|
"src/react/Mortgage.tsx"() {
|
|
@@ -2698,7 +2802,7 @@ var init_Mortgage = __esm({
|
|
|
2698
2802
|
init_types();
|
|
2699
2803
|
SvgMortgage = ({ size = 16, ...props }) => {
|
|
2700
2804
|
const sizeValue = resolveSize(size);
|
|
2701
|
-
return /* @__PURE__ */
|
|
2805
|
+
return /* @__PURE__ */ React53.createElement(
|
|
2702
2806
|
"svg",
|
|
2703
2807
|
{
|
|
2704
2808
|
width: sizeValue,
|
|
@@ -2708,7 +2812,7 @@ var init_Mortgage = __esm({
|
|
|
2708
2812
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2709
2813
|
...props
|
|
2710
2814
|
},
|
|
2711
|
-
/* @__PURE__ */
|
|
2815
|
+
/* @__PURE__ */ React53.createElement(
|
|
2712
2816
|
"path",
|
|
2713
2817
|
{
|
|
2714
2818
|
fillRule: "evenodd",
|
|
@@ -2717,7 +2821,7 @@ var init_Mortgage = __esm({
|
|
|
2717
2821
|
fill: "currentColor"
|
|
2718
2822
|
}
|
|
2719
2823
|
),
|
|
2720
|
-
/* @__PURE__ */
|
|
2824
|
+
/* @__PURE__ */ React53.createElement(
|
|
2721
2825
|
"path",
|
|
2722
2826
|
{
|
|
2723
2827
|
fillRule: "evenodd",
|
|
@@ -2726,7 +2830,7 @@ var init_Mortgage = __esm({
|
|
|
2726
2830
|
fill: "currentColor"
|
|
2727
2831
|
}
|
|
2728
2832
|
),
|
|
2729
|
-
/* @__PURE__ */
|
|
2833
|
+
/* @__PURE__ */ React53.createElement(
|
|
2730
2834
|
"path",
|
|
2731
2835
|
{
|
|
2732
2836
|
fillRule: "evenodd",
|
|
@@ -2735,7 +2839,7 @@ var init_Mortgage = __esm({
|
|
|
2735
2839
|
fill: "currentColor"
|
|
2736
2840
|
}
|
|
2737
2841
|
),
|
|
2738
|
-
/* @__PURE__ */
|
|
2842
|
+
/* @__PURE__ */ React53.createElement(
|
|
2739
2843
|
"path",
|
|
2740
2844
|
{
|
|
2741
2845
|
fillRule: "evenodd",
|
|
@@ -2744,7 +2848,7 @@ var init_Mortgage = __esm({
|
|
|
2744
2848
|
fill: "currentColor"
|
|
2745
2849
|
}
|
|
2746
2850
|
),
|
|
2747
|
-
/* @__PURE__ */
|
|
2851
|
+
/* @__PURE__ */ React53.createElement(
|
|
2748
2852
|
"path",
|
|
2749
2853
|
{
|
|
2750
2854
|
fillRule: "evenodd",
|
|
@@ -2753,7 +2857,7 @@ var init_Mortgage = __esm({
|
|
|
2753
2857
|
fill: "currentColor"
|
|
2754
2858
|
}
|
|
2755
2859
|
),
|
|
2756
|
-
/* @__PURE__ */
|
|
2860
|
+
/* @__PURE__ */ React53.createElement(
|
|
2757
2861
|
"path",
|
|
2758
2862
|
{
|
|
2759
2863
|
fillRule: "evenodd",
|
|
@@ -2762,7 +2866,7 @@ var init_Mortgage = __esm({
|
|
|
2762
2866
|
fill: "currentColor"
|
|
2763
2867
|
}
|
|
2764
2868
|
),
|
|
2765
|
-
/* @__PURE__ */
|
|
2869
|
+
/* @__PURE__ */ React53.createElement(
|
|
2766
2870
|
"path",
|
|
2767
2871
|
{
|
|
2768
2872
|
fillRule: "evenodd",
|
|
@@ -2782,7 +2886,7 @@ var Note_exports = {};
|
|
|
2782
2886
|
__export(Note_exports, {
|
|
2783
2887
|
default: () => Note_default
|
|
2784
2888
|
});
|
|
2785
|
-
import * as
|
|
2889
|
+
import * as React54 from "react";
|
|
2786
2890
|
var SvgNote, Note_default;
|
|
2787
2891
|
var init_Note = __esm({
|
|
2788
2892
|
"src/react/Note.tsx"() {
|
|
@@ -2790,7 +2894,7 @@ var init_Note = __esm({
|
|
|
2790
2894
|
init_types();
|
|
2791
2895
|
SvgNote = ({ size = 16, ...props }) => {
|
|
2792
2896
|
const sizeValue = resolveSize(size);
|
|
2793
|
-
return /* @__PURE__ */
|
|
2897
|
+
return /* @__PURE__ */ React54.createElement(
|
|
2794
2898
|
"svg",
|
|
2795
2899
|
{
|
|
2796
2900
|
width: sizeValue,
|
|
@@ -2800,7 +2904,7 @@ var init_Note = __esm({
|
|
|
2800
2904
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2801
2905
|
...props
|
|
2802
2906
|
},
|
|
2803
|
-
/* @__PURE__ */
|
|
2907
|
+
/* @__PURE__ */ React54.createElement(
|
|
2804
2908
|
"path",
|
|
2805
2909
|
{
|
|
2806
2910
|
d: "M2.09961 19V5C2.09961 4.23087 2.40536 3.49307 2.94922 2.94922C3.49307 2.40536 4.23087 2.09961 5 2.09961H16L16.0889 2.10449C16.2949 2.12493 16.489 2.21558 16.6367 2.36328L21.6367 7.36328C21.8055 7.53206 21.9004 7.76131 21.9004 8V19C21.9004 19.7691 21.5946 20.5069 21.0508 21.0508C20.5069 21.5946 19.7691 21.9004 19 21.9004H5C4.23087 21.9004 3.49307 21.5946 2.94922 21.0508C2.40536 20.5069 2.09961 19.7691 2.09961 19ZM15.9004 7C15.9004 7.29174 16.0164 7.57105 16.2227 7.77734C16.4289 7.98363 16.7083 8.09961 17 8.09961H19.8262L15.9004 4.17383V7ZM3.90039 19C3.90039 19.2917 4.01637 19.5711 4.22266 19.7773C4.42895 19.9836 4.70826 20.0996 5 20.0996H19C19.2917 20.0996 19.5711 19.9836 19.7773 19.7773C19.9836 19.5711 20.0996 19.2917 20.0996 19V9.90039H17C16.2309 9.90039 15.4931 9.59464 14.9492 9.05078C14.4054 8.50693 14.0996 7.76913 14.0996 7V3.90039H5C4.70826 3.90039 4.42895 4.01637 4.22266 4.22266C4.01637 4.42895 3.90039 4.70826 3.90039 5V19Z",
|
|
@@ -2813,12 +2917,64 @@ var init_Note = __esm({
|
|
|
2813
2917
|
}
|
|
2814
2918
|
});
|
|
2815
2919
|
|
|
2920
|
+
// src/react/Notes.tsx
|
|
2921
|
+
var Notes_exports = {};
|
|
2922
|
+
__export(Notes_exports, {
|
|
2923
|
+
default: () => Notes_default
|
|
2924
|
+
});
|
|
2925
|
+
import * as React55 from "react";
|
|
2926
|
+
var SvgNotes, Notes_default;
|
|
2927
|
+
var init_Notes = __esm({
|
|
2928
|
+
"src/react/Notes.tsx"() {
|
|
2929
|
+
"use strict";
|
|
2930
|
+
init_types();
|
|
2931
|
+
SvgNotes = ({ size = 16, ...props }) => {
|
|
2932
|
+
const sizeValue = resolveSize(size);
|
|
2933
|
+
return /* @__PURE__ */ React55.createElement(
|
|
2934
|
+
"svg",
|
|
2935
|
+
{
|
|
2936
|
+
width: sizeValue,
|
|
2937
|
+
height: sizeValue,
|
|
2938
|
+
viewBox: "0 0 24 24",
|
|
2939
|
+
fill: "none",
|
|
2940
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2941
|
+
...props
|
|
2942
|
+
},
|
|
2943
|
+
/* @__PURE__ */ React55.createElement(
|
|
2944
|
+
"path",
|
|
2945
|
+
{
|
|
2946
|
+
d: "M12.7695 10.749C13.2819 10.749 13.6981 11.1644 13.6982 11.6768C13.698 12.1891 13.2819 12.6045 12.7695 12.6045H7.30273C6.79037 12.6045 6.37423 12.1891 6.37402 11.6768C6.37416 11.1644 6.79033 10.749 7.30273 10.749H12.7695Z",
|
|
2947
|
+
fill: "currentColor"
|
|
2948
|
+
}
|
|
2949
|
+
),
|
|
2950
|
+
/* @__PURE__ */ React55.createElement(
|
|
2951
|
+
"path",
|
|
2952
|
+
{
|
|
2953
|
+
d: "M15.5039 6.37402C16.0162 6.37422 16.4316 6.79037 16.4316 7.30273C16.4315 7.81499 16.0161 8.23027 15.5039 8.23047H7.30273C6.79033 8.23047 6.37416 7.81511 6.37402 7.30273C6.37402 6.79025 6.79025 6.37402 7.30273 6.37402H15.5039Z",
|
|
2954
|
+
fill: "currentColor"
|
|
2955
|
+
}
|
|
2956
|
+
),
|
|
2957
|
+
/* @__PURE__ */ React55.createElement(
|
|
2958
|
+
"path",
|
|
2959
|
+
{
|
|
2960
|
+
fillRule: "evenodd",
|
|
2961
|
+
clipRule: "evenodd",
|
|
2962
|
+
d: "M16.5977 2C18.0038 2.00006 19.3524 2.55944 20.3467 3.55371C21.3407 4.54785 21.9002 5.89591 21.9004 7.30176V14.7852C21.9004 15.4816 21.7626 16.172 21.4961 16.8154C21.2296 17.4585 20.8389 18.0429 20.3467 18.5352L18.5352 20.3467C18.0429 20.8389 17.4585 21.2296 16.8154 21.4961C16.172 21.7626 15.4816 21.9004 14.7852 21.9004H7.30176C5.89591 21.9002 4.54785 21.3407 3.55371 20.3467C2.55944 19.3524 2.00006 18.0038 2 16.5977V7.30176C2.00019 5.89582 2.55955 4.54787 3.55371 3.55371C4.54787 2.55955 5.89582 2.00019 7.30176 2H16.5977ZM7.30176 3.85645C6.38803 3.85664 5.51135 4.21912 4.86523 4.86523C4.21912 5.51135 3.85664 6.38803 3.85645 7.30176V16.5977C3.85651 17.5114 4.21919 18.388 4.86523 19.0342C5.51135 19.6803 6.38803 20.0428 7.30176 20.043H12.9355V17.1445C12.9356 16.0284 13.3788 14.9572 14.168 14.168C14.9572 13.3788 16.0284 12.9356 17.1445 12.9355H20.043V7.30176C20.0428 6.38803 19.6803 5.51135 19.0342 4.86523C18.388 4.21919 17.5114 3.85651 16.5977 3.85645H7.30176ZM17.1445 14.792C16.5206 14.7921 15.9216 15.0393 15.4805 15.4805C15.0393 15.9216 14.7921 16.5206 14.792 17.1445V20.042C15.2423 20.0411 15.6884 19.9536 16.1045 19.7812C16.5225 19.608 16.9027 19.3542 17.2227 19.0342L19.0332 17.2227C19.3532 16.9027 19.608 16.5225 19.7812 16.1045C19.9536 15.6884 20.0421 15.2423 20.043 14.792H17.1445Z",
|
|
2963
|
+
fill: "currentColor"
|
|
2964
|
+
}
|
|
2965
|
+
)
|
|
2966
|
+
);
|
|
2967
|
+
};
|
|
2968
|
+
Notes_default = SvgNotes;
|
|
2969
|
+
}
|
|
2970
|
+
});
|
|
2971
|
+
|
|
2816
2972
|
// src/react/Payments.tsx
|
|
2817
2973
|
var Payments_exports = {};
|
|
2818
2974
|
__export(Payments_exports, {
|
|
2819
2975
|
default: () => Payments_default
|
|
2820
2976
|
});
|
|
2821
|
-
import * as
|
|
2977
|
+
import * as React56 from "react";
|
|
2822
2978
|
var SvgPayments, Payments_default;
|
|
2823
2979
|
var init_Payments = __esm({
|
|
2824
2980
|
"src/react/Payments.tsx"() {
|
|
@@ -2826,7 +2982,7 @@ var init_Payments = __esm({
|
|
|
2826
2982
|
init_types();
|
|
2827
2983
|
SvgPayments = ({ size = 16, ...props }) => {
|
|
2828
2984
|
const sizeValue = resolveSize(size);
|
|
2829
|
-
return /* @__PURE__ */
|
|
2985
|
+
return /* @__PURE__ */ React56.createElement(
|
|
2830
2986
|
"svg",
|
|
2831
2987
|
{
|
|
2832
2988
|
width: sizeValue,
|
|
@@ -2836,7 +2992,7 @@ var init_Payments = __esm({
|
|
|
2836
2992
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2837
2993
|
...props
|
|
2838
2994
|
},
|
|
2839
|
-
/* @__PURE__ */
|
|
2995
|
+
/* @__PURE__ */ React56.createElement(
|
|
2840
2996
|
"path",
|
|
2841
2997
|
{
|
|
2842
2998
|
d: "M14 13C13.1667 13 12.4583 12.7083 11.875 12.125C11.2917 11.5417 11 10.8333 11 10C11 9.16667 11.2917 8.45833 11.875 7.875C12.4583 7.29167 13.1667 7 14 7C14.8333 7 15.5417 7.29167 16.125 7.875C16.7083 8.45833 17 9.16667 17 10C17 10.8333 16.7083 11.5417 16.125 12.125C15.5417 12.7083 14.8333 13 14 13ZM7 16C6.45 16 5.97917 15.8042 5.5875 15.4125C5.19583 15.0208 5 14.55 5 14V6C5 5.45 5.19583 4.97917 5.5875 4.5875C5.97917 4.19583 6.45 4 7 4H21C21.55 4 22.0208 4.19583 22.4125 4.5875C22.8042 4.97917 23 5.45 23 6V14C23 14.55 22.8042 15.0208 22.4125 15.4125C22.0208 15.8042 21.55 16 21 16H7ZM9 14H19C19 13.45 19.1958 12.9792 19.5875 12.5875C19.9792 12.1958 20.45 12 21 12V8C20.45 8 19.9792 7.80417 19.5875 7.4125C19.1958 7.02083 19 6.55 19 6H9C9 6.55 8.80417 7.02083 8.4125 7.4125C8.02083 7.80417 7.55 8 7 8V12C7.55 12 8.02083 12.1958 8.4125 12.5875C8.80417 12.9792 9 13.45 9 14ZM20 20H3C2.45 20 1.97917 19.8042 1.5875 19.4125C1.19583 19.0208 1 18.55 1 18V7H3V18H20V20Z",
|
|
@@ -2849,12 +3005,68 @@ var init_Payments = __esm({
|
|
|
2849
3005
|
}
|
|
2850
3006
|
});
|
|
2851
3007
|
|
|
3008
|
+
// src/react/PencilLine.tsx
|
|
3009
|
+
var PencilLine_exports = {};
|
|
3010
|
+
__export(PencilLine_exports, {
|
|
3011
|
+
default: () => PencilLine_default
|
|
3012
|
+
});
|
|
3013
|
+
import * as React57 from "react";
|
|
3014
|
+
var SvgPencilLine, PencilLine_default;
|
|
3015
|
+
var init_PencilLine = __esm({
|
|
3016
|
+
"src/react/PencilLine.tsx"() {
|
|
3017
|
+
"use strict";
|
|
3018
|
+
init_types();
|
|
3019
|
+
SvgPencilLine = ({ size = 16, ...props }) => {
|
|
3020
|
+
const sizeValue = resolveSize(size);
|
|
3021
|
+
return /* @__PURE__ */ React57.createElement(
|
|
3022
|
+
"svg",
|
|
3023
|
+
{
|
|
3024
|
+
width: sizeValue,
|
|
3025
|
+
height: sizeValue,
|
|
3026
|
+
viewBox: "0 0 24 24",
|
|
3027
|
+
fill: "none",
|
|
3028
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3029
|
+
...props
|
|
3030
|
+
},
|
|
3031
|
+
/* @__PURE__ */ React57.createElement(
|
|
3032
|
+
"path",
|
|
3033
|
+
{
|
|
3034
|
+
fillRule: "evenodd",
|
|
3035
|
+
clipRule: "evenodd",
|
|
3036
|
+
d: "M11 20C11 19.4477 11.4477 19 12 19H21C21.5523 19 22 19.4477 22 20C22 20.5523 21.5523 21 21 21H12C11.4477 21 11 20.5523 11 20Z",
|
|
3037
|
+
fill: "currentColor"
|
|
3038
|
+
}
|
|
3039
|
+
),
|
|
3040
|
+
/* @__PURE__ */ React57.createElement(
|
|
3041
|
+
"path",
|
|
3042
|
+
{
|
|
3043
|
+
fillRule: "evenodd",
|
|
3044
|
+
clipRule: "evenodd",
|
|
3045
|
+
d: "M18 3.87866C17.7026 3.87866 17.4174 3.9968 17.2071 4.20709L4.90299 16.5112L4.37439 18.6256L6.48877 18.097L18.7929 5.79288C18.897 5.68875 18.9796 5.56514 19.036 5.42909C19.0923 5.29305 19.1213 5.14724 19.1213 4.99998C19.1213 4.85273 19.0923 4.70692 19.036 4.57087C18.9796 4.43483 18.897 4.31121 18.7929 4.20709C18.6888 4.10296 18.5652 4.02037 18.4291 3.96402C18.2931 3.90767 18.1473 3.87866 18 3.87866ZM15.7929 2.79288C16.3783 2.20751 17.1722 1.87866 18 1.87866C18.4099 1.87866 18.8158 1.9594 19.1945 2.11626C19.5732 2.27312 19.9173 2.50303 20.2071 2.79288C20.497 3.08272 20.7269 3.42681 20.8837 3.8055C21.0406 4.1842 21.1213 4.59008 21.1213 4.99998C21.1213 5.40988 21.0406 5.81576 20.8837 6.19446C20.7269 6.57316 20.497 6.91725 20.2071 7.20709L7.70713 19.7071C7.57897 19.8352 7.41839 19.9262 7.24256 19.9701L3.24256 20.9701C2.90178 21.0553 2.54129 20.9555 2.29291 20.7071C2.04453 20.4587 1.94468 20.0982 2.02988 19.7574L3.02988 15.7574C3.07384 15.5816 3.16476 15.421 3.29291 15.2929L15.7929 2.79288Z",
|
|
3046
|
+
fill: "currentColor"
|
|
3047
|
+
}
|
|
3048
|
+
),
|
|
3049
|
+
/* @__PURE__ */ React57.createElement(
|
|
3050
|
+
"path",
|
|
3051
|
+
{
|
|
3052
|
+
fillRule: "evenodd",
|
|
3053
|
+
clipRule: "evenodd",
|
|
3054
|
+
d: "M14.2929 4.29288C14.6834 3.90235 15.3166 3.90235 15.7071 4.29288L18.7071 7.29288C19.0977 7.6834 19.0977 8.31657 18.7071 8.70709C18.3166 9.09761 17.6834 9.09761 17.2929 8.70709L14.2929 5.70709C13.9024 5.31657 13.9024 4.6834 14.2929 4.29288Z",
|
|
3055
|
+
fill: "currentColor"
|
|
3056
|
+
}
|
|
3057
|
+
)
|
|
3058
|
+
);
|
|
3059
|
+
};
|
|
3060
|
+
PencilLine_default = SvgPencilLine;
|
|
3061
|
+
}
|
|
3062
|
+
});
|
|
3063
|
+
|
|
2852
3064
|
// src/react/PhoneLinear.tsx
|
|
2853
3065
|
var PhoneLinear_exports = {};
|
|
2854
3066
|
__export(PhoneLinear_exports, {
|
|
2855
3067
|
default: () => PhoneLinear_default
|
|
2856
3068
|
});
|
|
2857
|
-
import * as
|
|
3069
|
+
import * as React58 from "react";
|
|
2858
3070
|
var SvgPhoneLinear, PhoneLinear_default;
|
|
2859
3071
|
var init_PhoneLinear = __esm({
|
|
2860
3072
|
"src/react/PhoneLinear.tsx"() {
|
|
@@ -2862,7 +3074,7 @@ var init_PhoneLinear = __esm({
|
|
|
2862
3074
|
init_types();
|
|
2863
3075
|
SvgPhoneLinear = ({ size = 16, ...props }) => {
|
|
2864
3076
|
const sizeValue = resolveSize(size);
|
|
2865
|
-
return /* @__PURE__ */
|
|
3077
|
+
return /* @__PURE__ */ React58.createElement(
|
|
2866
3078
|
"svg",
|
|
2867
3079
|
{
|
|
2868
3080
|
width: sizeValue,
|
|
@@ -2872,7 +3084,7 @@ var init_PhoneLinear = __esm({
|
|
|
2872
3084
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2873
3085
|
...props
|
|
2874
3086
|
},
|
|
2875
|
-
/* @__PURE__ */
|
|
3087
|
+
/* @__PURE__ */ React58.createElement(
|
|
2876
3088
|
"path",
|
|
2877
3089
|
{
|
|
2878
3090
|
d: "M2.03296 7.0498C2.03301 6.32705 2.16087 5.62378 2.42358 4.9668C2.69267 4.28489 3.11486 3.66908 3.68433 3.13184C4.39753 2.43522 5.24516 2.03418 6.18823 2.03418C6.56349 2.03424 6.9463 2.11459 7.29858 2.28125C7.66527 2.45049 8.00211 2.71079 8.26343 3.08496L10.3669 6.04883C10.5611 6.31906 10.715 6.58748 10.8279 6.86328C10.9416 7.13229 11.0221 7.439 11.0222 7.75684C11.0222 8.15556 10.9049 8.53405 10.7009 8.86914L10.7 8.86816C10.536 9.15169 10.3181 9.42026 10.072 9.66797L9.55444 10.2061C9.68722 10.4205 9.90014 10.714 10.2136 11.085L10.8308 11.7793C11.0394 12.0074 11.2549 12.2359 11.4783 12.4639L12.1843 13.1396C12.4148 13.3537 12.6419 13.5573 12.8699 13.751C13.2453 14.0686 13.5438 14.2787 13.7654 14.4102L14.2761 13.9062C14.5236 13.6592 14.7967 13.4343 15.0935 13.2705L15.2195 13.1992C15.518 13.041 15.845 12.9492 16.2048 12.9492C16.5089 12.9492 16.8058 13.0141 17.0984 13.1338C17.3733 13.2462 17.6383 13.3994 17.8982 13.5762L17.906 13.5811L17.9138 13.5869L20.9138 15.7168C21.2179 15.9288 21.4689 16.1936 21.6443 16.5225L21.7156 16.6689L21.7214 16.6826L21.7273 16.6973C21.8508 17.006 21.9373 17.3467 21.9373 17.7383C21.9372 18.1995 21.8337 18.6658 21.6238 19.1104C21.434 19.5123 21.1859 19.8954 20.8601 20.2549C20.3378 20.8305 19.7416 21.2675 19.0525 21.5508C18.3948 21.8248 17.6879 21.9648 16.9392 21.9648C15.8724 21.9648 14.7643 21.714 13.6316 21.2314C12.5201 20.7579 11.4182 20.1241 10.3357 19.3359L10.3347 19.335C9.25516 18.5464 8.2325 17.6746 7.25854 16.71L7.25269 16.7031C6.28835 15.7294 5.41555 14.7071 4.6355 13.6357L4.63257 13.6318C3.85754 12.5544 3.22319 11.4624 2.75757 10.3662L2.75659 10.3643C2.28356 9.24081 2.03296 8.13301 2.03296 7.0498ZM3.83374 7.0498C3.83374 7.85158 4.01818 8.72047 4.41479 9.66309L4.57397 10.0205C4.9619 10.8577 5.46914 11.7118 6.09058 12.5762L6.36597 12.9473C7.01956 13.8092 7.74178 14.6386 8.53198 15.4365C9.4415 16.3367 10.3924 17.1482 11.3953 17.8809L11.7644 18.1426C12.6253 18.7361 13.4849 19.2123 14.3367 19.5752C15.2888 19.9809 16.1569 20.165 16.9392 20.165C17.4595 20.165 17.931 20.0689 18.3611 19.8896L18.366 19.8877C18.7807 19.7176 19.1623 19.448 19.5271 19.0459C19.7269 18.8253 19.8775 18.5923 19.9958 18.3418C20.0941 18.1337 20.1365 17.9296 20.1365 17.7383C20.1365 17.6275 20.1154 17.52 20.0632 17.3848C20.039 17.3335 19.9937 17.2687 19.8806 17.1904L19.8718 17.1846L16.8787 15.0596C16.6891 14.9312 16.539 14.8498 16.4167 14.7998C16.3109 14.7565 16.2451 14.749 16.2048 14.749C16.1628 14.749 16.1141 14.7568 16.0291 14.8086L16.0037 14.8242L15.9773 14.8379C15.8791 14.8892 15.7346 14.9936 15.5447 15.1836L15.5408 15.1875L14.8523 15.8682L14.8513 15.8672C14.5927 16.1239 14.2516 16.2811 13.8484 16.2812C13.6971 16.2812 13.5095 16.264 13.3054 16.1875L13.2859 16.1807L13.2664 16.1719C13.2224 16.153 13.1818 16.134 13.158 16.123C13.1328 16.1115 13.1238 16.1084 13.1238 16.1084L13.0798 16.0898L13.0369 16.0674C12.6503 15.8627 12.2055 15.5471 11.7078 15.126L11.7058 15.124C11.2021 14.6963 10.7132 14.2355 10.2166 13.748L10.2048 13.7363C9.71738 13.2395 9.26936 12.7446 8.85229 12.2627L8.84546 12.2549C8.43086 11.7649 8.10584 11.3213 7.90015 10.9443L7.86108 10.874L7.83569 10.7979C7.83405 10.7939 7.83126 10.7883 7.82788 10.7803C7.81747 10.7557 7.79565 10.7047 7.77417 10.6475L7.75659 10.5996L7.7439 10.5498C7.7275 10.4842 7.71422 10.417 7.70483 10.3467L7.69019 10.123L7.69604 9.9873C7.72414 9.67259 7.85138 9.37104 8.09839 9.12402L8.77515 8.4209L8.78784 8.4082C8.9646 8.23144 9.08062 8.07757 9.14819 7.95801L9.15503 7.94531L9.16284 7.93262C9.21259 7.85081 9.22241 7.79321 9.22241 7.75684C9.2223 7.73497 9.21389 7.66631 9.16772 7.55859L9.16187 7.54492C9.11221 7.42362 9.03257 7.27691 8.9021 7.0957L8.89819 7.09082L6.79565 4.12598L6.78979 4.11816C6.72557 4.02539 6.64667 3.96211 6.54468 3.91504L6.53296 3.90918C6.43566 3.86248 6.31587 3.83502 6.18823 3.83496C5.79566 3.83496 5.37766 3.99039 4.93335 4.42773L4.91968 4.44141C4.52964 4.80939 4.26353 5.20778 4.09741 5.62988L4.09546 5.63477C3.92328 6.06522 3.83379 6.54018 3.83374 7.0498Z",
|
|
@@ -2890,7 +3102,7 @@ var Plus_exports = {};
|
|
|
2890
3102
|
__export(Plus_exports, {
|
|
2891
3103
|
default: () => Plus_default
|
|
2892
3104
|
});
|
|
2893
|
-
import * as
|
|
3105
|
+
import * as React59 from "react";
|
|
2894
3106
|
var SvgPlus, Plus_default;
|
|
2895
3107
|
var init_Plus = __esm({
|
|
2896
3108
|
"src/react/Plus.tsx"() {
|
|
@@ -2898,7 +3110,7 @@ var init_Plus = __esm({
|
|
|
2898
3110
|
init_types();
|
|
2899
3111
|
SvgPlus = ({ size = 16, ...props }) => {
|
|
2900
3112
|
const sizeValue = resolveSize(size);
|
|
2901
|
-
return /* @__PURE__ */
|
|
3113
|
+
return /* @__PURE__ */ React59.createElement(
|
|
2902
3114
|
"svg",
|
|
2903
3115
|
{
|
|
2904
3116
|
width: sizeValue,
|
|
@@ -2908,7 +3120,7 @@ var init_Plus = __esm({
|
|
|
2908
3120
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2909
3121
|
...props
|
|
2910
3122
|
},
|
|
2911
|
-
/* @__PURE__ */
|
|
3123
|
+
/* @__PURE__ */ React59.createElement(
|
|
2912
3124
|
"path",
|
|
2913
3125
|
{
|
|
2914
3126
|
d: "M11 19V13H5C4.44772 13 4 12.5523 4 12C4 11.4477 4.44772 11 5 11H11V5C11 4.44772 11.4477 4 12 4C12.5523 4 13 4.44772 13 5V11H19C19.5523 11 20 11.4477 20 12C20 12.5523 19.5523 13 19 13H13V19C13 19.5523 12.5523 20 12 20C11.4477 20 11 19.5523 11 19Z",
|
|
@@ -2926,7 +3138,7 @@ var Promotion_exports = {};
|
|
|
2926
3138
|
__export(Promotion_exports, {
|
|
2927
3139
|
default: () => Promotion_default
|
|
2928
3140
|
});
|
|
2929
|
-
import * as
|
|
3141
|
+
import * as React60 from "react";
|
|
2930
3142
|
var SvgPromotion, Promotion_default;
|
|
2931
3143
|
var init_Promotion = __esm({
|
|
2932
3144
|
"src/react/Promotion.tsx"() {
|
|
@@ -2934,7 +3146,7 @@ var init_Promotion = __esm({
|
|
|
2934
3146
|
init_types();
|
|
2935
3147
|
SvgPromotion = ({ size = 16, ...props }) => {
|
|
2936
3148
|
const sizeValue = resolveSize(size);
|
|
2937
|
-
return /* @__PURE__ */
|
|
3149
|
+
return /* @__PURE__ */ React60.createElement(
|
|
2938
3150
|
"svg",
|
|
2939
3151
|
{
|
|
2940
3152
|
width: sizeValue,
|
|
@@ -2944,7 +3156,7 @@ var init_Promotion = __esm({
|
|
|
2944
3156
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2945
3157
|
...props
|
|
2946
3158
|
},
|
|
2947
|
-
/* @__PURE__ */
|
|
3159
|
+
/* @__PURE__ */ React60.createElement(
|
|
2948
3160
|
"path",
|
|
2949
3161
|
{
|
|
2950
3162
|
fillRule: "evenodd",
|
|
@@ -2953,7 +3165,7 @@ var init_Promotion = __esm({
|
|
|
2953
3165
|
fill: "currentColor"
|
|
2954
3166
|
}
|
|
2955
3167
|
),
|
|
2956
|
-
/* @__PURE__ */
|
|
3168
|
+
/* @__PURE__ */ React60.createElement(
|
|
2957
3169
|
"path",
|
|
2958
3170
|
{
|
|
2959
3171
|
fillRule: "evenodd",
|
|
@@ -2962,7 +3174,7 @@ var init_Promotion = __esm({
|
|
|
2962
3174
|
fill: "currentColor"
|
|
2963
3175
|
}
|
|
2964
3176
|
),
|
|
2965
|
-
/* @__PURE__ */
|
|
3177
|
+
/* @__PURE__ */ React60.createElement(
|
|
2966
3178
|
"path",
|
|
2967
3179
|
{
|
|
2968
3180
|
fillRule: "evenodd",
|
|
@@ -2971,7 +3183,7 @@ var init_Promotion = __esm({
|
|
|
2971
3183
|
fill: "currentColor"
|
|
2972
3184
|
}
|
|
2973
3185
|
),
|
|
2974
|
-
/* @__PURE__ */
|
|
3186
|
+
/* @__PURE__ */ React60.createElement(
|
|
2975
3187
|
"path",
|
|
2976
3188
|
{
|
|
2977
3189
|
fillRule: "evenodd",
|
|
@@ -2991,7 +3203,7 @@ var PropertiesFilled_exports = {};
|
|
|
2991
3203
|
__export(PropertiesFilled_exports, {
|
|
2992
3204
|
default: () => PropertiesFilled_default
|
|
2993
3205
|
});
|
|
2994
|
-
import * as
|
|
3206
|
+
import * as React61 from "react";
|
|
2995
3207
|
var SvgPropertiesFilled, PropertiesFilled_default;
|
|
2996
3208
|
var init_PropertiesFilled = __esm({
|
|
2997
3209
|
"src/react/PropertiesFilled.tsx"() {
|
|
@@ -2999,7 +3211,7 @@ var init_PropertiesFilled = __esm({
|
|
|
2999
3211
|
init_types();
|
|
3000
3212
|
SvgPropertiesFilled = ({ size = 16, ...props }) => {
|
|
3001
3213
|
const sizeValue = resolveSize(size);
|
|
3002
|
-
return /* @__PURE__ */
|
|
3214
|
+
return /* @__PURE__ */ React61.createElement(
|
|
3003
3215
|
"svg",
|
|
3004
3216
|
{
|
|
3005
3217
|
width: sizeValue,
|
|
@@ -3009,7 +3221,7 @@ var init_PropertiesFilled = __esm({
|
|
|
3009
3221
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3010
3222
|
...props
|
|
3011
3223
|
},
|
|
3012
|
-
/* @__PURE__ */
|
|
3224
|
+
/* @__PURE__ */ React61.createElement(
|
|
3013
3225
|
"path",
|
|
3014
3226
|
{
|
|
3015
3227
|
fillRule: "evenodd",
|
|
@@ -3018,7 +3230,7 @@ var init_PropertiesFilled = __esm({
|
|
|
3018
3230
|
fill: "currentColor"
|
|
3019
3231
|
}
|
|
3020
3232
|
),
|
|
3021
|
-
/* @__PURE__ */
|
|
3233
|
+
/* @__PURE__ */ React61.createElement(
|
|
3022
3234
|
"path",
|
|
3023
3235
|
{
|
|
3024
3236
|
fillRule: "evenodd",
|
|
@@ -3027,7 +3239,7 @@ var init_PropertiesFilled = __esm({
|
|
|
3027
3239
|
fill: "currentColor"
|
|
3028
3240
|
}
|
|
3029
3241
|
),
|
|
3030
|
-
/* @__PURE__ */
|
|
3242
|
+
/* @__PURE__ */ React61.createElement(
|
|
3031
3243
|
"path",
|
|
3032
3244
|
{
|
|
3033
3245
|
d: "M16.0356 0.902344C17.6923 0.902608 19.0356 2.24565 19.0356 3.90234V19.999C19.0356 21.6559 17.6915 22.999 16.0347 22.999H8.00049C6.34363 22.999 5.00049 21.6559 5.00049 19.999V3.90234C5.00049 2.24549 6.34363 0.902344 8.00049 0.902344H16.0356ZM10.0005 17C9.4482 17 9.00049 17.4477 9.00049 18C9.00051 18.5523 9.44822 19 10.0005 19H14.0005C14.5525 18.9997 15.0005 18.5521 15.0005 18C15.0005 17.4479 14.5525 17.0003 14.0005 17H10.0005ZM10.0005 13C9.4482 13 9.00049 13.4477 9.00049 14C9.00051 14.5523 9.44822 15 10.0005 15H14.0005C14.5525 14.9997 15.0005 14.5521 15.0005 14C15.0005 13.4479 14.5525 13.0003 14.0005 13H10.0005ZM10.0005 9C9.4482 9 9.00049 9.44771 9.00049 10C9.00051 10.5523 9.44822 11 10.0005 11H14.0005C14.5525 10.9997 15.0005 10.5521 15.0005 10C15.0005 9.44788 14.5525 9.00026 14.0005 9H10.0005ZM10.0005 5C9.4482 5 9.00049 5.44772 9.00049 6C9.00051 6.55226 9.44822 7 10.0005 7H14.0005C14.5525 6.99974 15.0005 6.5521 15.0005 6C15.0005 5.44788 14.5525 5.00026 14.0005 5H10.0005Z",
|
|
@@ -3045,7 +3257,7 @@ var PropertiesLinear_exports = {};
|
|
|
3045
3257
|
__export(PropertiesLinear_exports, {
|
|
3046
3258
|
default: () => PropertiesLinear_default
|
|
3047
3259
|
});
|
|
3048
|
-
import * as
|
|
3260
|
+
import * as React62 from "react";
|
|
3049
3261
|
var SvgPropertiesLinear, PropertiesLinear_default;
|
|
3050
3262
|
var init_PropertiesLinear = __esm({
|
|
3051
3263
|
"src/react/PropertiesLinear.tsx"() {
|
|
@@ -3053,7 +3265,7 @@ var init_PropertiesLinear = __esm({
|
|
|
3053
3265
|
init_types();
|
|
3054
3266
|
SvgPropertiesLinear = ({ size = 16, ...props }) => {
|
|
3055
3267
|
const sizeValue = resolveSize(size);
|
|
3056
|
-
return /* @__PURE__ */
|
|
3268
|
+
return /* @__PURE__ */ React62.createElement(
|
|
3057
3269
|
"svg",
|
|
3058
3270
|
{
|
|
3059
3271
|
width: sizeValue,
|
|
@@ -3063,7 +3275,7 @@ var init_PropertiesLinear = __esm({
|
|
|
3063
3275
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3064
3276
|
...props
|
|
3065
3277
|
},
|
|
3066
|
-
/* @__PURE__ */
|
|
3278
|
+
/* @__PURE__ */ React62.createElement(
|
|
3067
3279
|
"path",
|
|
3068
3280
|
{
|
|
3069
3281
|
fillRule: "evenodd",
|
|
@@ -3072,7 +3284,7 @@ var init_PropertiesLinear = __esm({
|
|
|
3072
3284
|
fill: "currentColor"
|
|
3073
3285
|
}
|
|
3074
3286
|
),
|
|
3075
|
-
/* @__PURE__ */
|
|
3287
|
+
/* @__PURE__ */ React62.createElement(
|
|
3076
3288
|
"path",
|
|
3077
3289
|
{
|
|
3078
3290
|
fillRule: "evenodd",
|
|
@@ -3081,7 +3293,7 @@ var init_PropertiesLinear = __esm({
|
|
|
3081
3293
|
fill: "currentColor"
|
|
3082
3294
|
}
|
|
3083
3295
|
),
|
|
3084
|
-
/* @__PURE__ */
|
|
3296
|
+
/* @__PURE__ */ React62.createElement(
|
|
3085
3297
|
"path",
|
|
3086
3298
|
{
|
|
3087
3299
|
fillRule: "evenodd",
|
|
@@ -3090,7 +3302,7 @@ var init_PropertiesLinear = __esm({
|
|
|
3090
3302
|
fill: "currentColor"
|
|
3091
3303
|
}
|
|
3092
3304
|
),
|
|
3093
|
-
/* @__PURE__ */
|
|
3305
|
+
/* @__PURE__ */ React62.createElement(
|
|
3094
3306
|
"path",
|
|
3095
3307
|
{
|
|
3096
3308
|
fillRule: "evenodd",
|
|
@@ -3099,7 +3311,7 @@ var init_PropertiesLinear = __esm({
|
|
|
3099
3311
|
fill: "currentColor"
|
|
3100
3312
|
}
|
|
3101
3313
|
),
|
|
3102
|
-
/* @__PURE__ */
|
|
3314
|
+
/* @__PURE__ */ React62.createElement(
|
|
3103
3315
|
"path",
|
|
3104
3316
|
{
|
|
3105
3317
|
fillRule: "evenodd",
|
|
@@ -3108,7 +3320,7 @@ var init_PropertiesLinear = __esm({
|
|
|
3108
3320
|
fill: "currentColor"
|
|
3109
3321
|
}
|
|
3110
3322
|
),
|
|
3111
|
-
/* @__PURE__ */
|
|
3323
|
+
/* @__PURE__ */ React62.createElement(
|
|
3112
3324
|
"path",
|
|
3113
3325
|
{
|
|
3114
3326
|
fillRule: "evenodd",
|
|
@@ -3117,7 +3329,7 @@ var init_PropertiesLinear = __esm({
|
|
|
3117
3329
|
fill: "currentColor"
|
|
3118
3330
|
}
|
|
3119
3331
|
),
|
|
3120
|
-
/* @__PURE__ */
|
|
3332
|
+
/* @__PURE__ */ React62.createElement(
|
|
3121
3333
|
"path",
|
|
3122
3334
|
{
|
|
3123
3335
|
fillRule: "evenodd",
|
|
@@ -3137,7 +3349,7 @@ var Rent_exports = {};
|
|
|
3137
3349
|
__export(Rent_exports, {
|
|
3138
3350
|
default: () => Rent_default
|
|
3139
3351
|
});
|
|
3140
|
-
import * as
|
|
3352
|
+
import * as React63 from "react";
|
|
3141
3353
|
var SvgRent, Rent_default;
|
|
3142
3354
|
var init_Rent = __esm({
|
|
3143
3355
|
"src/react/Rent.tsx"() {
|
|
@@ -3145,7 +3357,7 @@ var init_Rent = __esm({
|
|
|
3145
3357
|
init_types();
|
|
3146
3358
|
SvgRent = ({ size = 16, ...props }) => {
|
|
3147
3359
|
const sizeValue = resolveSize(size);
|
|
3148
|
-
return /* @__PURE__ */
|
|
3360
|
+
return /* @__PURE__ */ React63.createElement(
|
|
3149
3361
|
"svg",
|
|
3150
3362
|
{
|
|
3151
3363
|
width: sizeValue,
|
|
@@ -3155,7 +3367,7 @@ var init_Rent = __esm({
|
|
|
3155
3367
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3156
3368
|
...props
|
|
3157
3369
|
},
|
|
3158
|
-
/* @__PURE__ */
|
|
3370
|
+
/* @__PURE__ */ React63.createElement(
|
|
3159
3371
|
"path",
|
|
3160
3372
|
{
|
|
3161
3373
|
fillRule: "evenodd",
|
|
@@ -3164,7 +3376,7 @@ var init_Rent = __esm({
|
|
|
3164
3376
|
fill: "currentColor"
|
|
3165
3377
|
}
|
|
3166
3378
|
),
|
|
3167
|
-
/* @__PURE__ */
|
|
3379
|
+
/* @__PURE__ */ React63.createElement(
|
|
3168
3380
|
"path",
|
|
3169
3381
|
{
|
|
3170
3382
|
fillRule: "evenodd",
|
|
@@ -3173,7 +3385,7 @@ var init_Rent = __esm({
|
|
|
3173
3385
|
fill: "currentColor"
|
|
3174
3386
|
}
|
|
3175
3387
|
),
|
|
3176
|
-
/* @__PURE__ */
|
|
3388
|
+
/* @__PURE__ */ React63.createElement(
|
|
3177
3389
|
"path",
|
|
3178
3390
|
{
|
|
3179
3391
|
fillRule: "evenodd",
|
|
@@ -3193,7 +3405,7 @@ var Sale_exports = {};
|
|
|
3193
3405
|
__export(Sale_exports, {
|
|
3194
3406
|
default: () => Sale_default
|
|
3195
3407
|
});
|
|
3196
|
-
import * as
|
|
3408
|
+
import * as React64 from "react";
|
|
3197
3409
|
var SvgSale, Sale_default;
|
|
3198
3410
|
var init_Sale = __esm({
|
|
3199
3411
|
"src/react/Sale.tsx"() {
|
|
@@ -3201,7 +3413,7 @@ var init_Sale = __esm({
|
|
|
3201
3413
|
init_types();
|
|
3202
3414
|
SvgSale = ({ size = 16, ...props }) => {
|
|
3203
3415
|
const sizeValue = resolveSize(size);
|
|
3204
|
-
return /* @__PURE__ */
|
|
3416
|
+
return /* @__PURE__ */ React64.createElement(
|
|
3205
3417
|
"svg",
|
|
3206
3418
|
{
|
|
3207
3419
|
width: sizeValue,
|
|
@@ -3211,7 +3423,7 @@ var init_Sale = __esm({
|
|
|
3211
3423
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3212
3424
|
...props
|
|
3213
3425
|
},
|
|
3214
|
-
/* @__PURE__ */
|
|
3426
|
+
/* @__PURE__ */ React64.createElement(
|
|
3215
3427
|
"path",
|
|
3216
3428
|
{
|
|
3217
3429
|
fillRule: "evenodd",
|
|
@@ -3220,7 +3432,7 @@ var init_Sale = __esm({
|
|
|
3220
3432
|
fill: "currentColor"
|
|
3221
3433
|
}
|
|
3222
3434
|
),
|
|
3223
|
-
/* @__PURE__ */
|
|
3435
|
+
/* @__PURE__ */ React64.createElement(
|
|
3224
3436
|
"path",
|
|
3225
3437
|
{
|
|
3226
3438
|
fillRule: "evenodd",
|
|
@@ -3229,7 +3441,7 @@ var init_Sale = __esm({
|
|
|
3229
3441
|
fill: "currentColor"
|
|
3230
3442
|
}
|
|
3231
3443
|
),
|
|
3232
|
-
/* @__PURE__ */
|
|
3444
|
+
/* @__PURE__ */ React64.createElement(
|
|
3233
3445
|
"path",
|
|
3234
3446
|
{
|
|
3235
3447
|
fillRule: "evenodd",
|
|
@@ -3249,7 +3461,7 @@ var Search_exports = {};
|
|
|
3249
3461
|
__export(Search_exports, {
|
|
3250
3462
|
default: () => Search_default
|
|
3251
3463
|
});
|
|
3252
|
-
import * as
|
|
3464
|
+
import * as React65 from "react";
|
|
3253
3465
|
var SvgSearch, Search_default;
|
|
3254
3466
|
var init_Search = __esm({
|
|
3255
3467
|
"src/react/Search.tsx"() {
|
|
@@ -3257,7 +3469,7 @@ var init_Search = __esm({
|
|
|
3257
3469
|
init_types();
|
|
3258
3470
|
SvgSearch = ({ size = 16, ...props }) => {
|
|
3259
3471
|
const sizeValue = resolveSize(size);
|
|
3260
|
-
return /* @__PURE__ */
|
|
3472
|
+
return /* @__PURE__ */ React65.createElement(
|
|
3261
3473
|
"svg",
|
|
3262
3474
|
{
|
|
3263
3475
|
width: sizeValue,
|
|
@@ -3267,7 +3479,7 @@ var init_Search = __esm({
|
|
|
3267
3479
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3268
3480
|
...props
|
|
3269
3481
|
},
|
|
3270
|
-
/* @__PURE__ */
|
|
3482
|
+
/* @__PURE__ */ React65.createElement(
|
|
3271
3483
|
"path",
|
|
3272
3484
|
{
|
|
3273
3485
|
fillRule: "evenodd",
|
|
@@ -3276,7 +3488,7 @@ var init_Search = __esm({
|
|
|
3276
3488
|
fill: "currentColor"
|
|
3277
3489
|
}
|
|
3278
3490
|
),
|
|
3279
|
-
/* @__PURE__ */
|
|
3491
|
+
/* @__PURE__ */ React65.createElement(
|
|
3280
3492
|
"path",
|
|
3281
3493
|
{
|
|
3282
3494
|
fillRule: "evenodd",
|
|
@@ -3296,7 +3508,7 @@ var SearchX_exports = {};
|
|
|
3296
3508
|
__export(SearchX_exports, {
|
|
3297
3509
|
default: () => SearchX_default
|
|
3298
3510
|
});
|
|
3299
|
-
import * as
|
|
3511
|
+
import * as React66 from "react";
|
|
3300
3512
|
var SvgSearchX, SearchX_default;
|
|
3301
3513
|
var init_SearchX = __esm({
|
|
3302
3514
|
"src/react/SearchX.tsx"() {
|
|
@@ -3304,7 +3516,7 @@ var init_SearchX = __esm({
|
|
|
3304
3516
|
init_types();
|
|
3305
3517
|
SvgSearchX = ({ size = 16, ...props }) => {
|
|
3306
3518
|
const sizeValue = resolveSize(size);
|
|
3307
|
-
return /* @__PURE__ */
|
|
3519
|
+
return /* @__PURE__ */ React66.createElement(
|
|
3308
3520
|
"svg",
|
|
3309
3521
|
{
|
|
3310
3522
|
width: sizeValue,
|
|
@@ -3314,7 +3526,7 @@ var init_SearchX = __esm({
|
|
|
3314
3526
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3315
3527
|
...props
|
|
3316
3528
|
},
|
|
3317
|
-
/* @__PURE__ */
|
|
3529
|
+
/* @__PURE__ */ React66.createElement(
|
|
3318
3530
|
"path",
|
|
3319
3531
|
{
|
|
3320
3532
|
fillRule: "evenodd",
|
|
@@ -3323,7 +3535,7 @@ var init_SearchX = __esm({
|
|
|
3323
3535
|
fill: "currentColor"
|
|
3324
3536
|
}
|
|
3325
3537
|
),
|
|
3326
|
-
/* @__PURE__ */
|
|
3538
|
+
/* @__PURE__ */ React66.createElement(
|
|
3327
3539
|
"path",
|
|
3328
3540
|
{
|
|
3329
3541
|
fillRule: "evenodd",
|
|
@@ -3332,7 +3544,7 @@ var init_SearchX = __esm({
|
|
|
3332
3544
|
fill: "currentColor"
|
|
3333
3545
|
}
|
|
3334
3546
|
),
|
|
3335
|
-
/* @__PURE__ */
|
|
3547
|
+
/* @__PURE__ */ React66.createElement(
|
|
3336
3548
|
"path",
|
|
3337
3549
|
{
|
|
3338
3550
|
fillRule: "evenodd",
|
|
@@ -3341,7 +3553,7 @@ var init_SearchX = __esm({
|
|
|
3341
3553
|
fill: "currentColor"
|
|
3342
3554
|
}
|
|
3343
3555
|
),
|
|
3344
|
-
/* @__PURE__ */
|
|
3556
|
+
/* @__PURE__ */ React66.createElement(
|
|
3345
3557
|
"path",
|
|
3346
3558
|
{
|
|
3347
3559
|
fillRule: "evenodd",
|
|
@@ -3361,7 +3573,7 @@ var Share_exports = {};
|
|
|
3361
3573
|
__export(Share_exports, {
|
|
3362
3574
|
default: () => Share_default
|
|
3363
3575
|
});
|
|
3364
|
-
import * as
|
|
3576
|
+
import * as React67 from "react";
|
|
3365
3577
|
var SvgShare, Share_default;
|
|
3366
3578
|
var init_Share = __esm({
|
|
3367
3579
|
"src/react/Share.tsx"() {
|
|
@@ -3369,7 +3581,7 @@ var init_Share = __esm({
|
|
|
3369
3581
|
init_types();
|
|
3370
3582
|
SvgShare = ({ size = 16, ...props }) => {
|
|
3371
3583
|
const sizeValue = resolveSize(size);
|
|
3372
|
-
return /* @__PURE__ */
|
|
3584
|
+
return /* @__PURE__ */ React67.createElement(
|
|
3373
3585
|
"svg",
|
|
3374
3586
|
{
|
|
3375
3587
|
width: sizeValue,
|
|
@@ -3379,7 +3591,7 @@ var init_Share = __esm({
|
|
|
3379
3591
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3380
3592
|
...props
|
|
3381
3593
|
},
|
|
3382
|
-
/* @__PURE__ */
|
|
3594
|
+
/* @__PURE__ */ React67.createElement(
|
|
3383
3595
|
"path",
|
|
3384
3596
|
{
|
|
3385
3597
|
fillRule: "evenodd",
|
|
@@ -3388,7 +3600,7 @@ var init_Share = __esm({
|
|
|
3388
3600
|
fill: "currentColor"
|
|
3389
3601
|
}
|
|
3390
3602
|
),
|
|
3391
|
-
/* @__PURE__ */
|
|
3603
|
+
/* @__PURE__ */ React67.createElement(
|
|
3392
3604
|
"path",
|
|
3393
3605
|
{
|
|
3394
3606
|
fillRule: "evenodd",
|
|
@@ -3397,7 +3609,7 @@ var init_Share = __esm({
|
|
|
3397
3609
|
fill: "currentColor"
|
|
3398
3610
|
}
|
|
3399
3611
|
),
|
|
3400
|
-
/* @__PURE__ */
|
|
3612
|
+
/* @__PURE__ */ React67.createElement(
|
|
3401
3613
|
"path",
|
|
3402
3614
|
{
|
|
3403
3615
|
fillRule: "evenodd",
|
|
@@ -3417,7 +3629,7 @@ var Size3D_exports = {};
|
|
|
3417
3629
|
__export(Size3D_exports, {
|
|
3418
3630
|
default: () => Size3D_default
|
|
3419
3631
|
});
|
|
3420
|
-
import * as
|
|
3632
|
+
import * as React68 from "react";
|
|
3421
3633
|
var SvgSize3D, Size3D_default;
|
|
3422
3634
|
var init_Size3D = __esm({
|
|
3423
3635
|
"src/react/Size3D.tsx"() {
|
|
@@ -3425,7 +3637,7 @@ var init_Size3D = __esm({
|
|
|
3425
3637
|
init_types();
|
|
3426
3638
|
SvgSize3D = ({ size = 16, ...props }) => {
|
|
3427
3639
|
const sizeValue = resolveSize(size);
|
|
3428
|
-
return /* @__PURE__ */
|
|
3640
|
+
return /* @__PURE__ */ React68.createElement(
|
|
3429
3641
|
"svg",
|
|
3430
3642
|
{
|
|
3431
3643
|
width: sizeValue,
|
|
@@ -3435,7 +3647,7 @@ var init_Size3D = __esm({
|
|
|
3435
3647
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3436
3648
|
...props
|
|
3437
3649
|
},
|
|
3438
|
-
/* @__PURE__ */
|
|
3650
|
+
/* @__PURE__ */ React68.createElement(
|
|
3439
3651
|
"path",
|
|
3440
3652
|
{
|
|
3441
3653
|
fillRule: "evenodd",
|
|
@@ -3444,7 +3656,7 @@ var init_Size3D = __esm({
|
|
|
3444
3656
|
fill: "currentColor"
|
|
3445
3657
|
}
|
|
3446
3658
|
),
|
|
3447
|
-
/* @__PURE__ */
|
|
3659
|
+
/* @__PURE__ */ React68.createElement(
|
|
3448
3660
|
"path",
|
|
3449
3661
|
{
|
|
3450
3662
|
fillRule: "evenodd",
|
|
@@ -3453,7 +3665,7 @@ var init_Size3D = __esm({
|
|
|
3453
3665
|
fill: "currentColor"
|
|
3454
3666
|
}
|
|
3455
3667
|
),
|
|
3456
|
-
/* @__PURE__ */
|
|
3668
|
+
/* @__PURE__ */ React68.createElement(
|
|
3457
3669
|
"path",
|
|
3458
3670
|
{
|
|
3459
3671
|
fillRule: "evenodd",
|
|
@@ -3462,7 +3674,7 @@ var init_Size3D = __esm({
|
|
|
3462
3674
|
fill: "currentColor"
|
|
3463
3675
|
}
|
|
3464
3676
|
),
|
|
3465
|
-
/* @__PURE__ */
|
|
3677
|
+
/* @__PURE__ */ React68.createElement(
|
|
3466
3678
|
"path",
|
|
3467
3679
|
{
|
|
3468
3680
|
fillRule: "evenodd",
|
|
@@ -3482,7 +3694,7 @@ var Trash2_exports = {};
|
|
|
3482
3694
|
__export(Trash2_exports, {
|
|
3483
3695
|
default: () => Trash2_default
|
|
3484
3696
|
});
|
|
3485
|
-
import * as
|
|
3697
|
+
import * as React69 from "react";
|
|
3486
3698
|
var SvgTrash2, Trash2_default;
|
|
3487
3699
|
var init_Trash2 = __esm({
|
|
3488
3700
|
"src/react/Trash2.tsx"() {
|
|
@@ -3490,7 +3702,7 @@ var init_Trash2 = __esm({
|
|
|
3490
3702
|
init_types();
|
|
3491
3703
|
SvgTrash2 = ({ size = 16, ...props }) => {
|
|
3492
3704
|
const sizeValue = resolveSize(size);
|
|
3493
|
-
return /* @__PURE__ */
|
|
3705
|
+
return /* @__PURE__ */ React69.createElement(
|
|
3494
3706
|
"svg",
|
|
3495
3707
|
{
|
|
3496
3708
|
width: sizeValue,
|
|
@@ -3500,7 +3712,7 @@ var init_Trash2 = __esm({
|
|
|
3500
3712
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3501
3713
|
...props
|
|
3502
3714
|
},
|
|
3503
|
-
/* @__PURE__ */
|
|
3715
|
+
/* @__PURE__ */ React69.createElement(
|
|
3504
3716
|
"path",
|
|
3505
3717
|
{
|
|
3506
3718
|
fillRule: "evenodd",
|
|
@@ -3509,7 +3721,7 @@ var init_Trash2 = __esm({
|
|
|
3509
3721
|
fill: "currentColor"
|
|
3510
3722
|
}
|
|
3511
3723
|
),
|
|
3512
|
-
/* @__PURE__ */
|
|
3724
|
+
/* @__PURE__ */ React69.createElement(
|
|
3513
3725
|
"path",
|
|
3514
3726
|
{
|
|
3515
3727
|
fillRule: "evenodd",
|
|
@@ -3518,7 +3730,7 @@ var init_Trash2 = __esm({
|
|
|
3518
3730
|
fill: "currentColor"
|
|
3519
3731
|
}
|
|
3520
3732
|
),
|
|
3521
|
-
/* @__PURE__ */
|
|
3733
|
+
/* @__PURE__ */ React69.createElement(
|
|
3522
3734
|
"path",
|
|
3523
3735
|
{
|
|
3524
3736
|
fillRule: "evenodd",
|
|
@@ -3527,7 +3739,7 @@ var init_Trash2 = __esm({
|
|
|
3527
3739
|
fill: "currentColor"
|
|
3528
3740
|
}
|
|
3529
3741
|
),
|
|
3530
|
-
/* @__PURE__ */
|
|
3742
|
+
/* @__PURE__ */ React69.createElement(
|
|
3531
3743
|
"path",
|
|
3532
3744
|
{
|
|
3533
3745
|
fillRule: "evenodd",
|
|
@@ -3536,7 +3748,7 @@ var init_Trash2 = __esm({
|
|
|
3536
3748
|
fill: "currentColor"
|
|
3537
3749
|
}
|
|
3538
3750
|
),
|
|
3539
|
-
/* @__PURE__ */
|
|
3751
|
+
/* @__PURE__ */ React69.createElement(
|
|
3540
3752
|
"path",
|
|
3541
3753
|
{
|
|
3542
3754
|
fillRule: "evenodd",
|
|
@@ -3556,7 +3768,7 @@ var User_exports = {};
|
|
|
3556
3768
|
__export(User_exports, {
|
|
3557
3769
|
default: () => User_default
|
|
3558
3770
|
});
|
|
3559
|
-
import * as
|
|
3771
|
+
import * as React70 from "react";
|
|
3560
3772
|
var SvgUser, User_default;
|
|
3561
3773
|
var init_User = __esm({
|
|
3562
3774
|
"src/react/User.tsx"() {
|
|
@@ -3564,7 +3776,7 @@ var init_User = __esm({
|
|
|
3564
3776
|
init_types();
|
|
3565
3777
|
SvgUser = ({ size = 16, ...props }) => {
|
|
3566
3778
|
const sizeValue = resolveSize(size);
|
|
3567
|
-
return /* @__PURE__ */
|
|
3779
|
+
return /* @__PURE__ */ React70.createElement(
|
|
3568
3780
|
"svg",
|
|
3569
3781
|
{
|
|
3570
3782
|
width: sizeValue,
|
|
@@ -3574,7 +3786,7 @@ var init_User = __esm({
|
|
|
3574
3786
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3575
3787
|
...props
|
|
3576
3788
|
},
|
|
3577
|
-
/* @__PURE__ */
|
|
3789
|
+
/* @__PURE__ */ React70.createElement(
|
|
3578
3790
|
"path",
|
|
3579
3791
|
{
|
|
3580
3792
|
fillRule: "evenodd",
|
|
@@ -3583,7 +3795,7 @@ var init_User = __esm({
|
|
|
3583
3795
|
fill: "currentColor"
|
|
3584
3796
|
}
|
|
3585
3797
|
),
|
|
3586
|
-
/* @__PURE__ */
|
|
3798
|
+
/* @__PURE__ */ React70.createElement(
|
|
3587
3799
|
"path",
|
|
3588
3800
|
{
|
|
3589
3801
|
fillRule: "evenodd",
|
|
@@ -3603,7 +3815,7 @@ var Whatsapp_exports = {};
|
|
|
3603
3815
|
__export(Whatsapp_exports, {
|
|
3604
3816
|
default: () => Whatsapp_default
|
|
3605
3817
|
});
|
|
3606
|
-
import * as
|
|
3818
|
+
import * as React71 from "react";
|
|
3607
3819
|
var SvgWhatsapp, Whatsapp_default;
|
|
3608
3820
|
var init_Whatsapp = __esm({
|
|
3609
3821
|
"src/react/Whatsapp.tsx"() {
|
|
@@ -3611,7 +3823,7 @@ var init_Whatsapp = __esm({
|
|
|
3611
3823
|
init_types();
|
|
3612
3824
|
SvgWhatsapp = ({ size = 16, ...props }) => {
|
|
3613
3825
|
const sizeValue = resolveSize(size);
|
|
3614
|
-
return /* @__PURE__ */
|
|
3826
|
+
return /* @__PURE__ */ React71.createElement(
|
|
3615
3827
|
"svg",
|
|
3616
3828
|
{
|
|
3617
3829
|
width: sizeValue,
|
|
@@ -3621,7 +3833,7 @@ var init_Whatsapp = __esm({
|
|
|
3621
3833
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3622
3834
|
...props
|
|
3623
3835
|
},
|
|
3624
|
-
/* @__PURE__ */
|
|
3836
|
+
/* @__PURE__ */ React71.createElement(
|
|
3625
3837
|
"path",
|
|
3626
3838
|
{
|
|
3627
3839
|
fillRule: "evenodd",
|
|
@@ -3637,6 +3849,7 @@ var init_Whatsapp = __esm({
|
|
|
3637
3849
|
});
|
|
3638
3850
|
|
|
3639
3851
|
// src/react/index.ts
|
|
3852
|
+
init_AddNote();
|
|
3640
3853
|
init_AlertTriangle();
|
|
3641
3854
|
init_ArrowDown();
|
|
3642
3855
|
init_ArrowDownLeft();
|
|
@@ -3654,6 +3867,7 @@ init_Calendar();
|
|
|
3654
3867
|
init_Cancel();
|
|
3655
3868
|
init_CancelCircleSolid();
|
|
3656
3869
|
init_Check();
|
|
3870
|
+
init_CheckCircle2();
|
|
3657
3871
|
init_ChevronDown();
|
|
3658
3872
|
init_ChevronLeft();
|
|
3659
3873
|
init_ChevronRight();
|
|
@@ -3689,7 +3903,9 @@ init_MapPin();
|
|
|
3689
3903
|
init_MoreHorizontal();
|
|
3690
3904
|
init_Mortgage();
|
|
3691
3905
|
init_Note();
|
|
3906
|
+
init_Notes();
|
|
3692
3907
|
init_Payments();
|
|
3908
|
+
init_PencilLine();
|
|
3693
3909
|
init_PhoneLinear();
|
|
3694
3910
|
init_Plus();
|
|
3695
3911
|
init_Promotion();
|
|
@@ -3706,9 +3922,11 @@ init_User();
|
|
|
3706
3922
|
init_Whatsapp();
|
|
3707
3923
|
|
|
3708
3924
|
// src/react/Icon.tsx
|
|
3709
|
-
import * as
|
|
3925
|
+
import * as React72 from "react";
|
|
3710
3926
|
function loadIcon(name) {
|
|
3711
3927
|
switch (name) {
|
|
3928
|
+
case "add-note":
|
|
3929
|
+
return Promise.resolve().then(() => (init_AddNote(), AddNote_exports)).then((m) => m.default);
|
|
3712
3930
|
case "alert-triangle":
|
|
3713
3931
|
return Promise.resolve().then(() => (init_AlertTriangle(), AlertTriangle_exports)).then((m) => m.default);
|
|
3714
3932
|
case "arrow-down":
|
|
@@ -3743,6 +3961,8 @@ function loadIcon(name) {
|
|
|
3743
3961
|
return Promise.resolve().then(() => (init_CancelCircleSolid(), CancelCircleSolid_exports)).then((m) => m.default);
|
|
3744
3962
|
case "check":
|
|
3745
3963
|
return Promise.resolve().then(() => (init_Check(), Check_exports)).then((m) => m.default);
|
|
3964
|
+
case "check-circle2":
|
|
3965
|
+
return Promise.resolve().then(() => (init_CheckCircle2(), CheckCircle2_exports)).then((m) => m.default);
|
|
3746
3966
|
case "chevron-down":
|
|
3747
3967
|
return Promise.resolve().then(() => (init_ChevronDown(), ChevronDown_exports)).then((m) => m.default);
|
|
3748
3968
|
case "chevron-left":
|
|
@@ -3813,8 +4033,12 @@ function loadIcon(name) {
|
|
|
3813
4033
|
return Promise.resolve().then(() => (init_Mortgage(), Mortgage_exports)).then((m) => m.default);
|
|
3814
4034
|
case "note":
|
|
3815
4035
|
return Promise.resolve().then(() => (init_Note(), Note_exports)).then((m) => m.default);
|
|
4036
|
+
case "notes":
|
|
4037
|
+
return Promise.resolve().then(() => (init_Notes(), Notes_exports)).then((m) => m.default);
|
|
3816
4038
|
case "payments":
|
|
3817
4039
|
return Promise.resolve().then(() => (init_Payments(), Payments_exports)).then((m) => m.default);
|
|
4040
|
+
case "pencil-line":
|
|
4041
|
+
return Promise.resolve().then(() => (init_PencilLine(), PencilLine_exports)).then((m) => m.default);
|
|
3818
4042
|
case "phone-linear":
|
|
3819
4043
|
return Promise.resolve().then(() => (init_PhoneLinear(), PhoneLinear_exports)).then((m) => m.default);
|
|
3820
4044
|
case "plus":
|
|
@@ -3848,10 +4072,10 @@ function loadIcon(name) {
|
|
|
3848
4072
|
}
|
|
3849
4073
|
}
|
|
3850
4074
|
var Icon = ({ name, size = 16, color, ...props }) => {
|
|
3851
|
-
const [IconComponent, setIconComponent] =
|
|
3852
|
-
const [loading, setLoading] =
|
|
3853
|
-
const [error, setError] =
|
|
3854
|
-
|
|
4075
|
+
const [IconComponent, setIconComponent] = React72.useState(null);
|
|
4076
|
+
const [loading, setLoading] = React72.useState(true);
|
|
4077
|
+
const [error, setError] = React72.useState(null);
|
|
4078
|
+
React72.useEffect(() => {
|
|
3855
4079
|
setLoading(true);
|
|
3856
4080
|
setError(null);
|
|
3857
4081
|
loadIcon(name).then((Component) => {
|
|
@@ -3870,13 +4094,14 @@ var Icon = ({ name, size = 16, color, ...props }) => {
|
|
|
3870
4094
|
return null;
|
|
3871
4095
|
}
|
|
3872
4096
|
const style = color ? { ...props.style, color } : props.style;
|
|
3873
|
-
return /* @__PURE__ */
|
|
4097
|
+
return /* @__PURE__ */ React72.createElement(IconComponent, { size, ...props, style });
|
|
3874
4098
|
};
|
|
3875
4099
|
var Icon_default = Icon;
|
|
3876
4100
|
|
|
3877
4101
|
// src/react/index.ts
|
|
3878
4102
|
init_types();
|
|
3879
4103
|
export {
|
|
4104
|
+
AddNote_default as AddNote,
|
|
3880
4105
|
AlertTriangle_default as AlertTriangle,
|
|
3881
4106
|
ArrowDown_default as ArrowDown,
|
|
3882
4107
|
ArrowDownLeft_default as ArrowDownLeft,
|
|
@@ -3894,6 +4119,7 @@ export {
|
|
|
3894
4119
|
Cancel_default as Cancel,
|
|
3895
4120
|
CancelCircleSolid_default as CancelCircleSolid,
|
|
3896
4121
|
Check_default as Check,
|
|
4122
|
+
CheckCircle2_default as CheckCircle2,
|
|
3897
4123
|
ChevronDown_default as ChevronDown,
|
|
3898
4124
|
ChevronLeft_default as ChevronLeft,
|
|
3899
4125
|
ChevronRight_default as ChevronRight,
|
|
@@ -3931,7 +4157,9 @@ export {
|
|
|
3931
4157
|
MoreHorizontal_default as MoreHorizontal,
|
|
3932
4158
|
Mortgage_default as Mortgage,
|
|
3933
4159
|
Note_default as Note,
|
|
4160
|
+
Notes_default as Notes,
|
|
3934
4161
|
Payments_default as Payments,
|
|
4162
|
+
PencilLine_default as PencilLine,
|
|
3935
4163
|
PhoneLinear_default as PhoneLinear,
|
|
3936
4164
|
Plus_default as Plus,
|
|
3937
4165
|
Promotion_default as Promotion,
|