magick-icons 0.1.162 → 0.1.164
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 +205 -241
- package/index.d.ts +205 -241
- package/index.js +243 -318
- package/index.js.map +1 -1
- package/index.mjs +256 -329
- package/index.mjs.map +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1,41 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
|
|
3
|
-
/**
|
|
4
|
-
* Props for the Add11 icon component
|
|
5
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
6
|
-
*/
|
|
7
|
-
interface Add11Props extends React.SVGProps<SVGSVGElement> {
|
|
8
|
-
size?: number | string;
|
|
9
|
-
}
|
|
10
|
-
/**
|
|
11
|
-
* Add11 icon component
|
|
12
|
-
* @example
|
|
13
|
-
* ```tsx
|
|
14
|
-
* import { Add11 } from 'magick-icons';
|
|
15
|
-
*
|
|
16
|
-
* <Add11 size={24} className="text-blue-500" strokeWidth={2} />
|
|
17
|
-
* ```
|
|
18
|
-
*/
|
|
19
|
-
declare const Add11: React.ForwardRefExoticComponent<Omit<Add11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
20
|
-
|
|
21
|
-
/**
|
|
22
|
-
* Props for the AiIcon icon component
|
|
23
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
24
|
-
*/
|
|
25
|
-
interface AiIconProps extends React.SVGProps<SVGSVGElement> {
|
|
26
|
-
size?: number | string;
|
|
27
|
-
}
|
|
28
|
-
/**
|
|
29
|
-
* AiIcon icon component
|
|
30
|
-
* @example
|
|
31
|
-
* ```tsx
|
|
32
|
-
* import { AiIcon } from 'magick-icons';
|
|
33
|
-
*
|
|
34
|
-
* <AiIcon size={24} className="text-blue-500" strokeWidth={2} />
|
|
35
|
-
* ```
|
|
36
|
-
*/
|
|
37
|
-
declare const AiIcon: React.ForwardRefExoticComponent<Omit<AiIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
38
|
-
|
|
39
3
|
/**
|
|
40
4
|
* Props for the ArchiveBold icon component
|
|
41
5
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -109,94 +73,112 @@ interface ArrowUpBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
|
109
73
|
declare const ArrowUpBold: React.ForwardRefExoticComponent<Omit<ArrowUpBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
110
74
|
|
|
111
75
|
/**
|
|
112
|
-
* Props for the
|
|
76
|
+
* Props for the Calendar icon component
|
|
77
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
78
|
+
*/
|
|
79
|
+
interface CalendarProps extends React.SVGProps<SVGSVGElement> {
|
|
80
|
+
size?: number | string;
|
|
81
|
+
}
|
|
82
|
+
/**
|
|
83
|
+
* Calendar icon component
|
|
84
|
+
* @example
|
|
85
|
+
* ```tsx
|
|
86
|
+
* import { Calendar } from 'magick-icons';
|
|
87
|
+
*
|
|
88
|
+
* <Calendar size={24} className="text-blue-500" strokeWidth={2} />
|
|
89
|
+
* ```
|
|
90
|
+
*/
|
|
91
|
+
declare const Calendar: React.ForwardRefExoticComponent<Omit<CalendarProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
92
|
+
|
|
93
|
+
/**
|
|
94
|
+
* Props for the ChevronDown icon component
|
|
113
95
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
114
96
|
*/
|
|
115
|
-
interface
|
|
97
|
+
interface ChevronDownProps extends React.SVGProps<SVGSVGElement> {
|
|
116
98
|
size?: number | string;
|
|
117
99
|
}
|
|
118
100
|
/**
|
|
119
|
-
*
|
|
101
|
+
* ChevronDown icon component
|
|
120
102
|
* @example
|
|
121
103
|
* ```tsx
|
|
122
|
-
* import {
|
|
104
|
+
* import { ChevronDown } from 'magick-icons';
|
|
123
105
|
*
|
|
124
|
-
* <
|
|
106
|
+
* <ChevronDown size={24} className="text-blue-500" strokeWidth={2} />
|
|
125
107
|
* ```
|
|
126
108
|
*/
|
|
127
|
-
declare const
|
|
109
|
+
declare const ChevronDown: React.ForwardRefExoticComponent<Omit<ChevronDownProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
128
110
|
|
|
129
111
|
/**
|
|
130
|
-
* Props for the
|
|
112
|
+
* Props for the ChevronLeft icon component
|
|
131
113
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
132
114
|
*/
|
|
133
|
-
interface
|
|
115
|
+
interface ChevronLeftProps extends React.SVGProps<SVGSVGElement> {
|
|
134
116
|
size?: number | string;
|
|
135
117
|
}
|
|
136
118
|
/**
|
|
137
|
-
*
|
|
119
|
+
* ChevronLeft icon component
|
|
138
120
|
* @example
|
|
139
121
|
* ```tsx
|
|
140
|
-
* import {
|
|
122
|
+
* import { ChevronLeft } from 'magick-icons';
|
|
141
123
|
*
|
|
142
|
-
* <
|
|
124
|
+
* <ChevronLeft size={24} className="text-blue-500" strokeWidth={2} />
|
|
143
125
|
* ```
|
|
144
126
|
*/
|
|
145
|
-
declare const
|
|
127
|
+
declare const ChevronLeft: React.ForwardRefExoticComponent<Omit<ChevronLeftProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
146
128
|
|
|
147
129
|
/**
|
|
148
|
-
* Props for the
|
|
130
|
+
* Props for the ChevronRight icon component
|
|
149
131
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
150
132
|
*/
|
|
151
|
-
interface
|
|
133
|
+
interface ChevronRightProps extends React.SVGProps<SVGSVGElement> {
|
|
152
134
|
size?: number | string;
|
|
153
135
|
}
|
|
154
136
|
/**
|
|
155
|
-
*
|
|
137
|
+
* ChevronRight icon component
|
|
156
138
|
* @example
|
|
157
139
|
* ```tsx
|
|
158
|
-
* import {
|
|
140
|
+
* import { ChevronRight } from 'magick-icons';
|
|
159
141
|
*
|
|
160
|
-
* <
|
|
142
|
+
* <ChevronRight size={24} className="text-blue-500" strokeWidth={2} />
|
|
161
143
|
* ```
|
|
162
144
|
*/
|
|
163
|
-
declare const
|
|
145
|
+
declare const ChevronRight: React.ForwardRefExoticComponent<Omit<ChevronRightProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
164
146
|
|
|
165
147
|
/**
|
|
166
|
-
* Props for the
|
|
148
|
+
* Props for the ChevronUp icon component
|
|
167
149
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
168
150
|
*/
|
|
169
|
-
interface
|
|
151
|
+
interface ChevronUpProps extends React.SVGProps<SVGSVGElement> {
|
|
170
152
|
size?: number | string;
|
|
171
153
|
}
|
|
172
154
|
/**
|
|
173
|
-
*
|
|
155
|
+
* ChevronUp icon component
|
|
174
156
|
* @example
|
|
175
157
|
* ```tsx
|
|
176
|
-
* import {
|
|
158
|
+
* import { ChevronUp } from 'magick-icons';
|
|
177
159
|
*
|
|
178
|
-
* <
|
|
160
|
+
* <ChevronUp size={24} className="text-blue-500" strokeWidth={2} />
|
|
179
161
|
* ```
|
|
180
162
|
*/
|
|
181
|
-
declare const
|
|
163
|
+
declare const ChevronUp: React.ForwardRefExoticComponent<Omit<ChevronUpProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
182
164
|
|
|
183
165
|
/**
|
|
184
|
-
* Props for the
|
|
166
|
+
* Props for the ChevronsUpDown icon component
|
|
185
167
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
186
168
|
*/
|
|
187
|
-
interface
|
|
169
|
+
interface ChevronsUpDownProps extends React.SVGProps<SVGSVGElement> {
|
|
188
170
|
size?: number | string;
|
|
189
171
|
}
|
|
190
172
|
/**
|
|
191
|
-
*
|
|
173
|
+
* ChevronsUpDown icon component
|
|
192
174
|
* @example
|
|
193
175
|
* ```tsx
|
|
194
|
-
* import {
|
|
176
|
+
* import { ChevronsUpDown } from 'magick-icons';
|
|
195
177
|
*
|
|
196
|
-
* <
|
|
178
|
+
* <ChevronsUpDown size={24} className="text-blue-500" strokeWidth={2} />
|
|
197
179
|
* ```
|
|
198
180
|
*/
|
|
199
|
-
declare const
|
|
181
|
+
declare const ChevronsUpDown: React.ForwardRefExoticComponent<Omit<ChevronsUpDownProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
200
182
|
|
|
201
183
|
/**
|
|
202
184
|
* Props for the CircleCheckFill icon component
|
|
@@ -252,24 +234,6 @@ interface DislikeBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
|
252
234
|
*/
|
|
253
235
|
declare const DislikeBold: React.ForwardRefExoticComponent<Omit<DislikeBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
254
236
|
|
|
255
|
-
/**
|
|
256
|
-
* Props for the Doc icon component
|
|
257
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
258
|
-
*/
|
|
259
|
-
interface DocProps extends React.SVGProps<SVGSVGElement> {
|
|
260
|
-
size?: number | string;
|
|
261
|
-
}
|
|
262
|
-
/**
|
|
263
|
-
* Doc icon component
|
|
264
|
-
* @example
|
|
265
|
-
* ```tsx
|
|
266
|
-
* import { Doc } from 'magick-icons';
|
|
267
|
-
*
|
|
268
|
-
* <Doc size={24} className="text-blue-500" strokeWidth={2} />
|
|
269
|
-
* ```
|
|
270
|
-
*/
|
|
271
|
-
declare const Doc: React.ForwardRefExoticComponent<Omit<DocProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
272
|
-
|
|
273
237
|
/**
|
|
274
238
|
* Props for the DocumentTextBold icon component
|
|
275
239
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -307,40 +271,22 @@ interface DocumentUploadProps extends React.SVGProps<SVGSVGElement> {
|
|
|
307
271
|
declare const DocumentUpload: React.ForwardRefExoticComponent<Omit<DocumentUploadProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
308
272
|
|
|
309
273
|
/**
|
|
310
|
-
* Props for the
|
|
274
|
+
* Props for the Enter icon component
|
|
311
275
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
312
276
|
*/
|
|
313
|
-
interface
|
|
277
|
+
interface EnterProps extends React.SVGProps<SVGSVGElement> {
|
|
314
278
|
size?: number | string;
|
|
315
279
|
}
|
|
316
280
|
/**
|
|
317
|
-
*
|
|
281
|
+
* Enter icon component
|
|
318
282
|
* @example
|
|
319
283
|
* ```tsx
|
|
320
|
-
* import {
|
|
284
|
+
* import { Enter } from 'magick-icons';
|
|
321
285
|
*
|
|
322
|
-
* <
|
|
286
|
+
* <Enter size={24} className="text-blue-500" strokeWidth={2} />
|
|
323
287
|
* ```
|
|
324
288
|
*/
|
|
325
|
-
declare const
|
|
326
|
-
|
|
327
|
-
/**
|
|
328
|
-
* Props for the File icon component
|
|
329
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
330
|
-
*/
|
|
331
|
-
interface FileProps extends React.SVGProps<SVGSVGElement> {
|
|
332
|
-
size?: number | string;
|
|
333
|
-
}
|
|
334
|
-
/**
|
|
335
|
-
* File icon component
|
|
336
|
-
* @example
|
|
337
|
-
* ```tsx
|
|
338
|
-
* import { File } from 'magick-icons';
|
|
339
|
-
*
|
|
340
|
-
* <File size={24} className="text-blue-500" strokeWidth={2} />
|
|
341
|
-
* ```
|
|
342
|
-
*/
|
|
343
|
-
declare const File: React.ForwardRefExoticComponent<Omit<FileProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
289
|
+
declare const Enter: React.ForwardRefExoticComponent<Omit<EnterProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
344
290
|
|
|
345
291
|
/**
|
|
346
292
|
* Props for the Finance icon component
|
|
@@ -414,24 +360,6 @@ interface FolderDrawerOpenProps extends React.SVGProps<SVGSVGElement> {
|
|
|
414
360
|
*/
|
|
415
361
|
declare const FolderDrawerOpen: React.ForwardRefExoticComponent<Omit<FolderDrawerOpenProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
416
362
|
|
|
417
|
-
/**
|
|
418
|
-
* Props for the FolderDrawerOpenAddBold icon component
|
|
419
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
420
|
-
*/
|
|
421
|
-
interface FolderDrawerOpenAddBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
422
|
-
size?: number | string;
|
|
423
|
-
}
|
|
424
|
-
/**
|
|
425
|
-
* FolderDrawerOpenAddBold icon component
|
|
426
|
-
* @example
|
|
427
|
-
* ```tsx
|
|
428
|
-
* import { FolderDrawerOpenAddBold } from 'magick-icons';
|
|
429
|
-
*
|
|
430
|
-
* <FolderDrawerOpenAddBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
431
|
-
* ```
|
|
432
|
-
*/
|
|
433
|
-
declare const FolderDrawerOpenAddBold: React.ForwardRefExoticComponent<Omit<FolderDrawerOpenAddBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
434
|
-
|
|
435
363
|
/**
|
|
436
364
|
* Props for the FolderOpenBold icon component
|
|
437
365
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -451,22 +379,22 @@ interface FolderOpenBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
|
451
379
|
declare const FolderOpenBold: React.ForwardRefExoticComponent<Omit<FolderOpenBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
452
380
|
|
|
453
381
|
/**
|
|
454
|
-
* Props for the
|
|
382
|
+
* Props for the GripVertical icon component
|
|
455
383
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
456
384
|
*/
|
|
457
|
-
interface
|
|
385
|
+
interface GripVerticalProps extends React.SVGProps<SVGSVGElement> {
|
|
458
386
|
size?: number | string;
|
|
459
387
|
}
|
|
460
388
|
/**
|
|
461
|
-
*
|
|
389
|
+
* GripVertical icon component
|
|
462
390
|
* @example
|
|
463
391
|
* ```tsx
|
|
464
|
-
* import {
|
|
392
|
+
* import { GripVertical } from 'magick-icons';
|
|
465
393
|
*
|
|
466
|
-
* <
|
|
394
|
+
* <GripVertical size={24} className="text-blue-500" strokeWidth={2} />
|
|
467
395
|
* ```
|
|
468
396
|
*/
|
|
469
|
-
declare const
|
|
397
|
+
declare const GripVertical: React.ForwardRefExoticComponent<Omit<GripVerticalProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
470
398
|
|
|
471
399
|
/**
|
|
472
400
|
* Props for the HeartBold icon component
|
|
@@ -487,58 +415,22 @@ interface HeartBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
|
487
415
|
declare const HeartBold: React.ForwardRefExoticComponent<Omit<HeartBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
488
416
|
|
|
489
417
|
/**
|
|
490
|
-
* Props for the
|
|
491
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
492
|
-
*/
|
|
493
|
-
interface HrProps extends React.SVGProps<SVGSVGElement> {
|
|
494
|
-
size?: number | string;
|
|
495
|
-
}
|
|
496
|
-
/**
|
|
497
|
-
* Hr icon component
|
|
498
|
-
* @example
|
|
499
|
-
* ```tsx
|
|
500
|
-
* import { Hr } from 'magick-icons';
|
|
501
|
-
*
|
|
502
|
-
* <Hr size={24} className="text-blue-500" strokeWidth={2} />
|
|
503
|
-
* ```
|
|
504
|
-
*/
|
|
505
|
-
declare const Hr: React.ForwardRefExoticComponent<Omit<HrProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
506
|
-
|
|
507
|
-
/**
|
|
508
|
-
* Props for the Icon3dcube1 icon component
|
|
509
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
510
|
-
*/
|
|
511
|
-
interface Icon3dcube1Props extends React.SVGProps<SVGSVGElement> {
|
|
512
|
-
size?: number | string;
|
|
513
|
-
}
|
|
514
|
-
/**
|
|
515
|
-
* Icon3dcube1 icon component
|
|
516
|
-
* @example
|
|
517
|
-
* ```tsx
|
|
518
|
-
* import { Icon3dcube1 } from 'magick-icons';
|
|
519
|
-
*
|
|
520
|
-
* <Icon3dcube1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
521
|
-
* ```
|
|
522
|
-
*/
|
|
523
|
-
declare const Icon3dcube1: React.ForwardRefExoticComponent<Omit<Icon3dcube1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
524
|
-
|
|
525
|
-
/**
|
|
526
|
-
* Props for the Icon3square1 icon component
|
|
418
|
+
* Props for the HrSystem icon component
|
|
527
419
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
528
420
|
*/
|
|
529
|
-
interface
|
|
421
|
+
interface HrSystemProps extends React.SVGProps<SVGSVGElement> {
|
|
530
422
|
size?: number | string;
|
|
531
423
|
}
|
|
532
424
|
/**
|
|
533
|
-
*
|
|
425
|
+
* HrSystem icon component
|
|
534
426
|
* @example
|
|
535
427
|
* ```tsx
|
|
536
|
-
* import {
|
|
428
|
+
* import { HrSystem } from 'magick-icons';
|
|
537
429
|
*
|
|
538
|
-
* <
|
|
430
|
+
* <HrSystem size={24} className="text-blue-500" strokeWidth={2} />
|
|
539
431
|
* ```
|
|
540
432
|
*/
|
|
541
|
-
declare const
|
|
433
|
+
declare const HrSystem: React.ForwardRefExoticComponent<Omit<HrSystemProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
542
434
|
|
|
543
435
|
/**
|
|
544
436
|
* Props for the IconsaxAttachCircleBold icon component
|
|
@@ -595,22 +487,22 @@ interface IconsaxVideoCameraBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
|
595
487
|
declare const IconsaxVideoCameraBold: React.ForwardRefExoticComponent<Omit<IconsaxVideoCameraBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
596
488
|
|
|
597
489
|
/**
|
|
598
|
-
* Props for the
|
|
490
|
+
* Props for the IconsaxWord icon component
|
|
599
491
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
600
492
|
*/
|
|
601
|
-
interface
|
|
493
|
+
interface IconsaxWordProps extends React.SVGProps<SVGSVGElement> {
|
|
602
494
|
size?: number | string;
|
|
603
495
|
}
|
|
604
496
|
/**
|
|
605
|
-
*
|
|
497
|
+
* IconsaxWord icon component
|
|
606
498
|
* @example
|
|
607
499
|
* ```tsx
|
|
608
|
-
* import {
|
|
500
|
+
* import { IconsaxWord } from 'magick-icons';
|
|
609
501
|
*
|
|
610
|
-
* <
|
|
502
|
+
* <IconsaxWord size={24} className="text-blue-500" strokeWidth={2} />
|
|
611
503
|
* ```
|
|
612
504
|
*/
|
|
613
|
-
declare const
|
|
505
|
+
declare const IconsaxWord: React.ForwardRefExoticComponent<Omit<IconsaxWordProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
614
506
|
|
|
615
507
|
/**
|
|
616
508
|
* Props for the InfoCircleBold icon component
|
|
@@ -666,6 +558,24 @@ interface LikeBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
|
666
558
|
*/
|
|
667
559
|
declare const LikeBold: React.ForwardRefExoticComponent<Omit<LikeBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
668
560
|
|
|
561
|
+
/**
|
|
562
|
+
* Props for the Line icon component
|
|
563
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
564
|
+
*/
|
|
565
|
+
interface LineProps extends React.SVGProps<SVGSVGElement> {
|
|
566
|
+
size?: number | string;
|
|
567
|
+
}
|
|
568
|
+
/**
|
|
569
|
+
* Line icon component
|
|
570
|
+
* @example
|
|
571
|
+
* ```tsx
|
|
572
|
+
* import { Line } from 'magick-icons';
|
|
573
|
+
*
|
|
574
|
+
* <Line size={24} className="text-blue-500" strokeWidth={2} />
|
|
575
|
+
* ```
|
|
576
|
+
*/
|
|
577
|
+
declare const Line: React.ForwardRefExoticComponent<Omit<LineProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
578
|
+
|
|
669
579
|
/**
|
|
670
580
|
* Props for the LinkSquare icon component
|
|
671
581
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -685,184 +595,202 @@ interface LinkSquareProps extends React.SVGProps<SVGSVGElement> {
|
|
|
685
595
|
declare const LinkSquare: React.ForwardRefExoticComponent<Omit<LinkSquareProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
686
596
|
|
|
687
597
|
/**
|
|
688
|
-
* Props for the
|
|
598
|
+
* Props for the List icon component
|
|
689
599
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
690
600
|
*/
|
|
691
|
-
interface
|
|
601
|
+
interface ListProps extends React.SVGProps<SVGSVGElement> {
|
|
692
602
|
size?: number | string;
|
|
693
603
|
}
|
|
694
604
|
/**
|
|
695
|
-
*
|
|
605
|
+
* List icon component
|
|
696
606
|
* @example
|
|
697
607
|
* ```tsx
|
|
698
|
-
* import {
|
|
608
|
+
* import { List } from 'magick-icons';
|
|
699
609
|
*
|
|
700
|
-
* <
|
|
610
|
+
* <List size={24} className="text-blue-500" strokeWidth={2} />
|
|
701
611
|
* ```
|
|
702
612
|
*/
|
|
703
|
-
declare const
|
|
613
|
+
declare const List: React.ForwardRefExoticComponent<Omit<ListProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
704
614
|
|
|
705
615
|
/**
|
|
706
|
-
* Props for the
|
|
616
|
+
* Props for the ListEnd icon component
|
|
707
617
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
708
618
|
*/
|
|
709
|
-
interface
|
|
619
|
+
interface ListEndProps extends React.SVGProps<SVGSVGElement> {
|
|
710
620
|
size?: number | string;
|
|
711
621
|
}
|
|
712
622
|
/**
|
|
713
|
-
*
|
|
623
|
+
* ListEnd icon component
|
|
714
624
|
* @example
|
|
715
625
|
* ```tsx
|
|
716
|
-
* import {
|
|
626
|
+
* import { ListEnd } from 'magick-icons';
|
|
717
627
|
*
|
|
718
|
-
* <
|
|
628
|
+
* <ListEnd size={24} className="text-blue-500" strokeWidth={2} />
|
|
719
629
|
* ```
|
|
720
630
|
*/
|
|
721
|
-
declare const
|
|
631
|
+
declare const ListEnd: React.ForwardRefExoticComponent<Omit<ListEndProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
722
632
|
|
|
723
633
|
/**
|
|
724
|
-
* Props for the
|
|
634
|
+
* Props for the ListOrdered icon component
|
|
725
635
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
726
636
|
*/
|
|
727
|
-
interface
|
|
637
|
+
interface ListOrderedProps extends React.SVGProps<SVGSVGElement> {
|
|
728
638
|
size?: number | string;
|
|
729
639
|
}
|
|
730
640
|
/**
|
|
731
|
-
*
|
|
641
|
+
* ListOrdered icon component
|
|
732
642
|
* @example
|
|
733
643
|
* ```tsx
|
|
734
|
-
* import {
|
|
644
|
+
* import { ListOrdered } from 'magick-icons';
|
|
735
645
|
*
|
|
736
|
-
* <
|
|
646
|
+
* <ListOrdered size={24} className="text-blue-500" strokeWidth={2} />
|
|
737
647
|
* ```
|
|
738
648
|
*/
|
|
739
|
-
declare const
|
|
649
|
+
declare const ListOrdered: React.ForwardRefExoticComponent<Omit<ListOrderedProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
740
650
|
|
|
741
651
|
/**
|
|
742
|
-
* Props for the
|
|
652
|
+
* Props for the ListTodo icon component
|
|
743
653
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
744
654
|
*/
|
|
745
|
-
interface
|
|
655
|
+
interface ListTodoProps extends React.SVGProps<SVGSVGElement> {
|
|
746
656
|
size?: number | string;
|
|
747
657
|
}
|
|
748
658
|
/**
|
|
749
|
-
*
|
|
659
|
+
* ListTodo icon component
|
|
750
660
|
* @example
|
|
751
661
|
* ```tsx
|
|
752
|
-
* import {
|
|
662
|
+
* import { ListTodo } from 'magick-icons';
|
|
753
663
|
*
|
|
754
|
-
* <
|
|
664
|
+
* <ListTodo size={24} className="text-blue-500" strokeWidth={2} />
|
|
755
665
|
* ```
|
|
756
666
|
*/
|
|
757
|
-
declare const
|
|
667
|
+
declare const ListTodo: React.ForwardRefExoticComponent<Omit<ListTodoProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
758
668
|
|
|
759
669
|
/**
|
|
760
|
-
* Props for the
|
|
670
|
+
* Props for the MagickPotion icon component
|
|
761
671
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
762
672
|
*/
|
|
763
|
-
interface
|
|
673
|
+
interface MagickPotionProps extends React.SVGProps<SVGSVGElement> {
|
|
764
674
|
size?: number | string;
|
|
765
675
|
}
|
|
766
676
|
/**
|
|
767
|
-
*
|
|
677
|
+
* MagickPotion icon component
|
|
768
678
|
* @example
|
|
769
679
|
* ```tsx
|
|
770
|
-
* import {
|
|
680
|
+
* import { MagickPotion } from 'magick-icons';
|
|
771
681
|
*
|
|
772
|
-
* <
|
|
682
|
+
* <MagickPotion size={24} className="text-blue-500" strokeWidth={2} />
|
|
773
683
|
* ```
|
|
774
684
|
*/
|
|
775
|
-
declare const
|
|
685
|
+
declare const MagickPotion: React.ForwardRefExoticComponent<Omit<MagickPotionProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
776
686
|
|
|
777
687
|
/**
|
|
778
|
-
* Props for the
|
|
688
|
+
* Props for the MagickoCheck icon component
|
|
779
689
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
780
690
|
*/
|
|
781
|
-
interface
|
|
691
|
+
interface MagickoCheckProps extends React.SVGProps<SVGSVGElement> {
|
|
782
692
|
size?: number | string;
|
|
783
693
|
}
|
|
784
694
|
/**
|
|
785
|
-
*
|
|
695
|
+
* MagickoCheck icon component
|
|
786
696
|
* @example
|
|
787
697
|
* ```tsx
|
|
788
|
-
* import {
|
|
698
|
+
* import { MagickoCheck } from 'magick-icons';
|
|
789
699
|
*
|
|
790
|
-
* <
|
|
700
|
+
* <MagickoCheck size={24} className="text-blue-500" strokeWidth={2} />
|
|
791
701
|
* ```
|
|
792
702
|
*/
|
|
793
|
-
declare const
|
|
703
|
+
declare const MagickoCheck: React.ForwardRefExoticComponent<Omit<MagickoCheckProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
704
|
+
|
|
705
|
+
/**
|
|
706
|
+
* Props for the Marketing icon component
|
|
707
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
708
|
+
*/
|
|
709
|
+
interface MarketingProps extends React.SVGProps<SVGSVGElement> {
|
|
710
|
+
size?: number | string;
|
|
711
|
+
}
|
|
712
|
+
/**
|
|
713
|
+
* Marketing icon component
|
|
714
|
+
* @example
|
|
715
|
+
* ```tsx
|
|
716
|
+
* import { Marketing } from 'magick-icons';
|
|
717
|
+
*
|
|
718
|
+
* <Marketing size={24} className="text-blue-500" strokeWidth={2} />
|
|
719
|
+
* ```
|
|
720
|
+
*/
|
|
721
|
+
declare const Marketing: React.ForwardRefExoticComponent<Omit<MarketingProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
794
722
|
|
|
795
723
|
/**
|
|
796
|
-
* Props for the
|
|
724
|
+
* Props for the MessageEdit icon component
|
|
797
725
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
798
726
|
*/
|
|
799
|
-
interface
|
|
727
|
+
interface MessageEditProps extends React.SVGProps<SVGSVGElement> {
|
|
800
728
|
size?: number | string;
|
|
801
729
|
}
|
|
802
730
|
/**
|
|
803
|
-
*
|
|
731
|
+
* MessageEdit icon component
|
|
804
732
|
* @example
|
|
805
733
|
* ```tsx
|
|
806
|
-
* import {
|
|
734
|
+
* import { MessageEdit } from 'magick-icons';
|
|
807
735
|
*
|
|
808
|
-
* <
|
|
736
|
+
* <MessageEdit size={24} className="text-blue-500" strokeWidth={2} />
|
|
809
737
|
* ```
|
|
810
738
|
*/
|
|
811
|
-
declare const
|
|
739
|
+
declare const MessageEdit: React.ForwardRefExoticComponent<Omit<MessageEditProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
812
740
|
|
|
813
741
|
/**
|
|
814
|
-
* Props for the
|
|
742
|
+
* Props for the Network icon component
|
|
815
743
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
816
744
|
*/
|
|
817
|
-
interface
|
|
745
|
+
interface NetworkProps extends React.SVGProps<SVGSVGElement> {
|
|
818
746
|
size?: number | string;
|
|
819
747
|
}
|
|
820
748
|
/**
|
|
821
|
-
*
|
|
749
|
+
* Network icon component
|
|
822
750
|
* @example
|
|
823
751
|
* ```tsx
|
|
824
|
-
* import {
|
|
752
|
+
* import { Network } from 'magick-icons';
|
|
825
753
|
*
|
|
826
|
-
* <
|
|
754
|
+
* <Network size={24} className="text-blue-500" strokeWidth={2} />
|
|
827
755
|
* ```
|
|
828
756
|
*/
|
|
829
|
-
declare const
|
|
757
|
+
declare const Network: React.ForwardRefExoticComponent<Omit<NetworkProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
830
758
|
|
|
831
759
|
/**
|
|
832
|
-
* Props for the
|
|
760
|
+
* Props for the PA icon component
|
|
833
761
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
834
762
|
*/
|
|
835
|
-
interface
|
|
763
|
+
interface PAProps extends React.SVGProps<SVGSVGElement> {
|
|
836
764
|
size?: number | string;
|
|
837
765
|
}
|
|
838
766
|
/**
|
|
839
|
-
*
|
|
767
|
+
* PA icon component
|
|
840
768
|
* @example
|
|
841
769
|
* ```tsx
|
|
842
|
-
* import {
|
|
770
|
+
* import { PA } from 'magick-icons';
|
|
843
771
|
*
|
|
844
|
-
* <
|
|
772
|
+
* <PA size={24} className="text-blue-500" strokeWidth={2} />
|
|
845
773
|
* ```
|
|
846
774
|
*/
|
|
847
|
-
declare const
|
|
775
|
+
declare const PA: React.ForwardRefExoticComponent<Omit<PAProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
848
776
|
|
|
849
777
|
/**
|
|
850
|
-
* Props for the
|
|
778
|
+
* Props for the Signature icon component
|
|
851
779
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
852
780
|
*/
|
|
853
|
-
interface
|
|
781
|
+
interface SignatureProps extends React.SVGProps<SVGSVGElement> {
|
|
854
782
|
size?: number | string;
|
|
855
783
|
}
|
|
856
784
|
/**
|
|
857
|
-
*
|
|
785
|
+
* Signature icon component
|
|
858
786
|
* @example
|
|
859
787
|
* ```tsx
|
|
860
|
-
* import {
|
|
788
|
+
* import { Signature } from 'magick-icons';
|
|
861
789
|
*
|
|
862
|
-
* <
|
|
790
|
+
* <Signature size={24} className="text-blue-500" strokeWidth={2} />
|
|
863
791
|
* ```
|
|
864
792
|
*/
|
|
865
|
-
declare const
|
|
793
|
+
declare const Signature: React.ForwardRefExoticComponent<Omit<SignatureProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
866
794
|
|
|
867
795
|
/**
|
|
868
796
|
* Props for the SquarePen1 icon component
|
|
@@ -882,6 +810,24 @@ interface SquarePen1Props extends React.SVGProps<SVGSVGElement> {
|
|
|
882
810
|
*/
|
|
883
811
|
declare const SquarePen1: React.ForwardRefExoticComponent<Omit<SquarePen1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
884
812
|
|
|
813
|
+
/**
|
|
814
|
+
* Props for the Strikethrough icon component
|
|
815
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
816
|
+
*/
|
|
817
|
+
interface StrikethroughProps extends React.SVGProps<SVGSVGElement> {
|
|
818
|
+
size?: number | string;
|
|
819
|
+
}
|
|
820
|
+
/**
|
|
821
|
+
* Strikethrough icon component
|
|
822
|
+
* @example
|
|
823
|
+
* ```tsx
|
|
824
|
+
* import { Strikethrough } from 'magick-icons';
|
|
825
|
+
*
|
|
826
|
+
* <Strikethrough size={24} className="text-blue-500" strokeWidth={2} />
|
|
827
|
+
* ```
|
|
828
|
+
*/
|
|
829
|
+
declare const Strikethrough: React.ForwardRefExoticComponent<Omit<StrikethroughProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
830
|
+
|
|
885
831
|
/**
|
|
886
832
|
* Props for the Video icon component
|
|
887
833
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -900,4 +846,22 @@ interface VideoProps extends React.SVGProps<SVGSVGElement> {
|
|
|
900
846
|
*/
|
|
901
847
|
declare const Video: React.ForwardRefExoticComponent<Omit<VideoProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
902
848
|
|
|
903
|
-
|
|
849
|
+
/**
|
|
850
|
+
* Props for the X icon component
|
|
851
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
852
|
+
*/
|
|
853
|
+
interface XProps extends React.SVGProps<SVGSVGElement> {
|
|
854
|
+
size?: number | string;
|
|
855
|
+
}
|
|
856
|
+
/**
|
|
857
|
+
* X icon component
|
|
858
|
+
* @example
|
|
859
|
+
* ```tsx
|
|
860
|
+
* import { X } from 'magick-icons';
|
|
861
|
+
*
|
|
862
|
+
* <X size={24} className="text-blue-500" strokeWidth={2} />
|
|
863
|
+
* ```
|
|
864
|
+
*/
|
|
865
|
+
declare const X: React.ForwardRefExoticComponent<Omit<XProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
866
|
+
|
|
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 };
|