magick-icons 0.1.194 → 0.1.196
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 +1 -595
- package/index.d.ts +1 -595
- package/index.js +210 -702
- package/index.js.map +1 -1
- package/index.mjs +215 -674
- package/index.mjs.map +1 -1
- package/package.json +1 -1
package/index.d.mts
CHANGED
|
@@ -1,131 +1,5 @@
|
|
|
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 AiIcon icon component
|
|
95
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
96
|
-
*/
|
|
97
|
-
interface AiIconProps extends React.SVGProps<SVGSVGElement> {
|
|
98
|
-
size?: number | string;
|
|
99
|
-
}
|
|
100
|
-
/**
|
|
101
|
-
* AiIcon icon component
|
|
102
|
-
* @example
|
|
103
|
-
* ```tsx
|
|
104
|
-
* import { AiIcon } from 'magick-icons';
|
|
105
|
-
*
|
|
106
|
-
* <AiIcon size={24} className="text-blue-500" strokeWidth={2} />
|
|
107
|
-
* ```
|
|
108
|
-
*/
|
|
109
|
-
declare const AiIcon: React.ForwardRefExoticComponent<Omit<AiIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
110
|
-
|
|
111
|
-
/**
|
|
112
|
-
* Props for the AiScience1 icon component
|
|
113
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
114
|
-
*/
|
|
115
|
-
interface AiScience1Props extends React.SVGProps<SVGSVGElement> {
|
|
116
|
-
size?: number | string;
|
|
117
|
-
}
|
|
118
|
-
/**
|
|
119
|
-
* AiScience1 icon component
|
|
120
|
-
* @example
|
|
121
|
-
* ```tsx
|
|
122
|
-
* import { AiScience1 } from 'magick-icons';
|
|
123
|
-
*
|
|
124
|
-
* <AiScience1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
125
|
-
* ```
|
|
126
|
-
*/
|
|
127
|
-
declare const AiScience1: React.ForwardRefExoticComponent<Omit<AiScience1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
128
|
-
|
|
129
3
|
/**
|
|
130
4
|
* Props for the ArchiveBold icon component
|
|
131
5
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -198,168 +72,6 @@ interface ArrowUpBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
|
198
72
|
*/
|
|
199
73
|
declare const ArrowUpBold: React.ForwardRefExoticComponent<Omit<ArrowUpBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
200
74
|
|
|
201
|
-
/**
|
|
202
|
-
* Props for the Autobrightness1 icon component
|
|
203
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
204
|
-
*/
|
|
205
|
-
interface Autobrightness1Props extends React.SVGProps<SVGSVGElement> {
|
|
206
|
-
size?: number | string;
|
|
207
|
-
}
|
|
208
|
-
/**
|
|
209
|
-
* Autobrightness1 icon component
|
|
210
|
-
* @example
|
|
211
|
-
* ```tsx
|
|
212
|
-
* import { Autobrightness1 } from 'magick-icons';
|
|
213
|
-
*
|
|
214
|
-
* <Autobrightness1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
215
|
-
* ```
|
|
216
|
-
*/
|
|
217
|
-
declare const Autobrightness1: React.ForwardRefExoticComponent<Omit<Autobrightness1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
218
|
-
|
|
219
|
-
/**
|
|
220
|
-
* Props for the BackwardItem1 icon component
|
|
221
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
222
|
-
*/
|
|
223
|
-
interface BackwardItem1Props extends React.SVGProps<SVGSVGElement> {
|
|
224
|
-
size?: number | string;
|
|
225
|
-
}
|
|
226
|
-
/**
|
|
227
|
-
* BackwardItem1 icon component
|
|
228
|
-
* @example
|
|
229
|
-
* ```tsx
|
|
230
|
-
* import { BackwardItem1 } from 'magick-icons';
|
|
231
|
-
*
|
|
232
|
-
* <BackwardItem1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
233
|
-
* ```
|
|
234
|
-
*/
|
|
235
|
-
declare const BackwardItem1: React.ForwardRefExoticComponent<Omit<BackwardItem1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
236
|
-
|
|
237
|
-
/**
|
|
238
|
-
* Props for the Battery2bars1 icon component
|
|
239
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
240
|
-
*/
|
|
241
|
-
interface Battery2bars1Props extends React.SVGProps<SVGSVGElement> {
|
|
242
|
-
size?: number | string;
|
|
243
|
-
}
|
|
244
|
-
/**
|
|
245
|
-
* Battery2bars1 icon component
|
|
246
|
-
* @example
|
|
247
|
-
* ```tsx
|
|
248
|
-
* import { Battery2bars1 } from 'magick-icons';
|
|
249
|
-
*
|
|
250
|
-
* <Battery2bars1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
251
|
-
* ```
|
|
252
|
-
*/
|
|
253
|
-
declare const Battery2bars1: React.ForwardRefExoticComponent<Omit<Battery2bars1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
254
|
-
|
|
255
|
-
/**
|
|
256
|
-
* Props for the BatteryCharging1 icon component
|
|
257
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
258
|
-
*/
|
|
259
|
-
interface BatteryCharging1Props extends React.SVGProps<SVGSVGElement> {
|
|
260
|
-
size?: number | string;
|
|
261
|
-
}
|
|
262
|
-
/**
|
|
263
|
-
* BatteryCharging1 icon component
|
|
264
|
-
* @example
|
|
265
|
-
* ```tsx
|
|
266
|
-
* import { BatteryCharging1 } from 'magick-icons';
|
|
267
|
-
*
|
|
268
|
-
* <BatteryCharging1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
269
|
-
* ```
|
|
270
|
-
*/
|
|
271
|
-
declare const BatteryCharging1: React.ForwardRefExoticComponent<Omit<BatteryCharging1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
272
|
-
|
|
273
|
-
/**
|
|
274
|
-
* Props for the BatteryDisable1 icon component
|
|
275
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
276
|
-
*/
|
|
277
|
-
interface BatteryDisable1Props extends React.SVGProps<SVGSVGElement> {
|
|
278
|
-
size?: number | string;
|
|
279
|
-
}
|
|
280
|
-
/**
|
|
281
|
-
* BatteryDisable1 icon component
|
|
282
|
-
* @example
|
|
283
|
-
* ```tsx
|
|
284
|
-
* import { BatteryDisable1 } from 'magick-icons';
|
|
285
|
-
*
|
|
286
|
-
* <BatteryDisable1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
287
|
-
* ```
|
|
288
|
-
*/
|
|
289
|
-
declare const BatteryDisable1: React.ForwardRefExoticComponent<Omit<BatteryDisable1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
290
|
-
|
|
291
|
-
/**
|
|
292
|
-
* Props for the BatteryEmpty1 icon component
|
|
293
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
294
|
-
*/
|
|
295
|
-
interface BatteryEmpty1Props extends React.SVGProps<SVGSVGElement> {
|
|
296
|
-
size?: number | string;
|
|
297
|
-
}
|
|
298
|
-
/**
|
|
299
|
-
* BatteryEmpty1 icon component
|
|
300
|
-
* @example
|
|
301
|
-
* ```tsx
|
|
302
|
-
* import { BatteryEmpty1 } from 'magick-icons';
|
|
303
|
-
*
|
|
304
|
-
* <BatteryEmpty1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
305
|
-
* ```
|
|
306
|
-
*/
|
|
307
|
-
declare const BatteryEmpty1: React.ForwardRefExoticComponent<Omit<BatteryEmpty1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
308
|
-
|
|
309
|
-
/**
|
|
310
|
-
* Props for the BatteryEmpty11 icon component
|
|
311
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
312
|
-
*/
|
|
313
|
-
interface BatteryEmpty11Props extends React.SVGProps<SVGSVGElement> {
|
|
314
|
-
size?: number | string;
|
|
315
|
-
}
|
|
316
|
-
/**
|
|
317
|
-
* BatteryEmpty11 icon component
|
|
318
|
-
* @example
|
|
319
|
-
* ```tsx
|
|
320
|
-
* import { BatteryEmpty11 } from 'magick-icons';
|
|
321
|
-
*
|
|
322
|
-
* <BatteryEmpty11 size={24} className="text-blue-500" strokeWidth={2} />
|
|
323
|
-
* ```
|
|
324
|
-
*/
|
|
325
|
-
declare const BatteryEmpty11: React.ForwardRefExoticComponent<Omit<BatteryEmpty11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
326
|
-
|
|
327
|
-
/**
|
|
328
|
-
* Props for the BatteryFull1 icon component
|
|
329
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
330
|
-
*/
|
|
331
|
-
interface BatteryFull1Props extends React.SVGProps<SVGSVGElement> {
|
|
332
|
-
size?: number | string;
|
|
333
|
-
}
|
|
334
|
-
/**
|
|
335
|
-
* BatteryFull1 icon component
|
|
336
|
-
* @example
|
|
337
|
-
* ```tsx
|
|
338
|
-
* import { BatteryFull1 } from 'magick-icons';
|
|
339
|
-
*
|
|
340
|
-
* <BatteryFull1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
341
|
-
* ```
|
|
342
|
-
*/
|
|
343
|
-
declare const BatteryFull1: React.ForwardRefExoticComponent<Omit<BatteryFull1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
344
|
-
|
|
345
|
-
/**
|
|
346
|
-
* Props for the BookmarkFilled icon component
|
|
347
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
348
|
-
*/
|
|
349
|
-
interface BookmarkFilledProps extends React.SVGProps<SVGSVGElement> {
|
|
350
|
-
size?: number | string;
|
|
351
|
-
}
|
|
352
|
-
/**
|
|
353
|
-
* BookmarkFilled icon component
|
|
354
|
-
* @example
|
|
355
|
-
* ```tsx
|
|
356
|
-
* import { BookmarkFilled } from 'magick-icons';
|
|
357
|
-
*
|
|
358
|
-
* <BookmarkFilled size={24} className="text-blue-500" strokeWidth={2} />
|
|
359
|
-
* ```
|
|
360
|
-
*/
|
|
361
|
-
declare const BookmarkFilled: React.ForwardRefExoticComponent<Omit<BookmarkFilledProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
362
|
-
|
|
363
75
|
/**
|
|
364
76
|
* Props for the Calendar icon component
|
|
365
77
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -378,60 +90,6 @@ interface CalendarProps extends React.SVGProps<SVGSVGElement> {
|
|
|
378
90
|
*/
|
|
379
91
|
declare const Calendar: React.ForwardRefExoticComponent<Omit<CalendarProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
380
92
|
|
|
381
|
-
/**
|
|
382
|
-
* Props for the ChatFullScreen icon component
|
|
383
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
384
|
-
*/
|
|
385
|
-
interface ChatFullScreenProps extends React.SVGProps<SVGSVGElement> {
|
|
386
|
-
size?: number | string;
|
|
387
|
-
}
|
|
388
|
-
/**
|
|
389
|
-
* ChatFullScreen icon component
|
|
390
|
-
* @example
|
|
391
|
-
* ```tsx
|
|
392
|
-
* import { ChatFullScreen } from 'magick-icons';
|
|
393
|
-
*
|
|
394
|
-
* <ChatFullScreen size={24} className="text-blue-500" strokeWidth={2} />
|
|
395
|
-
* ```
|
|
396
|
-
*/
|
|
397
|
-
declare const ChatFullScreen: React.ForwardRefExoticComponent<Omit<ChatFullScreenProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
398
|
-
|
|
399
|
-
/**
|
|
400
|
-
* Props for the ChatMaximize icon component
|
|
401
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
402
|
-
*/
|
|
403
|
-
interface ChatMaximizeProps extends React.SVGProps<SVGSVGElement> {
|
|
404
|
-
size?: number | string;
|
|
405
|
-
}
|
|
406
|
-
/**
|
|
407
|
-
* ChatMaximize icon component
|
|
408
|
-
* @example
|
|
409
|
-
* ```tsx
|
|
410
|
-
* import { ChatMaximize } from 'magick-icons';
|
|
411
|
-
*
|
|
412
|
-
* <ChatMaximize size={24} className="text-blue-500" strokeWidth={2} />
|
|
413
|
-
* ```
|
|
414
|
-
*/
|
|
415
|
-
declare const ChatMaximize: React.ForwardRefExoticComponent<Omit<ChatMaximizeProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
416
|
-
|
|
417
|
-
/**
|
|
418
|
-
* Props for the ChatMinimize icon component
|
|
419
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
420
|
-
*/
|
|
421
|
-
interface ChatMinimizeProps extends React.SVGProps<SVGSVGElement> {
|
|
422
|
-
size?: number | string;
|
|
423
|
-
}
|
|
424
|
-
/**
|
|
425
|
-
* ChatMinimize icon component
|
|
426
|
-
* @example
|
|
427
|
-
* ```tsx
|
|
428
|
-
* import { ChatMinimize } from 'magick-icons';
|
|
429
|
-
*
|
|
430
|
-
* <ChatMinimize size={24} className="text-blue-500" strokeWidth={2} />
|
|
431
|
-
* ```
|
|
432
|
-
*/
|
|
433
|
-
declare const ChatMinimize: React.ForwardRefExoticComponent<Omit<ChatMinimizeProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
434
|
-
|
|
435
93
|
/**
|
|
436
94
|
* Props for the ChevronDown icon component
|
|
437
95
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -576,24 +234,6 @@ interface DislikeBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
|
576
234
|
*/
|
|
577
235
|
declare const DislikeBold: React.ForwardRefExoticComponent<Omit<DislikeBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
578
236
|
|
|
579
|
-
/**
|
|
580
|
-
* Props for the Doc icon component
|
|
581
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
582
|
-
*/
|
|
583
|
-
interface DocProps extends React.SVGProps<SVGSVGElement> {
|
|
584
|
-
size?: number | string;
|
|
585
|
-
}
|
|
586
|
-
/**
|
|
587
|
-
* Doc icon component
|
|
588
|
-
* @example
|
|
589
|
-
* ```tsx
|
|
590
|
-
* import { Doc } from 'magick-icons';
|
|
591
|
-
*
|
|
592
|
-
* <Doc size={24} className="text-blue-500" strokeWidth={2} />
|
|
593
|
-
* ```
|
|
594
|
-
*/
|
|
595
|
-
declare const Doc: React.ForwardRefExoticComponent<Omit<DocProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
596
|
-
|
|
597
237
|
/**
|
|
598
238
|
* Props for the DocumentTextBold icon component
|
|
599
239
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -648,42 +288,6 @@ interface EnterProps extends React.SVGProps<SVGSVGElement> {
|
|
|
648
288
|
*/
|
|
649
289
|
declare const Enter: React.ForwardRefExoticComponent<Omit<EnterProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
650
290
|
|
|
651
|
-
/**
|
|
652
|
-
* Props for the Excel icon component
|
|
653
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
654
|
-
*/
|
|
655
|
-
interface ExcelProps extends React.SVGProps<SVGSVGElement> {
|
|
656
|
-
size?: number | string;
|
|
657
|
-
}
|
|
658
|
-
/**
|
|
659
|
-
* Excel icon component
|
|
660
|
-
* @example
|
|
661
|
-
* ```tsx
|
|
662
|
-
* import { Excel } from 'magick-icons';
|
|
663
|
-
*
|
|
664
|
-
* <Excel size={24} className="text-blue-500" strokeWidth={2} />
|
|
665
|
-
* ```
|
|
666
|
-
*/
|
|
667
|
-
declare const Excel: React.ForwardRefExoticComponent<Omit<ExcelProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
668
|
-
|
|
669
|
-
/**
|
|
670
|
-
* Props for the File icon component
|
|
671
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
672
|
-
*/
|
|
673
|
-
interface FileProps extends React.SVGProps<SVGSVGElement> {
|
|
674
|
-
size?: number | string;
|
|
675
|
-
}
|
|
676
|
-
/**
|
|
677
|
-
* File icon component
|
|
678
|
-
* @example
|
|
679
|
-
* ```tsx
|
|
680
|
-
* import { File } from 'magick-icons';
|
|
681
|
-
*
|
|
682
|
-
* <File size={24} className="text-blue-500" strokeWidth={2} />
|
|
683
|
-
* ```
|
|
684
|
-
*/
|
|
685
|
-
declare const File: React.ForwardRefExoticComponent<Omit<FileProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
686
|
-
|
|
687
291
|
/**
|
|
688
292
|
* Props for the Finance icon component
|
|
689
293
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -756,24 +360,6 @@ interface FolderDrawerOpenProps extends React.SVGProps<SVGSVGElement> {
|
|
|
756
360
|
*/
|
|
757
361
|
declare const FolderDrawerOpen: React.ForwardRefExoticComponent<Omit<FolderDrawerOpenProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
758
362
|
|
|
759
|
-
/**
|
|
760
|
-
* Props for the FolderDrawerOpenAddBold icon component
|
|
761
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
762
|
-
*/
|
|
763
|
-
interface FolderDrawerOpenAddBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
764
|
-
size?: number | string;
|
|
765
|
-
}
|
|
766
|
-
/**
|
|
767
|
-
* FolderDrawerOpenAddBold icon component
|
|
768
|
-
* @example
|
|
769
|
-
* ```tsx
|
|
770
|
-
* import { FolderDrawerOpenAddBold } from 'magick-icons';
|
|
771
|
-
*
|
|
772
|
-
* <FolderDrawerOpenAddBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
773
|
-
* ```
|
|
774
|
-
*/
|
|
775
|
-
declare const FolderDrawerOpenAddBold: React.ForwardRefExoticComponent<Omit<FolderDrawerOpenAddBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
776
|
-
|
|
777
363
|
/**
|
|
778
364
|
* Props for the FolderOpenBold icon component
|
|
779
365
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -792,24 +378,6 @@ interface FolderOpenBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
|
792
378
|
*/
|
|
793
379
|
declare const FolderOpenBold: React.ForwardRefExoticComponent<Omit<FolderOpenBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
794
380
|
|
|
795
|
-
/**
|
|
796
|
-
* Props for the GeneralMagicko icon component
|
|
797
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
798
|
-
*/
|
|
799
|
-
interface GeneralMagickoProps extends React.SVGProps<SVGSVGElement> {
|
|
800
|
-
size?: number | string;
|
|
801
|
-
}
|
|
802
|
-
/**
|
|
803
|
-
* GeneralMagicko icon component
|
|
804
|
-
* @example
|
|
805
|
-
* ```tsx
|
|
806
|
-
* import { GeneralMagicko } from 'magick-icons';
|
|
807
|
-
*
|
|
808
|
-
* <GeneralMagicko size={24} className="text-blue-500" strokeWidth={2} />
|
|
809
|
-
* ```
|
|
810
|
-
*/
|
|
811
|
-
declare const GeneralMagicko: React.ForwardRefExoticComponent<Omit<GeneralMagickoProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
812
|
-
|
|
813
381
|
/**
|
|
814
382
|
* Props for the GripVertical icon component
|
|
815
383
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -846,24 +414,6 @@ interface HeartBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
|
846
414
|
*/
|
|
847
415
|
declare const HeartBold: React.ForwardRefExoticComponent<Omit<HeartBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
848
416
|
|
|
849
|
-
/**
|
|
850
|
-
* Props for the Hr icon component
|
|
851
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
852
|
-
*/
|
|
853
|
-
interface HrProps extends React.SVGProps<SVGSVGElement> {
|
|
854
|
-
size?: number | string;
|
|
855
|
-
}
|
|
856
|
-
/**
|
|
857
|
-
* Hr icon component
|
|
858
|
-
* @example
|
|
859
|
-
* ```tsx
|
|
860
|
-
* import { Hr } from 'magick-icons';
|
|
861
|
-
*
|
|
862
|
-
* <Hr size={24} className="text-blue-500" strokeWidth={2} />
|
|
863
|
-
* ```
|
|
864
|
-
*/
|
|
865
|
-
declare const Hr: React.ForwardRefExoticComponent<Omit<HrProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
866
|
-
|
|
867
417
|
/**
|
|
868
418
|
* Props for the HrSystem icon component
|
|
869
419
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -882,42 +432,6 @@ interface HrSystemProps extends React.SVGProps<SVGSVGElement> {
|
|
|
882
432
|
*/
|
|
883
433
|
declare const HrSystem: React.ForwardRefExoticComponent<Omit<HrSystemProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
884
434
|
|
|
885
|
-
/**
|
|
886
|
-
* Props for the Icon3dcube1 icon component
|
|
887
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
888
|
-
*/
|
|
889
|
-
interface Icon3dcube1Props extends React.SVGProps<SVGSVGElement> {
|
|
890
|
-
size?: number | string;
|
|
891
|
-
}
|
|
892
|
-
/**
|
|
893
|
-
* Icon3dcube1 icon component
|
|
894
|
-
* @example
|
|
895
|
-
* ```tsx
|
|
896
|
-
* import { Icon3dcube1 } from 'magick-icons';
|
|
897
|
-
*
|
|
898
|
-
* <Icon3dcube1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
899
|
-
* ```
|
|
900
|
-
*/
|
|
901
|
-
declare const Icon3dcube1: React.ForwardRefExoticComponent<Omit<Icon3dcube1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
902
|
-
|
|
903
|
-
/**
|
|
904
|
-
* Props for the Icon3square1 icon component
|
|
905
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
906
|
-
*/
|
|
907
|
-
interface Icon3square1Props extends React.SVGProps<SVGSVGElement> {
|
|
908
|
-
size?: number | string;
|
|
909
|
-
}
|
|
910
|
-
/**
|
|
911
|
-
* Icon3square1 icon component
|
|
912
|
-
* @example
|
|
913
|
-
* ```tsx
|
|
914
|
-
* import { Icon3square1 } from 'magick-icons';
|
|
915
|
-
*
|
|
916
|
-
* <Icon3square1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
917
|
-
* ```
|
|
918
|
-
*/
|
|
919
|
-
declare const Icon3square1: React.ForwardRefExoticComponent<Omit<Icon3square1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
920
|
-
|
|
921
435
|
/**
|
|
922
436
|
* Props for the IconsaxAttachCircleBold icon component
|
|
923
437
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -990,24 +504,6 @@ interface IconsaxWordProps extends React.SVGProps<SVGSVGElement> {
|
|
|
990
504
|
*/
|
|
991
505
|
declare const IconsaxWord: React.ForwardRefExoticComponent<Omit<IconsaxWordProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
992
506
|
|
|
993
|
-
/**
|
|
994
|
-
* Props for the InProgress icon component
|
|
995
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
996
|
-
*/
|
|
997
|
-
interface InProgressProps extends React.SVGProps<SVGSVGElement> {
|
|
998
|
-
size?: number | string;
|
|
999
|
-
}
|
|
1000
|
-
/**
|
|
1001
|
-
* InProgress icon component
|
|
1002
|
-
* @example
|
|
1003
|
-
* ```tsx
|
|
1004
|
-
* import { InProgress } from 'magick-icons';
|
|
1005
|
-
*
|
|
1006
|
-
* <InProgress size={24} className="text-blue-500" strokeWidth={2} />
|
|
1007
|
-
* ```
|
|
1008
|
-
*/
|
|
1009
|
-
declare const InProgress: React.ForwardRefExoticComponent<Omit<InProgressProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1010
|
-
|
|
1011
507
|
/**
|
|
1012
508
|
* Props for the InfoCircleBold icon component
|
|
1013
509
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -1260,24 +756,6 @@ interface NetworkProps extends React.SVGProps<SVGSVGElement> {
|
|
|
1260
756
|
*/
|
|
1261
757
|
declare const Network: React.ForwardRefExoticComponent<Omit<NetworkProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1262
758
|
|
|
1263
|
-
/**
|
|
1264
|
-
* Props for the NotiDot icon component
|
|
1265
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1266
|
-
*/
|
|
1267
|
-
interface NotiDotProps extends React.SVGProps<SVGSVGElement> {
|
|
1268
|
-
size?: number | string;
|
|
1269
|
-
}
|
|
1270
|
-
/**
|
|
1271
|
-
* NotiDot icon component
|
|
1272
|
-
* @example
|
|
1273
|
-
* ```tsx
|
|
1274
|
-
* import { NotiDot } from 'magick-icons';
|
|
1275
|
-
*
|
|
1276
|
-
* <NotiDot size={24} className="text-blue-500" strokeWidth={2} />
|
|
1277
|
-
* ```
|
|
1278
|
-
*/
|
|
1279
|
-
declare const NotiDot: React.ForwardRefExoticComponent<Omit<NotiDotProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1280
|
-
|
|
1281
759
|
/**
|
|
1282
760
|
* Props for the PA icon component
|
|
1283
761
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -1296,60 +774,6 @@ interface PAProps extends React.SVGProps<SVGSVGElement> {
|
|
|
1296
774
|
*/
|
|
1297
775
|
declare const PA: React.ForwardRefExoticComponent<Omit<PAProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1298
776
|
|
|
1299
|
-
/**
|
|
1300
|
-
* Props for the PauseSquare icon component
|
|
1301
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1302
|
-
*/
|
|
1303
|
-
interface PauseSquareProps extends React.SVGProps<SVGSVGElement> {
|
|
1304
|
-
size?: number | string;
|
|
1305
|
-
}
|
|
1306
|
-
/**
|
|
1307
|
-
* PauseSquare icon component
|
|
1308
|
-
* @example
|
|
1309
|
-
* ```tsx
|
|
1310
|
-
* import { PauseSquare } from 'magick-icons';
|
|
1311
|
-
*
|
|
1312
|
-
* <PauseSquare size={24} className="text-blue-500" strokeWidth={2} />
|
|
1313
|
-
* ```
|
|
1314
|
-
*/
|
|
1315
|
-
declare const PauseSquare: React.ForwardRefExoticComponent<Omit<PauseSquareProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1316
|
-
|
|
1317
|
-
/**
|
|
1318
|
-
* Props for the Pdf icon component
|
|
1319
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1320
|
-
*/
|
|
1321
|
-
interface PdfProps extends React.SVGProps<SVGSVGElement> {
|
|
1322
|
-
size?: number | string;
|
|
1323
|
-
}
|
|
1324
|
-
/**
|
|
1325
|
-
* Pdf icon component
|
|
1326
|
-
* @example
|
|
1327
|
-
* ```tsx
|
|
1328
|
-
* import { Pdf } from 'magick-icons';
|
|
1329
|
-
*
|
|
1330
|
-
* <Pdf size={24} className="text-blue-500" strokeWidth={2} />
|
|
1331
|
-
* ```
|
|
1332
|
-
*/
|
|
1333
|
-
declare const Pdf: React.ForwardRefExoticComponent<Omit<PdfProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1334
|
-
|
|
1335
|
-
/**
|
|
1336
|
-
* Props for the PlayFilled icon component
|
|
1337
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1338
|
-
*/
|
|
1339
|
-
interface PlayFilledProps extends React.SVGProps<SVGSVGElement> {
|
|
1340
|
-
size?: number | string;
|
|
1341
|
-
}
|
|
1342
|
-
/**
|
|
1343
|
-
* PlayFilled icon component
|
|
1344
|
-
* @example
|
|
1345
|
-
* ```tsx
|
|
1346
|
-
* import { PlayFilled } from 'magick-icons';
|
|
1347
|
-
*
|
|
1348
|
-
* <PlayFilled size={24} className="text-blue-500" strokeWidth={2} />
|
|
1349
|
-
* ```
|
|
1350
|
-
*/
|
|
1351
|
-
declare const PlayFilled: React.ForwardRefExoticComponent<Omit<PlayFilledProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1352
|
-
|
|
1353
777
|
/**
|
|
1354
778
|
* Props for the Signature icon component
|
|
1355
779
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -1368,24 +792,6 @@ interface SignatureProps extends React.SVGProps<SVGSVGElement> {
|
|
|
1368
792
|
*/
|
|
1369
793
|
declare const Signature: React.ForwardRefExoticComponent<Omit<SignatureProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1370
794
|
|
|
1371
|
-
/**
|
|
1372
|
-
* Props for the SperateDot icon component
|
|
1373
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1374
|
-
*/
|
|
1375
|
-
interface SperateDotProps extends React.SVGProps<SVGSVGElement> {
|
|
1376
|
-
size?: number | string;
|
|
1377
|
-
}
|
|
1378
|
-
/**
|
|
1379
|
-
* SperateDot icon component
|
|
1380
|
-
* @example
|
|
1381
|
-
* ```tsx
|
|
1382
|
-
* import { SperateDot } from 'magick-icons';
|
|
1383
|
-
*
|
|
1384
|
-
* <SperateDot size={24} className="text-blue-500" strokeWidth={2} />
|
|
1385
|
-
* ```
|
|
1386
|
-
*/
|
|
1387
|
-
declare const SperateDot: React.ForwardRefExoticComponent<Omit<SperateDotProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1388
|
-
|
|
1389
795
|
/**
|
|
1390
796
|
* Props for the SquarePen1 icon component
|
|
1391
797
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -1458,4 +864,4 @@ interface XProps extends React.SVGProps<SVGSVGElement> {
|
|
|
1458
864
|
*/
|
|
1459
865
|
declare const X: React.ForwardRefExoticComponent<Omit<XProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1460
866
|
|
|
1461
|
-
export {
|
|
867
|
+
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, IconsaxAttachCircleBold, type IconsaxAttachCircleBoldProps, IconsaxPenBrushBold, type IconsaxPenBrushBoldProps, IconsaxVideoCameraBold, type IconsaxVideoCameraBoldProps, IconsaxWord, type IconsaxWordProps, InfoCircleBold, type InfoCircleBoldProps, Legal, type LegalProps, LikeBold, type LikeBoldProps, Line, type LineProps, LinkSquare, type LinkSquareProps, List, ListEnd, type ListEndProps, ListOrdered, type ListOrderedProps, type ListProps, ListTodo, type ListTodoProps, MagickPotion, type MagickPotionProps, MagickoCheck, type MagickoCheckProps, Marketing, type MarketingProps, MessageEdit, type MessageEditProps, Network, type NetworkProps, PA, type PAProps, Signature, type SignatureProps, SquarePen1, type SquarePen1Props, Strikethrough, type StrikethroughProps, Video, type VideoProps, X, type XProps };
|