magick-icons 0.1.126 → 0.1.128
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/index.d.mts +397 -1
- package/index.d.ts +397 -1
- package/index.js +581 -245
- package/index.js.map +1 -1
- package/index.mjs +566 -252
- package/index.mjs.map +1 -1
- package/package.json +1 -1
package/index.d.mts
CHANGED
|
@@ -1,5 +1,113 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
|
|
3
|
+
/**
|
|
4
|
+
* Props for the Add1 icon component
|
|
5
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
6
|
+
*/
|
|
7
|
+
interface Add1Props extends React.SVGProps<SVGSVGElement> {
|
|
8
|
+
size?: number | string;
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* Add1 icon component
|
|
12
|
+
* @example
|
|
13
|
+
* ```tsx
|
|
14
|
+
* import { Add1 } from 'magick-icons';
|
|
15
|
+
*
|
|
16
|
+
* <Add1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
17
|
+
* ```
|
|
18
|
+
*/
|
|
19
|
+
declare const Add1: React.ForwardRefExoticComponent<Omit<Add1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
20
|
+
|
|
21
|
+
/**
|
|
22
|
+
* Props for the Add11 icon component
|
|
23
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
24
|
+
*/
|
|
25
|
+
interface Add11Props extends React.SVGProps<SVGSVGElement> {
|
|
26
|
+
size?: number | string;
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* Add11 icon component
|
|
30
|
+
* @example
|
|
31
|
+
* ```tsx
|
|
32
|
+
* import { Add11 } from 'magick-icons';
|
|
33
|
+
*
|
|
34
|
+
* <Add11 size={24} className="text-blue-500" strokeWidth={2} />
|
|
35
|
+
* ```
|
|
36
|
+
*/
|
|
37
|
+
declare const Add11: React.ForwardRefExoticComponent<Omit<Add11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
38
|
+
|
|
39
|
+
/**
|
|
40
|
+
* Props for the AddCircle1 icon component
|
|
41
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
42
|
+
*/
|
|
43
|
+
interface AddCircle1Props extends React.SVGProps<SVGSVGElement> {
|
|
44
|
+
size?: number | string;
|
|
45
|
+
}
|
|
46
|
+
/**
|
|
47
|
+
* AddCircle1 icon component
|
|
48
|
+
* @example
|
|
49
|
+
* ```tsx
|
|
50
|
+
* import { AddCircle1 } from 'magick-icons';
|
|
51
|
+
*
|
|
52
|
+
* <AddCircle1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
53
|
+
* ```
|
|
54
|
+
*/
|
|
55
|
+
declare const AddCircle1: React.ForwardRefExoticComponent<Omit<AddCircle1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
56
|
+
|
|
57
|
+
/**
|
|
58
|
+
* Props for the AddItem1 icon component
|
|
59
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
60
|
+
*/
|
|
61
|
+
interface AddItem1Props extends React.SVGProps<SVGSVGElement> {
|
|
62
|
+
size?: number | string;
|
|
63
|
+
}
|
|
64
|
+
/**
|
|
65
|
+
* AddItem1 icon component
|
|
66
|
+
* @example
|
|
67
|
+
* ```tsx
|
|
68
|
+
* import { AddItem1 } from 'magick-icons';
|
|
69
|
+
*
|
|
70
|
+
* <AddItem1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
71
|
+
* ```
|
|
72
|
+
*/
|
|
73
|
+
declare const AddItem1: React.ForwardRefExoticComponent<Omit<AddItem1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
74
|
+
|
|
75
|
+
/**
|
|
76
|
+
* Props for the AiFlask1 icon component
|
|
77
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
78
|
+
*/
|
|
79
|
+
interface AiFlask1Props extends React.SVGProps<SVGSVGElement> {
|
|
80
|
+
size?: number | string;
|
|
81
|
+
}
|
|
82
|
+
/**
|
|
83
|
+
* AiFlask1 icon component
|
|
84
|
+
* @example
|
|
85
|
+
* ```tsx
|
|
86
|
+
* import { AiFlask1 } from 'magick-icons';
|
|
87
|
+
*
|
|
88
|
+
* <AiFlask1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
89
|
+
* ```
|
|
90
|
+
*/
|
|
91
|
+
declare const AiFlask1: React.ForwardRefExoticComponent<Omit<AiFlask1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
92
|
+
|
|
93
|
+
/**
|
|
94
|
+
* Props for the AiScience1 icon component
|
|
95
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
96
|
+
*/
|
|
97
|
+
interface AiScience1Props extends React.SVGProps<SVGSVGElement> {
|
|
98
|
+
size?: number | string;
|
|
99
|
+
}
|
|
100
|
+
/**
|
|
101
|
+
* AiScience1 icon component
|
|
102
|
+
* @example
|
|
103
|
+
* ```tsx
|
|
104
|
+
* import { AiScience1 } from 'magick-icons';
|
|
105
|
+
*
|
|
106
|
+
* <AiScience1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
107
|
+
* ```
|
|
108
|
+
*/
|
|
109
|
+
declare const AiScience1: React.ForwardRefExoticComponent<Omit<AiScience1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
110
|
+
|
|
3
111
|
/**
|
|
4
112
|
* Props for the ArchiveBold icon component
|
|
5
113
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -72,6 +180,258 @@ interface ArrowUpBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
|
72
180
|
*/
|
|
73
181
|
declare const ArrowUpBold: React.ForwardRefExoticComponent<Omit<ArrowUpBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
74
182
|
|
|
183
|
+
/**
|
|
184
|
+
* Props for the Autobrightness1 icon component
|
|
185
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
186
|
+
*/
|
|
187
|
+
interface Autobrightness1Props extends React.SVGProps<SVGSVGElement> {
|
|
188
|
+
size?: number | string;
|
|
189
|
+
}
|
|
190
|
+
/**
|
|
191
|
+
* Autobrightness1 icon component
|
|
192
|
+
* @example
|
|
193
|
+
* ```tsx
|
|
194
|
+
* import { Autobrightness1 } from 'magick-icons';
|
|
195
|
+
*
|
|
196
|
+
* <Autobrightness1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
197
|
+
* ```
|
|
198
|
+
*/
|
|
199
|
+
declare const Autobrightness1: React.ForwardRefExoticComponent<Omit<Autobrightness1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
200
|
+
|
|
201
|
+
/**
|
|
202
|
+
* Props for the BackwardItem1 icon component
|
|
203
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
204
|
+
*/
|
|
205
|
+
interface BackwardItem1Props extends React.SVGProps<SVGSVGElement> {
|
|
206
|
+
size?: number | string;
|
|
207
|
+
}
|
|
208
|
+
/**
|
|
209
|
+
* BackwardItem1 icon component
|
|
210
|
+
* @example
|
|
211
|
+
* ```tsx
|
|
212
|
+
* import { BackwardItem1 } from 'magick-icons';
|
|
213
|
+
*
|
|
214
|
+
* <BackwardItem1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
215
|
+
* ```
|
|
216
|
+
*/
|
|
217
|
+
declare const BackwardItem1: React.ForwardRefExoticComponent<Omit<BackwardItem1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
218
|
+
|
|
219
|
+
/**
|
|
220
|
+
* Props for the Battery2bars1 icon component
|
|
221
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
222
|
+
*/
|
|
223
|
+
interface Battery2bars1Props extends React.SVGProps<SVGSVGElement> {
|
|
224
|
+
size?: number | string;
|
|
225
|
+
}
|
|
226
|
+
/**
|
|
227
|
+
* Battery2bars1 icon component
|
|
228
|
+
* @example
|
|
229
|
+
* ```tsx
|
|
230
|
+
* import { Battery2bars1 } from 'magick-icons';
|
|
231
|
+
*
|
|
232
|
+
* <Battery2bars1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
233
|
+
* ```
|
|
234
|
+
*/
|
|
235
|
+
declare const Battery2bars1: React.ForwardRefExoticComponent<Omit<Battery2bars1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
236
|
+
|
|
237
|
+
/**
|
|
238
|
+
* Props for the BatteryCharging1 icon component
|
|
239
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
240
|
+
*/
|
|
241
|
+
interface BatteryCharging1Props extends React.SVGProps<SVGSVGElement> {
|
|
242
|
+
size?: number | string;
|
|
243
|
+
}
|
|
244
|
+
/**
|
|
245
|
+
* BatteryCharging1 icon component
|
|
246
|
+
* @example
|
|
247
|
+
* ```tsx
|
|
248
|
+
* import { BatteryCharging1 } from 'magick-icons';
|
|
249
|
+
*
|
|
250
|
+
* <BatteryCharging1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
251
|
+
* ```
|
|
252
|
+
*/
|
|
253
|
+
declare const BatteryCharging1: React.ForwardRefExoticComponent<Omit<BatteryCharging1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
254
|
+
|
|
255
|
+
/**
|
|
256
|
+
* Props for the BatteryDisable1 icon component
|
|
257
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
258
|
+
*/
|
|
259
|
+
interface BatteryDisable1Props extends React.SVGProps<SVGSVGElement> {
|
|
260
|
+
size?: number | string;
|
|
261
|
+
}
|
|
262
|
+
/**
|
|
263
|
+
* BatteryDisable1 icon component
|
|
264
|
+
* @example
|
|
265
|
+
* ```tsx
|
|
266
|
+
* import { BatteryDisable1 } from 'magick-icons';
|
|
267
|
+
*
|
|
268
|
+
* <BatteryDisable1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
269
|
+
* ```
|
|
270
|
+
*/
|
|
271
|
+
declare const BatteryDisable1: React.ForwardRefExoticComponent<Omit<BatteryDisable1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
272
|
+
|
|
273
|
+
/**
|
|
274
|
+
* Props for the BatteryEmpty1 icon component
|
|
275
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
276
|
+
*/
|
|
277
|
+
interface BatteryEmpty1Props extends React.SVGProps<SVGSVGElement> {
|
|
278
|
+
size?: number | string;
|
|
279
|
+
}
|
|
280
|
+
/**
|
|
281
|
+
* BatteryEmpty1 icon component
|
|
282
|
+
* @example
|
|
283
|
+
* ```tsx
|
|
284
|
+
* import { BatteryEmpty1 } from 'magick-icons';
|
|
285
|
+
*
|
|
286
|
+
* <BatteryEmpty1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
287
|
+
* ```
|
|
288
|
+
*/
|
|
289
|
+
declare const BatteryEmpty1: React.ForwardRefExoticComponent<Omit<BatteryEmpty1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
290
|
+
|
|
291
|
+
/**
|
|
292
|
+
* Props for the BatteryEmpty11 icon component
|
|
293
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
294
|
+
*/
|
|
295
|
+
interface BatteryEmpty11Props extends React.SVGProps<SVGSVGElement> {
|
|
296
|
+
size?: number | string;
|
|
297
|
+
}
|
|
298
|
+
/**
|
|
299
|
+
* BatteryEmpty11 icon component
|
|
300
|
+
* @example
|
|
301
|
+
* ```tsx
|
|
302
|
+
* import { BatteryEmpty11 } from 'magick-icons';
|
|
303
|
+
*
|
|
304
|
+
* <BatteryEmpty11 size={24} className="text-blue-500" strokeWidth={2} />
|
|
305
|
+
* ```
|
|
306
|
+
*/
|
|
307
|
+
declare const BatteryEmpty11: React.ForwardRefExoticComponent<Omit<BatteryEmpty11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
308
|
+
|
|
309
|
+
/**
|
|
310
|
+
* Props for the BatteryFull1 icon component
|
|
311
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
312
|
+
*/
|
|
313
|
+
interface BatteryFull1Props extends React.SVGProps<SVGSVGElement> {
|
|
314
|
+
size?: number | string;
|
|
315
|
+
}
|
|
316
|
+
/**
|
|
317
|
+
* BatteryFull1 icon component
|
|
318
|
+
* @example
|
|
319
|
+
* ```tsx
|
|
320
|
+
* import { BatteryFull1 } from 'magick-icons';
|
|
321
|
+
*
|
|
322
|
+
* <BatteryFull1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
323
|
+
* ```
|
|
324
|
+
*/
|
|
325
|
+
declare const BatteryFull1: React.ForwardRefExoticComponent<Omit<BatteryFull1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
326
|
+
|
|
327
|
+
/**
|
|
328
|
+
* Props for the Bezier1 icon component
|
|
329
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
330
|
+
*/
|
|
331
|
+
interface Bezier1Props extends React.SVGProps<SVGSVGElement> {
|
|
332
|
+
size?: number | string;
|
|
333
|
+
}
|
|
334
|
+
/**
|
|
335
|
+
* Bezier1 icon component
|
|
336
|
+
* @example
|
|
337
|
+
* ```tsx
|
|
338
|
+
* import { Bezier1 } from 'magick-icons';
|
|
339
|
+
*
|
|
340
|
+
* <Bezier1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
341
|
+
* ```
|
|
342
|
+
*/
|
|
343
|
+
declare const Bezier1: React.ForwardRefExoticComponent<Omit<Bezier1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
344
|
+
|
|
345
|
+
/**
|
|
346
|
+
* Props for the Blend1 icon component
|
|
347
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
348
|
+
*/
|
|
349
|
+
interface Blend1Props extends React.SVGProps<SVGSVGElement> {
|
|
350
|
+
size?: number | string;
|
|
351
|
+
}
|
|
352
|
+
/**
|
|
353
|
+
* Blend1 icon component
|
|
354
|
+
* @example
|
|
355
|
+
* ```tsx
|
|
356
|
+
* import { Blend1 } from 'magick-icons';
|
|
357
|
+
*
|
|
358
|
+
* <Blend1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
359
|
+
* ```
|
|
360
|
+
*/
|
|
361
|
+
declare const Blend1: React.ForwardRefExoticComponent<Omit<Blend1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
362
|
+
|
|
363
|
+
/**
|
|
364
|
+
* Props for the Blend11 icon component
|
|
365
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
366
|
+
*/
|
|
367
|
+
interface Blend11Props extends React.SVGProps<SVGSVGElement> {
|
|
368
|
+
size?: number | string;
|
|
369
|
+
}
|
|
370
|
+
/**
|
|
371
|
+
* Blend11 icon component
|
|
372
|
+
* @example
|
|
373
|
+
* ```tsx
|
|
374
|
+
* import { Blend11 } from 'magick-icons';
|
|
375
|
+
*
|
|
376
|
+
* <Blend11 size={24} className="text-blue-500" strokeWidth={2} />
|
|
377
|
+
* ```
|
|
378
|
+
*/
|
|
379
|
+
declare const Blend11: React.ForwardRefExoticComponent<Omit<Blend11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
380
|
+
|
|
381
|
+
/**
|
|
382
|
+
* Props for the Blend21 icon component
|
|
383
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
384
|
+
*/
|
|
385
|
+
interface Blend21Props extends React.SVGProps<SVGSVGElement> {
|
|
386
|
+
size?: number | string;
|
|
387
|
+
}
|
|
388
|
+
/**
|
|
389
|
+
* Blend21 icon component
|
|
390
|
+
* @example
|
|
391
|
+
* ```tsx
|
|
392
|
+
* import { Blend21 } from 'magick-icons';
|
|
393
|
+
*
|
|
394
|
+
* <Blend21 size={24} className="text-blue-500" strokeWidth={2} />
|
|
395
|
+
* ```
|
|
396
|
+
*/
|
|
397
|
+
declare const Blend21: React.ForwardRefExoticComponent<Omit<Blend21Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
398
|
+
|
|
399
|
+
/**
|
|
400
|
+
* Props for the Blur1 icon component
|
|
401
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
402
|
+
*/
|
|
403
|
+
interface Blur1Props extends React.SVGProps<SVGSVGElement> {
|
|
404
|
+
size?: number | string;
|
|
405
|
+
}
|
|
406
|
+
/**
|
|
407
|
+
* Blur1 icon component
|
|
408
|
+
* @example
|
|
409
|
+
* ```tsx
|
|
410
|
+
* import { Blur1 } from 'magick-icons';
|
|
411
|
+
*
|
|
412
|
+
* <Blur1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
413
|
+
* ```
|
|
414
|
+
*/
|
|
415
|
+
declare const Blur1: React.ForwardRefExoticComponent<Omit<Blur1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
416
|
+
|
|
417
|
+
/**
|
|
418
|
+
* Props for the Box21 icon component
|
|
419
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
420
|
+
*/
|
|
421
|
+
interface Box21Props extends React.SVGProps<SVGSVGElement> {
|
|
422
|
+
size?: number | string;
|
|
423
|
+
}
|
|
424
|
+
/**
|
|
425
|
+
* Box21 icon component
|
|
426
|
+
* @example
|
|
427
|
+
* ```tsx
|
|
428
|
+
* import { Box21 } from 'magick-icons';
|
|
429
|
+
*
|
|
430
|
+
* <Box21 size={24} className="text-blue-500" strokeWidth={2} />
|
|
431
|
+
* ```
|
|
432
|
+
*/
|
|
433
|
+
declare const Box21: React.ForwardRefExoticComponent<Omit<Box21Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
434
|
+
|
|
75
435
|
/**
|
|
76
436
|
* Props for the Calendar icon component
|
|
77
437
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -432,6 +792,42 @@ interface HrSystemProps extends React.SVGProps<SVGSVGElement> {
|
|
|
432
792
|
*/
|
|
433
793
|
declare const HrSystem: React.ForwardRefExoticComponent<Omit<HrSystemProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
434
794
|
|
|
795
|
+
/**
|
|
796
|
+
* Props for the Icon3dcube1 icon component
|
|
797
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
798
|
+
*/
|
|
799
|
+
interface Icon3dcube1Props extends React.SVGProps<SVGSVGElement> {
|
|
800
|
+
size?: number | string;
|
|
801
|
+
}
|
|
802
|
+
/**
|
|
803
|
+
* Icon3dcube1 icon component
|
|
804
|
+
* @example
|
|
805
|
+
* ```tsx
|
|
806
|
+
* import { Icon3dcube1 } from 'magick-icons';
|
|
807
|
+
*
|
|
808
|
+
* <Icon3dcube1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
809
|
+
* ```
|
|
810
|
+
*/
|
|
811
|
+
declare const Icon3dcube1: React.ForwardRefExoticComponent<Omit<Icon3dcube1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
812
|
+
|
|
813
|
+
/**
|
|
814
|
+
* Props for the Icon3square1 icon component
|
|
815
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
816
|
+
*/
|
|
817
|
+
interface Icon3square1Props extends React.SVGProps<SVGSVGElement> {
|
|
818
|
+
size?: number | string;
|
|
819
|
+
}
|
|
820
|
+
/**
|
|
821
|
+
* Icon3square1 icon component
|
|
822
|
+
* @example
|
|
823
|
+
* ```tsx
|
|
824
|
+
* import { Icon3square1 } from 'magick-icons';
|
|
825
|
+
*
|
|
826
|
+
* <Icon3square1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
827
|
+
* ```
|
|
828
|
+
*/
|
|
829
|
+
declare const Icon3square1: React.ForwardRefExoticComponent<Omit<Icon3square1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
830
|
+
|
|
435
831
|
/**
|
|
436
832
|
* Props for the IconsaxAiScienceBold icon component
|
|
437
833
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -1008,4 +1404,4 @@ interface XProps extends React.SVGProps<SVGSVGElement> {
|
|
|
1008
1404
|
*/
|
|
1009
1405
|
declare const X: React.ForwardRefExoticComponent<Omit<XProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1010
1406
|
|
|
1011
|
-
export { ArchiveBold, type ArchiveBoldProps, ArrowDownBold, type ArrowDownBoldProps, ArrowRightBold, type ArrowRightBoldProps, ArrowUpBold, type ArrowUpBoldProps, Calendar, type CalendarProps, ChevronDown, type ChevronDownProps, ChevronLeft, type ChevronLeftProps, ChevronRight, type ChevronRightProps, ChevronUp, type ChevronUpProps, ChevronsUpDown, type ChevronsUpDownProps, CircleCheckFill, type CircleCheckFillProps, CloseCircle1, type CloseCircle1Props, DislikeBold, type DislikeBoldProps, DocumentTextBold, type DocumentTextBoldProps, DocumentUpload, type DocumentUploadProps, Enter, type EnterProps, Finance, type FinanceProps, Flag, type FlagProps, Folder2, type Folder2Props, FolderDrawerOpen, type FolderDrawerOpenProps, FolderOpenBold, type FolderOpenBoldProps, GripVertical, type GripVerticalProps, HeartBold, type HeartBoldProps, HrSystem, type HrSystemProps, IconsaxAiScienceBold, type IconsaxAiScienceBoldProps, IconsaxAttachCircleBold, type IconsaxAttachCircleBoldProps, IconsaxBrainBold, type IconsaxBrainBoldProps, IconsaxMonetizeBold, type IconsaxMonetizeBoldProps, IconsaxPenBrushBold, type IconsaxPenBrushBoldProps, IconsaxPeopleBold, type IconsaxPeopleBoldProps, IconsaxTaskSquareBold, type IconsaxTaskSquareBoldProps, IconsaxVideoCameraBold, type IconsaxVideoCameraBoldProps, IconsaxWord, type IconsaxWordProps, InfoCircleBold, type InfoCircleBoldProps, Legal, type LegalProps, LikeBold, type LikeBoldProps, Line, type LineProps, LinkSquare, type LinkSquareProps, ListEnd, type ListEndProps, ListOrdered, type ListOrderedProps, ListTodo, type ListTodoProps, Lock, type LockProps, MagickPotion, type MagickPotionProps, MagickoCheck, type MagickoCheckProps, MagickoList, type MagickoListProps, Marketing, type MarketingProps, MessageEdit, type MessageEditProps, Network, type NetworkProps, PA, type PAProps, Signature, type SignatureProps, SquarePen1, type SquarePen1Props, Strikethrough, type StrikethroughProps, Tasks, type TasksProps, Trash, type TrashProps, Video, type VideoProps, X, type XProps };
|
|
1407
|
+
export { Add1, Add11, type Add11Props, type Add1Props, AddCircle1, type AddCircle1Props, AddItem1, type AddItem1Props, AiFlask1, type AiFlask1Props, AiScience1, type AiScience1Props, ArchiveBold, type ArchiveBoldProps, ArrowDownBold, type ArrowDownBoldProps, ArrowRightBold, type ArrowRightBoldProps, ArrowUpBold, type ArrowUpBoldProps, Autobrightness1, type Autobrightness1Props, BackwardItem1, type BackwardItem1Props, Battery2bars1, type Battery2bars1Props, BatteryCharging1, type BatteryCharging1Props, BatteryDisable1, type BatteryDisable1Props, BatteryEmpty1, BatteryEmpty11, type BatteryEmpty11Props, type BatteryEmpty1Props, BatteryFull1, type BatteryFull1Props, Bezier1, type Bezier1Props, Blend1, Blend11, type Blend11Props, type Blend1Props, Blend21, type Blend21Props, Blur1, type Blur1Props, Box21, type Box21Props, Calendar, type CalendarProps, ChevronDown, type ChevronDownProps, ChevronLeft, type ChevronLeftProps, ChevronRight, type ChevronRightProps, ChevronUp, type ChevronUpProps, ChevronsUpDown, type ChevronsUpDownProps, CircleCheckFill, type CircleCheckFillProps, CloseCircle1, type CloseCircle1Props, DislikeBold, type DislikeBoldProps, DocumentTextBold, type DocumentTextBoldProps, DocumentUpload, type DocumentUploadProps, Enter, type EnterProps, Finance, type FinanceProps, Flag, type FlagProps, Folder2, type Folder2Props, FolderDrawerOpen, type FolderDrawerOpenProps, FolderOpenBold, type FolderOpenBoldProps, GripVertical, type GripVerticalProps, HeartBold, type HeartBoldProps, HrSystem, type HrSystemProps, Icon3dcube1, type Icon3dcube1Props, Icon3square1, type Icon3square1Props, IconsaxAiScienceBold, type IconsaxAiScienceBoldProps, IconsaxAttachCircleBold, type IconsaxAttachCircleBoldProps, IconsaxBrainBold, type IconsaxBrainBoldProps, IconsaxMonetizeBold, type IconsaxMonetizeBoldProps, IconsaxPenBrushBold, type IconsaxPenBrushBoldProps, IconsaxPeopleBold, type IconsaxPeopleBoldProps, IconsaxTaskSquareBold, type IconsaxTaskSquareBoldProps, IconsaxVideoCameraBold, type IconsaxVideoCameraBoldProps, IconsaxWord, type IconsaxWordProps, InfoCircleBold, type InfoCircleBoldProps, Legal, type LegalProps, LikeBold, type LikeBoldProps, Line, type LineProps, LinkSquare, type LinkSquareProps, ListEnd, type ListEndProps, ListOrdered, type ListOrderedProps, ListTodo, type ListTodoProps, Lock, type LockProps, MagickPotion, type MagickPotionProps, MagickoCheck, type MagickoCheckProps, MagickoList, type MagickoListProps, Marketing, type MarketingProps, MessageEdit, type MessageEditProps, Network, type NetworkProps, PA, type PAProps, Signature, type SignatureProps, SquarePen1, type SquarePen1Props, Strikethrough, type StrikethroughProps, Tasks, type TasksProps, Trash, type TrashProps, Video, type VideoProps, X, type XProps };
|