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 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 BookmarkFilled icon component
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 BookmarkFilledProps extends React.SVGProps<SVGSVGElement> {
97
+ interface ChevronDownProps extends React.SVGProps<SVGSVGElement> {
116
98
  size?: number | string;
117
99
  }
118
100
  /**
119
- * BookmarkFilled icon component
101
+ * ChevronDown icon component
120
102
  * @example
121
103
  * ```tsx
122
- * import { BookmarkFilled } from 'magick-icons';
104
+ * import { ChevronDown } from 'magick-icons';
123
105
  *
124
- * <BookmarkFilled size={24} className="text-blue-500" strokeWidth={2} />
106
+ * <ChevronDown size={24} className="text-blue-500" strokeWidth={2} />
125
107
  * ```
126
108
  */
127
- declare const BookmarkFilled: React.ForwardRefExoticComponent<Omit<BookmarkFilledProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
109
+ declare const ChevronDown: React.ForwardRefExoticComponent<Omit<ChevronDownProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
128
110
 
129
111
  /**
130
- * Props for the Calendar icon component
112
+ * Props for the ChevronLeft icon component
131
113
  * @property {number | string} [size] - Size of the icon (default: 24)
132
114
  */
133
- interface CalendarProps extends React.SVGProps<SVGSVGElement> {
115
+ interface ChevronLeftProps extends React.SVGProps<SVGSVGElement> {
134
116
  size?: number | string;
135
117
  }
136
118
  /**
137
- * Calendar icon component
119
+ * ChevronLeft icon component
138
120
  * @example
139
121
  * ```tsx
140
- * import { Calendar } from 'magick-icons';
122
+ * import { ChevronLeft } from 'magick-icons';
141
123
  *
142
- * <Calendar size={24} className="text-blue-500" strokeWidth={2} />
124
+ * <ChevronLeft size={24} className="text-blue-500" strokeWidth={2} />
143
125
  * ```
144
126
  */
145
- declare const Calendar: React.ForwardRefExoticComponent<Omit<CalendarProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
127
+ declare const ChevronLeft: React.ForwardRefExoticComponent<Omit<ChevronLeftProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
146
128
 
147
129
  /**
148
- * Props for the ChatFullScreen icon component
130
+ * Props for the ChevronRight icon component
149
131
  * @property {number | string} [size] - Size of the icon (default: 24)
150
132
  */
151
- interface ChatFullScreenProps extends React.SVGProps<SVGSVGElement> {
133
+ interface ChevronRightProps extends React.SVGProps<SVGSVGElement> {
152
134
  size?: number | string;
153
135
  }
154
136
  /**
155
- * ChatFullScreen icon component
137
+ * ChevronRight icon component
156
138
  * @example
157
139
  * ```tsx
158
- * import { ChatFullScreen } from 'magick-icons';
140
+ * import { ChevronRight } from 'magick-icons';
159
141
  *
160
- * <ChatFullScreen size={24} className="text-blue-500" strokeWidth={2} />
142
+ * <ChevronRight size={24} className="text-blue-500" strokeWidth={2} />
161
143
  * ```
162
144
  */
163
- declare const ChatFullScreen: React.ForwardRefExoticComponent<Omit<ChatFullScreenProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
145
+ declare const ChevronRight: React.ForwardRefExoticComponent<Omit<ChevronRightProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
164
146
 
165
147
  /**
166
- * Props for the ChatMaximize icon component
148
+ * Props for the ChevronUp icon component
167
149
  * @property {number | string} [size] - Size of the icon (default: 24)
168
150
  */
169
- interface ChatMaximizeProps extends React.SVGProps<SVGSVGElement> {
151
+ interface ChevronUpProps extends React.SVGProps<SVGSVGElement> {
170
152
  size?: number | string;
171
153
  }
172
154
  /**
173
- * ChatMaximize icon component
155
+ * ChevronUp icon component
174
156
  * @example
175
157
  * ```tsx
176
- * import { ChatMaximize } from 'magick-icons';
158
+ * import { ChevronUp } from 'magick-icons';
177
159
  *
178
- * <ChatMaximize size={24} className="text-blue-500" strokeWidth={2} />
160
+ * <ChevronUp size={24} className="text-blue-500" strokeWidth={2} />
179
161
  * ```
180
162
  */
181
- declare const ChatMaximize: React.ForwardRefExoticComponent<Omit<ChatMaximizeProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
163
+ declare const ChevronUp: React.ForwardRefExoticComponent<Omit<ChevronUpProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
182
164
 
183
165
  /**
184
- * Props for the ChatMinimize icon component
166
+ * Props for the ChevronsUpDown icon component
185
167
  * @property {number | string} [size] - Size of the icon (default: 24)
186
168
  */
187
- interface ChatMinimizeProps extends React.SVGProps<SVGSVGElement> {
169
+ interface ChevronsUpDownProps extends React.SVGProps<SVGSVGElement> {
188
170
  size?: number | string;
189
171
  }
190
172
  /**
191
- * ChatMinimize icon component
173
+ * ChevronsUpDown icon component
192
174
  * @example
193
175
  * ```tsx
194
- * import { ChatMinimize } from 'magick-icons';
176
+ * import { ChevronsUpDown } from 'magick-icons';
195
177
  *
196
- * <ChatMinimize size={24} className="text-blue-500" strokeWidth={2} />
178
+ * <ChevronsUpDown size={24} className="text-blue-500" strokeWidth={2} />
197
179
  * ```
198
180
  */
199
- declare const ChatMinimize: React.ForwardRefExoticComponent<Omit<ChatMinimizeProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
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 Excel icon component
274
+ * Props for the Enter icon component
311
275
  * @property {number | string} [size] - Size of the icon (default: 24)
312
276
  */
313
- interface ExcelProps extends React.SVGProps<SVGSVGElement> {
277
+ interface EnterProps extends React.SVGProps<SVGSVGElement> {
314
278
  size?: number | string;
315
279
  }
316
280
  /**
317
- * Excel icon component
281
+ * Enter icon component
318
282
  * @example
319
283
  * ```tsx
320
- * import { Excel } from 'magick-icons';
284
+ * import { Enter } from 'magick-icons';
321
285
  *
322
- * <Excel size={24} className="text-blue-500" strokeWidth={2} />
286
+ * <Enter size={24} className="text-blue-500" strokeWidth={2} />
323
287
  * ```
324
288
  */
325
- declare const Excel: React.ForwardRefExoticComponent<Omit<ExcelProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
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 GeneralMagicko icon component
382
+ * Props for the GripVertical icon component
455
383
  * @property {number | string} [size] - Size of the icon (default: 24)
456
384
  */
457
- interface GeneralMagickoProps extends React.SVGProps<SVGSVGElement> {
385
+ interface GripVerticalProps extends React.SVGProps<SVGSVGElement> {
458
386
  size?: number | string;
459
387
  }
460
388
  /**
461
- * GeneralMagicko icon component
389
+ * GripVertical icon component
462
390
  * @example
463
391
  * ```tsx
464
- * import { GeneralMagicko } from 'magick-icons';
392
+ * import { GripVertical } from 'magick-icons';
465
393
  *
466
- * <GeneralMagicko size={24} className="text-blue-500" strokeWidth={2} />
394
+ * <GripVertical size={24} className="text-blue-500" strokeWidth={2} />
467
395
  * ```
468
396
  */
469
- declare const GeneralMagicko: React.ForwardRefExoticComponent<Omit<GeneralMagickoProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
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 Hr icon component
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 Icon3square1Props extends React.SVGProps<SVGSVGElement> {
421
+ interface HrSystemProps extends React.SVGProps<SVGSVGElement> {
530
422
  size?: number | string;
531
423
  }
532
424
  /**
533
- * Icon3square1 icon component
425
+ * HrSystem icon component
534
426
  * @example
535
427
  * ```tsx
536
- * import { Icon3square1 } from 'magick-icons';
428
+ * import { HrSystem } from 'magick-icons';
537
429
  *
538
- * <Icon3square1 size={24} className="text-blue-500" strokeWidth={2} />
430
+ * <HrSystem size={24} className="text-blue-500" strokeWidth={2} />
539
431
  * ```
540
432
  */
541
- declare const Icon3square1: React.ForwardRefExoticComponent<Omit<Icon3square1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
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 InProgress icon component
490
+ * Props for the IconsaxWord icon component
599
491
  * @property {number | string} [size] - Size of the icon (default: 24)
600
492
  */
601
- interface InProgressProps extends React.SVGProps<SVGSVGElement> {
493
+ interface IconsaxWordProps extends React.SVGProps<SVGSVGElement> {
602
494
  size?: number | string;
603
495
  }
604
496
  /**
605
- * InProgress icon component
497
+ * IconsaxWord icon component
606
498
  * @example
607
499
  * ```tsx
608
- * import { InProgress } from 'magick-icons';
500
+ * import { IconsaxWord } from 'magick-icons';
609
501
  *
610
- * <InProgress size={24} className="text-blue-500" strokeWidth={2} />
502
+ * <IconsaxWord size={24} className="text-blue-500" strokeWidth={2} />
611
503
  * ```
612
504
  */
613
- declare const InProgress: React.ForwardRefExoticComponent<Omit<InProgressProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
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 MagickPotion icon component
598
+ * Props for the List icon component
689
599
  * @property {number | string} [size] - Size of the icon (default: 24)
690
600
  */
691
- interface MagickPotionProps extends React.SVGProps<SVGSVGElement> {
601
+ interface ListProps extends React.SVGProps<SVGSVGElement> {
692
602
  size?: number | string;
693
603
  }
694
604
  /**
695
- * MagickPotion icon component
605
+ * List icon component
696
606
  * @example
697
607
  * ```tsx
698
- * import { MagickPotion } from 'magick-icons';
608
+ * import { List } from 'magick-icons';
699
609
  *
700
- * <MagickPotion size={24} className="text-blue-500" strokeWidth={2} />
610
+ * <List size={24} className="text-blue-500" strokeWidth={2} />
701
611
  * ```
702
612
  */
703
- declare const MagickPotion: React.ForwardRefExoticComponent<Omit<MagickPotionProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
613
+ declare const List: React.ForwardRefExoticComponent<Omit<ListProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
704
614
 
705
615
  /**
706
- * Props for the Marketing icon component
616
+ * Props for the ListEnd icon component
707
617
  * @property {number | string} [size] - Size of the icon (default: 24)
708
618
  */
709
- interface MarketingProps extends React.SVGProps<SVGSVGElement> {
619
+ interface ListEndProps extends React.SVGProps<SVGSVGElement> {
710
620
  size?: number | string;
711
621
  }
712
622
  /**
713
- * Marketing icon component
623
+ * ListEnd icon component
714
624
  * @example
715
625
  * ```tsx
716
- * import { Marketing } from 'magick-icons';
626
+ * import { ListEnd } from 'magick-icons';
717
627
  *
718
- * <Marketing size={24} className="text-blue-500" strokeWidth={2} />
628
+ * <ListEnd size={24} className="text-blue-500" strokeWidth={2} />
719
629
  * ```
720
630
  */
721
- declare const Marketing: React.ForwardRefExoticComponent<Omit<MarketingProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
631
+ declare const ListEnd: React.ForwardRefExoticComponent<Omit<ListEndProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
722
632
 
723
633
  /**
724
- * Props for the MessageEdit icon component
634
+ * Props for the ListOrdered icon component
725
635
  * @property {number | string} [size] - Size of the icon (default: 24)
726
636
  */
727
- interface MessageEditProps extends React.SVGProps<SVGSVGElement> {
637
+ interface ListOrderedProps extends React.SVGProps<SVGSVGElement> {
728
638
  size?: number | string;
729
639
  }
730
640
  /**
731
- * MessageEdit icon component
641
+ * ListOrdered icon component
732
642
  * @example
733
643
  * ```tsx
734
- * import { MessageEdit } from 'magick-icons';
644
+ * import { ListOrdered } from 'magick-icons';
735
645
  *
736
- * <MessageEdit size={24} className="text-blue-500" strokeWidth={2} />
646
+ * <ListOrdered size={24} className="text-blue-500" strokeWidth={2} />
737
647
  * ```
738
648
  */
739
- declare const MessageEdit: React.ForwardRefExoticComponent<Omit<MessageEditProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
649
+ declare const ListOrdered: React.ForwardRefExoticComponent<Omit<ListOrderedProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
740
650
 
741
651
  /**
742
- * Props for the Network icon component
652
+ * Props for the ListTodo icon component
743
653
  * @property {number | string} [size] - Size of the icon (default: 24)
744
654
  */
745
- interface NetworkProps extends React.SVGProps<SVGSVGElement> {
655
+ interface ListTodoProps extends React.SVGProps<SVGSVGElement> {
746
656
  size?: number | string;
747
657
  }
748
658
  /**
749
- * Network icon component
659
+ * ListTodo icon component
750
660
  * @example
751
661
  * ```tsx
752
- * import { Network } from 'magick-icons';
662
+ * import { ListTodo } from 'magick-icons';
753
663
  *
754
- * <Network size={24} className="text-blue-500" strokeWidth={2} />
664
+ * <ListTodo size={24} className="text-blue-500" strokeWidth={2} />
755
665
  * ```
756
666
  */
757
- declare const Network: React.ForwardRefExoticComponent<Omit<NetworkProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
667
+ declare const ListTodo: React.ForwardRefExoticComponent<Omit<ListTodoProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
758
668
 
759
669
  /**
760
- * Props for the NotiDot icon component
670
+ * Props for the MagickPotion icon component
761
671
  * @property {number | string} [size] - Size of the icon (default: 24)
762
672
  */
763
- interface NotiDotProps extends React.SVGProps<SVGSVGElement> {
673
+ interface MagickPotionProps extends React.SVGProps<SVGSVGElement> {
764
674
  size?: number | string;
765
675
  }
766
676
  /**
767
- * NotiDot icon component
677
+ * MagickPotion icon component
768
678
  * @example
769
679
  * ```tsx
770
- * import { NotiDot } from 'magick-icons';
680
+ * import { MagickPotion } from 'magick-icons';
771
681
  *
772
- * <NotiDot size={24} className="text-blue-500" strokeWidth={2} />
682
+ * <MagickPotion size={24} className="text-blue-500" strokeWidth={2} />
773
683
  * ```
774
684
  */
775
- declare const NotiDot: React.ForwardRefExoticComponent<Omit<NotiDotProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
685
+ declare const MagickPotion: React.ForwardRefExoticComponent<Omit<MagickPotionProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
776
686
 
777
687
  /**
778
- * Props for the PA icon component
688
+ * Props for the MagickoCheck icon component
779
689
  * @property {number | string} [size] - Size of the icon (default: 24)
780
690
  */
781
- interface PAProps extends React.SVGProps<SVGSVGElement> {
691
+ interface MagickoCheckProps extends React.SVGProps<SVGSVGElement> {
782
692
  size?: number | string;
783
693
  }
784
694
  /**
785
- * PA icon component
695
+ * MagickoCheck icon component
786
696
  * @example
787
697
  * ```tsx
788
- * import { PA } from 'magick-icons';
698
+ * import { MagickoCheck } from 'magick-icons';
789
699
  *
790
- * <PA size={24} className="text-blue-500" strokeWidth={2} />
700
+ * <MagickoCheck size={24} className="text-blue-500" strokeWidth={2} />
791
701
  * ```
792
702
  */
793
- declare const PA: React.ForwardRefExoticComponent<Omit<PAProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
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 PauseSquare icon component
724
+ * Props for the MessageEdit icon component
797
725
  * @property {number | string} [size] - Size of the icon (default: 24)
798
726
  */
799
- interface PauseSquareProps extends React.SVGProps<SVGSVGElement> {
727
+ interface MessageEditProps extends React.SVGProps<SVGSVGElement> {
800
728
  size?: number | string;
801
729
  }
802
730
  /**
803
- * PauseSquare icon component
731
+ * MessageEdit icon component
804
732
  * @example
805
733
  * ```tsx
806
- * import { PauseSquare } from 'magick-icons';
734
+ * import { MessageEdit } from 'magick-icons';
807
735
  *
808
- * <PauseSquare size={24} className="text-blue-500" strokeWidth={2} />
736
+ * <MessageEdit size={24} className="text-blue-500" strokeWidth={2} />
809
737
  * ```
810
738
  */
811
- declare const PauseSquare: React.ForwardRefExoticComponent<Omit<PauseSquareProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
739
+ declare const MessageEdit: React.ForwardRefExoticComponent<Omit<MessageEditProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
812
740
 
813
741
  /**
814
- * Props for the Pdf icon component
742
+ * Props for the Network icon component
815
743
  * @property {number | string} [size] - Size of the icon (default: 24)
816
744
  */
817
- interface PdfProps extends React.SVGProps<SVGSVGElement> {
745
+ interface NetworkProps extends React.SVGProps<SVGSVGElement> {
818
746
  size?: number | string;
819
747
  }
820
748
  /**
821
- * Pdf icon component
749
+ * Network icon component
822
750
  * @example
823
751
  * ```tsx
824
- * import { Pdf } from 'magick-icons';
752
+ * import { Network } from 'magick-icons';
825
753
  *
826
- * <Pdf size={24} className="text-blue-500" strokeWidth={2} />
754
+ * <Network size={24} className="text-blue-500" strokeWidth={2} />
827
755
  * ```
828
756
  */
829
- declare const Pdf: React.ForwardRefExoticComponent<Omit<PdfProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
757
+ declare const Network: React.ForwardRefExoticComponent<Omit<NetworkProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
830
758
 
831
759
  /**
832
- * Props for the PlayFilled icon component
760
+ * Props for the PA icon component
833
761
  * @property {number | string} [size] - Size of the icon (default: 24)
834
762
  */
835
- interface PlayFilledProps extends React.SVGProps<SVGSVGElement> {
763
+ interface PAProps extends React.SVGProps<SVGSVGElement> {
836
764
  size?: number | string;
837
765
  }
838
766
  /**
839
- * PlayFilled icon component
767
+ * PA icon component
840
768
  * @example
841
769
  * ```tsx
842
- * import { PlayFilled } from 'magick-icons';
770
+ * import { PA } from 'magick-icons';
843
771
  *
844
- * <PlayFilled size={24} className="text-blue-500" strokeWidth={2} />
772
+ * <PA size={24} className="text-blue-500" strokeWidth={2} />
845
773
  * ```
846
774
  */
847
- declare const PlayFilled: React.ForwardRefExoticComponent<Omit<PlayFilledProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
775
+ declare const PA: React.ForwardRefExoticComponent<Omit<PAProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
848
776
 
849
777
  /**
850
- * Props for the SperateDot icon component
778
+ * Props for the Signature icon component
851
779
  * @property {number | string} [size] - Size of the icon (default: 24)
852
780
  */
853
- interface SperateDotProps extends React.SVGProps<SVGSVGElement> {
781
+ interface SignatureProps extends React.SVGProps<SVGSVGElement> {
854
782
  size?: number | string;
855
783
  }
856
784
  /**
857
- * SperateDot icon component
785
+ * Signature icon component
858
786
  * @example
859
787
  * ```tsx
860
- * import { SperateDot } from 'magick-icons';
788
+ * import { Signature } from 'magick-icons';
861
789
  *
862
- * <SperateDot size={24} className="text-blue-500" strokeWidth={2} />
790
+ * <Signature size={24} className="text-blue-500" strokeWidth={2} />
863
791
  * ```
864
792
  */
865
- declare const SperateDot: React.ForwardRefExoticComponent<Omit<SperateDotProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
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
- export { Add11, type Add11Props, AiIcon, type AiIconProps, ArchiveBold, type ArchiveBoldProps, ArrowDownBold, type ArrowDownBoldProps, ArrowRightBold, type ArrowRightBoldProps, ArrowUpBold, type ArrowUpBoldProps, BookmarkFilled, type BookmarkFilledProps, Calendar, type CalendarProps, ChatFullScreen, type ChatFullScreenProps, ChatMaximize, type ChatMaximizeProps, ChatMinimize, type ChatMinimizeProps, CircleCheckFill, type CircleCheckFillProps, CloseCircle1, type CloseCircle1Props, DislikeBold, type DislikeBoldProps, Doc, type DocProps, DocumentTextBold, type DocumentTextBoldProps, DocumentUpload, type DocumentUploadProps, Excel, type ExcelProps, File, type FileProps, Finance, type FinanceProps, Flag, type FlagProps, Folder2, type Folder2Props, FolderDrawerOpen, FolderDrawerOpenAddBold, type FolderDrawerOpenAddBoldProps, type FolderDrawerOpenProps, FolderOpenBold, type FolderOpenBoldProps, GeneralMagicko, type GeneralMagickoProps, HeartBold, type HeartBoldProps, Hr, type HrProps, Icon3dcube1, type Icon3dcube1Props, Icon3square1, type Icon3square1Props, IconsaxAttachCircleBold, type IconsaxAttachCircleBoldProps, IconsaxPenBrushBold, type IconsaxPenBrushBoldProps, IconsaxVideoCameraBold, type IconsaxVideoCameraBoldProps, InProgress, type InProgressProps, InfoCircleBold, type InfoCircleBoldProps, Legal, type LegalProps, LikeBold, type LikeBoldProps, LinkSquare, type LinkSquareProps, MagickPotion, type MagickPotionProps, Marketing, type MarketingProps, MessageEdit, type MessageEditProps, Network, type NetworkProps, NotiDot, type NotiDotProps, PA, type PAProps, PauseSquare, type PauseSquareProps, Pdf, type PdfProps, PlayFilled, type PlayFilledProps, SperateDot, type SperateDotProps, SquarePen1, type SquarePen1Props, Video, type VideoProps };
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 };