magick-icons 0.1.189 → 0.1.191
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 +229 -175
- package/index.d.ts +229 -175
- package/index.js +274 -266
- package/index.js.map +1 -1
- package/index.mjs +280 -275
- package/index.mjs.map +1 -1
- package/package.json +1 -1
- package/README.md +0 -116
package/index.d.ts
CHANGED
|
@@ -1,23 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
|
|
3
|
-
/**
|
|
4
|
-
* Props for the AiIcon icon component
|
|
5
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
6
|
-
*/
|
|
7
|
-
interface AiIconProps extends React.SVGProps<SVGSVGElement> {
|
|
8
|
-
size?: number | string;
|
|
9
|
-
}
|
|
10
|
-
/**
|
|
11
|
-
* AiIcon icon component
|
|
12
|
-
* @example
|
|
13
|
-
* ```tsx
|
|
14
|
-
* import { AiIcon } from 'magick-icons';
|
|
15
|
-
*
|
|
16
|
-
* <AiIcon size={24} className="text-blue-500" strokeWidth={2} />
|
|
17
|
-
* ```
|
|
18
|
-
*/
|
|
19
|
-
declare const AiIcon: React.ForwardRefExoticComponent<Omit<AiIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
20
|
-
|
|
21
3
|
/**
|
|
22
4
|
* Props for the ArchiveBold icon component
|
|
23
5
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -90,24 +72,6 @@ interface ArrowUpBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
|
90
72
|
*/
|
|
91
73
|
declare const ArrowUpBold: React.ForwardRefExoticComponent<Omit<ArrowUpBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
92
74
|
|
|
93
|
-
/**
|
|
94
|
-
* Props for the BookmarkFilled icon component
|
|
95
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
96
|
-
*/
|
|
97
|
-
interface BookmarkFilledProps extends React.SVGProps<SVGSVGElement> {
|
|
98
|
-
size?: number | string;
|
|
99
|
-
}
|
|
100
|
-
/**
|
|
101
|
-
* BookmarkFilled icon component
|
|
102
|
-
* @example
|
|
103
|
-
* ```tsx
|
|
104
|
-
* import { BookmarkFilled } from 'magick-icons';
|
|
105
|
-
*
|
|
106
|
-
* <BookmarkFilled size={24} className="text-blue-500" strokeWidth={2} />
|
|
107
|
-
* ```
|
|
108
|
-
*/
|
|
109
|
-
declare const BookmarkFilled: React.ForwardRefExoticComponent<Omit<BookmarkFilledProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
110
|
-
|
|
111
75
|
/**
|
|
112
76
|
* Props for the Calendar icon component
|
|
113
77
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -126,60 +90,6 @@ interface CalendarProps extends React.SVGProps<SVGSVGElement> {
|
|
|
126
90
|
*/
|
|
127
91
|
declare const Calendar: React.ForwardRefExoticComponent<Omit<CalendarProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
128
92
|
|
|
129
|
-
/**
|
|
130
|
-
* Props for the ChatFullScreen icon component
|
|
131
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
132
|
-
*/
|
|
133
|
-
interface ChatFullScreenProps extends React.SVGProps<SVGSVGElement> {
|
|
134
|
-
size?: number | string;
|
|
135
|
-
}
|
|
136
|
-
/**
|
|
137
|
-
* ChatFullScreen icon component
|
|
138
|
-
* @example
|
|
139
|
-
* ```tsx
|
|
140
|
-
* import { ChatFullScreen } from 'magick-icons';
|
|
141
|
-
*
|
|
142
|
-
* <ChatFullScreen size={24} className="text-blue-500" strokeWidth={2} />
|
|
143
|
-
* ```
|
|
144
|
-
*/
|
|
145
|
-
declare const ChatFullScreen: React.ForwardRefExoticComponent<Omit<ChatFullScreenProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
146
|
-
|
|
147
|
-
/**
|
|
148
|
-
* Props for the ChatMaximize icon component
|
|
149
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
150
|
-
*/
|
|
151
|
-
interface ChatMaximizeProps extends React.SVGProps<SVGSVGElement> {
|
|
152
|
-
size?: number | string;
|
|
153
|
-
}
|
|
154
|
-
/**
|
|
155
|
-
* ChatMaximize icon component
|
|
156
|
-
* @example
|
|
157
|
-
* ```tsx
|
|
158
|
-
* import { ChatMaximize } from 'magick-icons';
|
|
159
|
-
*
|
|
160
|
-
* <ChatMaximize size={24} className="text-blue-500" strokeWidth={2} />
|
|
161
|
-
* ```
|
|
162
|
-
*/
|
|
163
|
-
declare const ChatMaximize: React.ForwardRefExoticComponent<Omit<ChatMaximizeProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
164
|
-
|
|
165
|
-
/**
|
|
166
|
-
* Props for the ChatMinimize icon component
|
|
167
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
168
|
-
*/
|
|
169
|
-
interface ChatMinimizeProps extends React.SVGProps<SVGSVGElement> {
|
|
170
|
-
size?: number | string;
|
|
171
|
-
}
|
|
172
|
-
/**
|
|
173
|
-
* ChatMinimize icon component
|
|
174
|
-
* @example
|
|
175
|
-
* ```tsx
|
|
176
|
-
* import { ChatMinimize } from 'magick-icons';
|
|
177
|
-
*
|
|
178
|
-
* <ChatMinimize size={24} className="text-blue-500" strokeWidth={2} />
|
|
179
|
-
* ```
|
|
180
|
-
*/
|
|
181
|
-
declare const ChatMinimize: React.ForwardRefExoticComponent<Omit<ChatMinimizeProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
182
|
-
|
|
183
93
|
/**
|
|
184
94
|
* Props for the ChevronDown icon component
|
|
185
95
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -324,24 +234,6 @@ interface DislikeBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
|
324
234
|
*/
|
|
325
235
|
declare const DislikeBold: React.ForwardRefExoticComponent<Omit<DislikeBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
326
236
|
|
|
327
|
-
/**
|
|
328
|
-
* Props for the Doc icon component
|
|
329
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
330
|
-
*/
|
|
331
|
-
interface DocProps extends React.SVGProps<SVGSVGElement> {
|
|
332
|
-
size?: number | string;
|
|
333
|
-
}
|
|
334
|
-
/**
|
|
335
|
-
* Doc icon component
|
|
336
|
-
* @example
|
|
337
|
-
* ```tsx
|
|
338
|
-
* import { Doc } from 'magick-icons';
|
|
339
|
-
*
|
|
340
|
-
* <Doc size={24} className="text-blue-500" strokeWidth={2} />
|
|
341
|
-
* ```
|
|
342
|
-
*/
|
|
343
|
-
declare const Doc: React.ForwardRefExoticComponent<Omit<DocProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
344
|
-
|
|
345
237
|
/**
|
|
346
238
|
* Props for the DocumentTextBold icon component
|
|
347
239
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -397,76 +289,94 @@ interface EnterProps extends React.SVGProps<SVGSVGElement> {
|
|
|
397
289
|
declare const Enter: React.ForwardRefExoticComponent<Omit<EnterProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
398
290
|
|
|
399
291
|
/**
|
|
400
|
-
* Props for the
|
|
292
|
+
* Props for the Finance icon component
|
|
293
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
294
|
+
*/
|
|
295
|
+
interface FinanceProps extends React.SVGProps<SVGSVGElement> {
|
|
296
|
+
size?: number | string;
|
|
297
|
+
}
|
|
298
|
+
/**
|
|
299
|
+
* Finance icon component
|
|
300
|
+
* @example
|
|
301
|
+
* ```tsx
|
|
302
|
+
* import { Finance } from 'magick-icons';
|
|
303
|
+
*
|
|
304
|
+
* <Finance size={24} className="text-blue-500" strokeWidth={2} />
|
|
305
|
+
* ```
|
|
306
|
+
*/
|
|
307
|
+
declare const Finance: React.ForwardRefExoticComponent<Omit<FinanceProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
308
|
+
|
|
309
|
+
/**
|
|
310
|
+
* Props for the Flag icon component
|
|
401
311
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
402
312
|
*/
|
|
403
|
-
interface
|
|
313
|
+
interface FlagProps extends React.SVGProps<SVGSVGElement> {
|
|
404
314
|
size?: number | string;
|
|
405
315
|
}
|
|
406
316
|
/**
|
|
407
|
-
*
|
|
317
|
+
* Flag icon component
|
|
408
318
|
* @example
|
|
409
319
|
* ```tsx
|
|
410
|
-
* import {
|
|
320
|
+
* import { Flag } from 'magick-icons';
|
|
411
321
|
*
|
|
412
|
-
* <
|
|
322
|
+
* <Flag size={24} className="text-blue-500" strokeWidth={2} />
|
|
413
323
|
* ```
|
|
414
324
|
*/
|
|
415
|
-
declare const
|
|
325
|
+
declare const Flag: React.ForwardRefExoticComponent<Omit<FlagProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
416
326
|
|
|
417
327
|
/**
|
|
418
|
-
* Props for the
|
|
328
|
+
* Props for the Folder2 icon component
|
|
419
329
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
420
330
|
*/
|
|
421
|
-
interface
|
|
331
|
+
interface Folder2Props extends React.SVGProps<SVGSVGElement> {
|
|
422
332
|
size?: number | string;
|
|
423
333
|
}
|
|
424
334
|
/**
|
|
425
|
-
*
|
|
335
|
+
* Folder2 icon component
|
|
426
336
|
* @example
|
|
427
337
|
* ```tsx
|
|
428
|
-
* import {
|
|
338
|
+
* import { Folder2 } from 'magick-icons';
|
|
429
339
|
*
|
|
430
|
-
* <
|
|
340
|
+
* <Folder2 size={24} className="text-blue-500" strokeWidth={2} />
|
|
431
341
|
* ```
|
|
432
342
|
*/
|
|
433
|
-
declare const
|
|
343
|
+
declare const Folder2: React.ForwardRefExoticComponent<Omit<Folder2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
434
344
|
|
|
435
345
|
/**
|
|
436
|
-
* Props for the
|
|
346
|
+
* Props for the FolderDrawerOpen icon component
|
|
437
347
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
438
348
|
*/
|
|
439
|
-
interface
|
|
349
|
+
interface FolderDrawerOpenProps extends React.SVGProps<SVGSVGElement> {
|
|
440
350
|
size?: number | string;
|
|
441
351
|
}
|
|
442
352
|
/**
|
|
443
|
-
*
|
|
353
|
+
* FolderDrawerOpen icon component
|
|
444
354
|
* @example
|
|
445
355
|
* ```tsx
|
|
446
|
-
* import {
|
|
356
|
+
* import { FolderDrawerOpen } from 'magick-icons';
|
|
447
357
|
*
|
|
448
|
-
* <
|
|
358
|
+
* <FolderDrawerOpen size={24} className="text-blue-500" strokeWidth={2} />
|
|
449
359
|
* ```
|
|
450
360
|
*/
|
|
451
|
-
declare const
|
|
361
|
+
declare const FolderDrawerOpen: React.ForwardRefExoticComponent<Omit<FolderDrawerOpenProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
452
362
|
|
|
453
363
|
/**
|
|
454
|
-
* Props for the
|
|
364
|
+
* Props for the FolderOpenBold icon component
|
|
455
365
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
456
366
|
*/
|
|
457
|
-
interface
|
|
367
|
+
interface FolderOpenBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
458
368
|
size?: number | string;
|
|
459
369
|
}
|
|
460
370
|
/**
|
|
461
|
-
*
|
|
371
|
+
* FolderOpenBold icon component
|
|
462
372
|
* @example
|
|
463
373
|
* ```tsx
|
|
464
|
-
* import {
|
|
374
|
+
* import { FolderOpenBold } from 'magick-icons';
|
|
465
375
|
*
|
|
466
|
-
* <
|
|
376
|
+
* <FolderOpenBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
467
377
|
* ```
|
|
468
378
|
*/
|
|
469
|
-
declare const
|
|
379
|
+
declare const FolderOpenBold: React.ForwardRefExoticComponent<Omit<FolderOpenBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
470
380
|
|
|
471
381
|
/**
|
|
472
382
|
* Props for the GripVertical icon component
|
|
@@ -487,22 +397,22 @@ interface GripVerticalProps extends React.SVGProps<SVGSVGElement> {
|
|
|
487
397
|
declare const GripVertical: React.ForwardRefExoticComponent<Omit<GripVerticalProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
488
398
|
|
|
489
399
|
/**
|
|
490
|
-
* Props for the
|
|
400
|
+
* Props for the HeartBold icon component
|
|
491
401
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
492
402
|
*/
|
|
493
|
-
interface
|
|
403
|
+
interface HeartBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
494
404
|
size?: number | string;
|
|
495
405
|
}
|
|
496
406
|
/**
|
|
497
|
-
*
|
|
407
|
+
* HeartBold icon component
|
|
498
408
|
* @example
|
|
499
409
|
* ```tsx
|
|
500
|
-
* import {
|
|
410
|
+
* import { HeartBold } from 'magick-icons';
|
|
501
411
|
*
|
|
502
|
-
* <
|
|
412
|
+
* <HeartBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
503
413
|
* ```
|
|
504
414
|
*/
|
|
505
|
-
declare const
|
|
415
|
+
declare const HeartBold: React.ForwardRefExoticComponent<Omit<HeartBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
506
416
|
|
|
507
417
|
/**
|
|
508
418
|
* Props for the HrSystem icon component
|
|
@@ -522,6 +432,60 @@ interface HrSystemProps extends React.SVGProps<SVGSVGElement> {
|
|
|
522
432
|
*/
|
|
523
433
|
declare const HrSystem: React.ForwardRefExoticComponent<Omit<HrSystemProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
524
434
|
|
|
435
|
+
/**
|
|
436
|
+
* Props for the IconsaxAttachCircleBold icon component
|
|
437
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
438
|
+
*/
|
|
439
|
+
interface IconsaxAttachCircleBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
440
|
+
size?: number | string;
|
|
441
|
+
}
|
|
442
|
+
/**
|
|
443
|
+
* IconsaxAttachCircleBold icon component
|
|
444
|
+
* @example
|
|
445
|
+
* ```tsx
|
|
446
|
+
* import { IconsaxAttachCircleBold } from 'magick-icons';
|
|
447
|
+
*
|
|
448
|
+
* <IconsaxAttachCircleBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
449
|
+
* ```
|
|
450
|
+
*/
|
|
451
|
+
declare const IconsaxAttachCircleBold: React.ForwardRefExoticComponent<Omit<IconsaxAttachCircleBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
452
|
+
|
|
453
|
+
/**
|
|
454
|
+
* Props for the IconsaxPenBrushBold icon component
|
|
455
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
456
|
+
*/
|
|
457
|
+
interface IconsaxPenBrushBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
458
|
+
size?: number | string;
|
|
459
|
+
}
|
|
460
|
+
/**
|
|
461
|
+
* IconsaxPenBrushBold icon component
|
|
462
|
+
* @example
|
|
463
|
+
* ```tsx
|
|
464
|
+
* import { IconsaxPenBrushBold } from 'magick-icons';
|
|
465
|
+
*
|
|
466
|
+
* <IconsaxPenBrushBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
467
|
+
* ```
|
|
468
|
+
*/
|
|
469
|
+
declare const IconsaxPenBrushBold: React.ForwardRefExoticComponent<Omit<IconsaxPenBrushBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
470
|
+
|
|
471
|
+
/**
|
|
472
|
+
* Props for the IconsaxVideoCameraBold icon component
|
|
473
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
474
|
+
*/
|
|
475
|
+
interface IconsaxVideoCameraBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
476
|
+
size?: number | string;
|
|
477
|
+
}
|
|
478
|
+
/**
|
|
479
|
+
* IconsaxVideoCameraBold icon component
|
|
480
|
+
* @example
|
|
481
|
+
* ```tsx
|
|
482
|
+
* import { IconsaxVideoCameraBold } from 'magick-icons';
|
|
483
|
+
*
|
|
484
|
+
* <IconsaxVideoCameraBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
485
|
+
* ```
|
|
486
|
+
*/
|
|
487
|
+
declare const IconsaxVideoCameraBold: React.ForwardRefExoticComponent<Omit<IconsaxVideoCameraBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
488
|
+
|
|
525
489
|
/**
|
|
526
490
|
* Props for the IconsaxWord icon component
|
|
527
491
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -541,22 +505,58 @@ interface IconsaxWordProps extends React.SVGProps<SVGSVGElement> {
|
|
|
541
505
|
declare const IconsaxWord: React.ForwardRefExoticComponent<Omit<IconsaxWordProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
542
506
|
|
|
543
507
|
/**
|
|
544
|
-
* Props for the
|
|
508
|
+
* Props for the InfoCircleBold icon component
|
|
509
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
510
|
+
*/
|
|
511
|
+
interface InfoCircleBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
512
|
+
size?: number | string;
|
|
513
|
+
}
|
|
514
|
+
/**
|
|
515
|
+
* InfoCircleBold icon component
|
|
516
|
+
* @example
|
|
517
|
+
* ```tsx
|
|
518
|
+
* import { InfoCircleBold } from 'magick-icons';
|
|
519
|
+
*
|
|
520
|
+
* <InfoCircleBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
521
|
+
* ```
|
|
522
|
+
*/
|
|
523
|
+
declare const InfoCircleBold: React.ForwardRefExoticComponent<Omit<InfoCircleBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
524
|
+
|
|
525
|
+
/**
|
|
526
|
+
* Props for the Legal icon component
|
|
527
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
528
|
+
*/
|
|
529
|
+
interface LegalProps extends React.SVGProps<SVGSVGElement> {
|
|
530
|
+
size?: number | string;
|
|
531
|
+
}
|
|
532
|
+
/**
|
|
533
|
+
* Legal icon component
|
|
534
|
+
* @example
|
|
535
|
+
* ```tsx
|
|
536
|
+
* import { Legal } from 'magick-icons';
|
|
537
|
+
*
|
|
538
|
+
* <Legal size={24} className="text-blue-500" strokeWidth={2} />
|
|
539
|
+
* ```
|
|
540
|
+
*/
|
|
541
|
+
declare const Legal: React.ForwardRefExoticComponent<Omit<LegalProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
542
|
+
|
|
543
|
+
/**
|
|
544
|
+
* Props for the LikeBold icon component
|
|
545
545
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
546
546
|
*/
|
|
547
|
-
interface
|
|
547
|
+
interface LikeBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
548
548
|
size?: number | string;
|
|
549
549
|
}
|
|
550
550
|
/**
|
|
551
|
-
*
|
|
551
|
+
* LikeBold icon component
|
|
552
552
|
* @example
|
|
553
553
|
* ```tsx
|
|
554
|
-
* import {
|
|
554
|
+
* import { LikeBold } from 'magick-icons';
|
|
555
555
|
*
|
|
556
|
-
* <
|
|
556
|
+
* <LikeBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
557
557
|
* ```
|
|
558
558
|
*/
|
|
559
|
-
declare const
|
|
559
|
+
declare const LikeBold: React.ForwardRefExoticComponent<Omit<LikeBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
560
560
|
|
|
561
561
|
/**
|
|
562
562
|
* Props for the Line icon component
|
|
@@ -576,6 +576,24 @@ interface LineProps extends React.SVGProps<SVGSVGElement> {
|
|
|
576
576
|
*/
|
|
577
577
|
declare const Line: React.ForwardRefExoticComponent<Omit<LineProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
578
578
|
|
|
579
|
+
/**
|
|
580
|
+
* Props for the LinkSquare icon component
|
|
581
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
582
|
+
*/
|
|
583
|
+
interface LinkSquareProps extends React.SVGProps<SVGSVGElement> {
|
|
584
|
+
size?: number | string;
|
|
585
|
+
}
|
|
586
|
+
/**
|
|
587
|
+
* LinkSquare icon component
|
|
588
|
+
* @example
|
|
589
|
+
* ```tsx
|
|
590
|
+
* import { LinkSquare } from 'magick-icons';
|
|
591
|
+
*
|
|
592
|
+
* <LinkSquare size={24} className="text-blue-500" strokeWidth={2} />
|
|
593
|
+
* ```
|
|
594
|
+
*/
|
|
595
|
+
declare const LinkSquare: React.ForwardRefExoticComponent<Omit<LinkSquareProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
596
|
+
|
|
579
597
|
/**
|
|
580
598
|
* Props for the List icon component
|
|
581
599
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -648,6 +666,24 @@ interface ListTodoProps extends React.SVGProps<SVGSVGElement> {
|
|
|
648
666
|
*/
|
|
649
667
|
declare const ListTodo: React.ForwardRefExoticComponent<Omit<ListTodoProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
650
668
|
|
|
669
|
+
/**
|
|
670
|
+
* Props for the MagickPotion icon component
|
|
671
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
672
|
+
*/
|
|
673
|
+
interface MagickPotionProps extends React.SVGProps<SVGSVGElement> {
|
|
674
|
+
size?: number | string;
|
|
675
|
+
}
|
|
676
|
+
/**
|
|
677
|
+
* MagickPotion icon component
|
|
678
|
+
* @example
|
|
679
|
+
* ```tsx
|
|
680
|
+
* import { MagickPotion } from 'magick-icons';
|
|
681
|
+
*
|
|
682
|
+
* <MagickPotion size={24} className="text-blue-500" strokeWidth={2} />
|
|
683
|
+
* ```
|
|
684
|
+
*/
|
|
685
|
+
declare const MagickPotion: React.ForwardRefExoticComponent<Omit<MagickPotionProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
686
|
+
|
|
651
687
|
/**
|
|
652
688
|
* Props for the MagickoCheck icon component
|
|
653
689
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -667,76 +703,76 @@ interface MagickoCheckProps extends React.SVGProps<SVGSVGElement> {
|
|
|
667
703
|
declare const MagickoCheck: React.ForwardRefExoticComponent<Omit<MagickoCheckProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
668
704
|
|
|
669
705
|
/**
|
|
670
|
-
* Props for the
|
|
706
|
+
* Props for the Marketing icon component
|
|
671
707
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
672
708
|
*/
|
|
673
|
-
interface
|
|
709
|
+
interface MarketingProps extends React.SVGProps<SVGSVGElement> {
|
|
674
710
|
size?: number | string;
|
|
675
711
|
}
|
|
676
712
|
/**
|
|
677
|
-
*
|
|
713
|
+
* Marketing icon component
|
|
678
714
|
* @example
|
|
679
715
|
* ```tsx
|
|
680
|
-
* import {
|
|
716
|
+
* import { Marketing } from 'magick-icons';
|
|
681
717
|
*
|
|
682
|
-
* <
|
|
718
|
+
* <Marketing size={24} className="text-blue-500" strokeWidth={2} />
|
|
683
719
|
* ```
|
|
684
720
|
*/
|
|
685
|
-
declare const
|
|
721
|
+
declare const Marketing: React.ForwardRefExoticComponent<Omit<MarketingProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
686
722
|
|
|
687
723
|
/**
|
|
688
|
-
* Props for the
|
|
724
|
+
* Props for the MessageEdit icon component
|
|
689
725
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
690
726
|
*/
|
|
691
|
-
interface
|
|
727
|
+
interface MessageEditProps extends React.SVGProps<SVGSVGElement> {
|
|
692
728
|
size?: number | string;
|
|
693
729
|
}
|
|
694
730
|
/**
|
|
695
|
-
*
|
|
731
|
+
* MessageEdit icon component
|
|
696
732
|
* @example
|
|
697
733
|
* ```tsx
|
|
698
|
-
* import {
|
|
734
|
+
* import { MessageEdit } from 'magick-icons';
|
|
699
735
|
*
|
|
700
|
-
* <
|
|
736
|
+
* <MessageEdit size={24} className="text-blue-500" strokeWidth={2} />
|
|
701
737
|
* ```
|
|
702
738
|
*/
|
|
703
|
-
declare const
|
|
739
|
+
declare const MessageEdit: React.ForwardRefExoticComponent<Omit<MessageEditProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
704
740
|
|
|
705
741
|
/**
|
|
706
|
-
* Props for the
|
|
742
|
+
* Props for the Network icon component
|
|
707
743
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
708
744
|
*/
|
|
709
|
-
interface
|
|
745
|
+
interface NetworkProps extends React.SVGProps<SVGSVGElement> {
|
|
710
746
|
size?: number | string;
|
|
711
747
|
}
|
|
712
748
|
/**
|
|
713
|
-
*
|
|
749
|
+
* Network icon component
|
|
714
750
|
* @example
|
|
715
751
|
* ```tsx
|
|
716
|
-
* import {
|
|
752
|
+
* import { Network } from 'magick-icons';
|
|
717
753
|
*
|
|
718
|
-
* <
|
|
754
|
+
* <Network size={24} className="text-blue-500" strokeWidth={2} />
|
|
719
755
|
* ```
|
|
720
756
|
*/
|
|
721
|
-
declare const
|
|
757
|
+
declare const Network: React.ForwardRefExoticComponent<Omit<NetworkProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
722
758
|
|
|
723
759
|
/**
|
|
724
|
-
* Props for the
|
|
760
|
+
* Props for the PA icon component
|
|
725
761
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
726
762
|
*/
|
|
727
|
-
interface
|
|
763
|
+
interface PAProps extends React.SVGProps<SVGSVGElement> {
|
|
728
764
|
size?: number | string;
|
|
729
765
|
}
|
|
730
766
|
/**
|
|
731
|
-
*
|
|
767
|
+
* PA icon component
|
|
732
768
|
* @example
|
|
733
769
|
* ```tsx
|
|
734
|
-
* import {
|
|
770
|
+
* import { PA } from 'magick-icons';
|
|
735
771
|
*
|
|
736
|
-
* <
|
|
772
|
+
* <PA size={24} className="text-blue-500" strokeWidth={2} />
|
|
737
773
|
* ```
|
|
738
774
|
*/
|
|
739
|
-
declare const
|
|
775
|
+
declare const PA: React.ForwardRefExoticComponent<Omit<PAProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
740
776
|
|
|
741
777
|
/**
|
|
742
778
|
* Props for the Signature icon component
|
|
@@ -757,22 +793,22 @@ interface SignatureProps extends React.SVGProps<SVGSVGElement> {
|
|
|
757
793
|
declare const Signature: React.ForwardRefExoticComponent<Omit<SignatureProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
758
794
|
|
|
759
795
|
/**
|
|
760
|
-
* Props for the
|
|
796
|
+
* Props for the SquarePen1 icon component
|
|
761
797
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
762
798
|
*/
|
|
763
|
-
interface
|
|
799
|
+
interface SquarePen1Props extends React.SVGProps<SVGSVGElement> {
|
|
764
800
|
size?: number | string;
|
|
765
801
|
}
|
|
766
802
|
/**
|
|
767
|
-
*
|
|
803
|
+
* SquarePen1 icon component
|
|
768
804
|
* @example
|
|
769
805
|
* ```tsx
|
|
770
|
-
* import {
|
|
806
|
+
* import { SquarePen1 } from 'magick-icons';
|
|
771
807
|
*
|
|
772
|
-
* <
|
|
808
|
+
* <SquarePen1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
773
809
|
* ```
|
|
774
810
|
*/
|
|
775
|
-
declare const
|
|
811
|
+
declare const SquarePen1: React.ForwardRefExoticComponent<Omit<SquarePen1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
776
812
|
|
|
777
813
|
/**
|
|
778
814
|
* Props for the Strikethrough icon component
|
|
@@ -792,6 +828,24 @@ interface StrikethroughProps extends React.SVGProps<SVGSVGElement> {
|
|
|
792
828
|
*/
|
|
793
829
|
declare const Strikethrough: React.ForwardRefExoticComponent<Omit<StrikethroughProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
794
830
|
|
|
831
|
+
/**
|
|
832
|
+
* Props for the Video icon component
|
|
833
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
834
|
+
*/
|
|
835
|
+
interface VideoProps extends React.SVGProps<SVGSVGElement> {
|
|
836
|
+
size?: number | string;
|
|
837
|
+
}
|
|
838
|
+
/**
|
|
839
|
+
* Video icon component
|
|
840
|
+
* @example
|
|
841
|
+
* ```tsx
|
|
842
|
+
* import { Video } from 'magick-icons';
|
|
843
|
+
*
|
|
844
|
+
* <Video size={24} className="text-blue-500" strokeWidth={2} />
|
|
845
|
+
* ```
|
|
846
|
+
*/
|
|
847
|
+
declare const Video: React.ForwardRefExoticComponent<Omit<VideoProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
848
|
+
|
|
795
849
|
/**
|
|
796
850
|
* Props for the X icon component
|
|
797
851
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -810,4 +864,4 @@ interface XProps extends React.SVGProps<SVGSVGElement> {
|
|
|
810
864
|
*/
|
|
811
865
|
declare const X: React.ForwardRefExoticComponent<Omit<XProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
812
866
|
|
|
813
|
-
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 };
|