magick-icons 0.1.163 → 0.1.165

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,23 +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
3
  /**
22
4
  * Props for the AiIcon icon component
23
5
  * @property {number | string} [size] - Size of the icon (default: 24)
@@ -198,6 +180,96 @@ interface ChatMinimizeProps extends React.SVGProps<SVGSVGElement> {
198
180
  */
199
181
  declare const ChatMinimize: React.ForwardRefExoticComponent<Omit<ChatMinimizeProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
200
182
 
183
+ /**
184
+ * Props for the ChevronDown icon component
185
+ * @property {number | string} [size] - Size of the icon (default: 24)
186
+ */
187
+ interface ChevronDownProps extends React.SVGProps<SVGSVGElement> {
188
+ size?: number | string;
189
+ }
190
+ /**
191
+ * ChevronDown icon component
192
+ * @example
193
+ * ```tsx
194
+ * import { ChevronDown } from 'magick-icons';
195
+ *
196
+ * <ChevronDown size={24} className="text-blue-500" strokeWidth={2} />
197
+ * ```
198
+ */
199
+ declare const ChevronDown: React.ForwardRefExoticComponent<Omit<ChevronDownProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
200
+
201
+ /**
202
+ * Props for the ChevronLeft icon component
203
+ * @property {number | string} [size] - Size of the icon (default: 24)
204
+ */
205
+ interface ChevronLeftProps extends React.SVGProps<SVGSVGElement> {
206
+ size?: number | string;
207
+ }
208
+ /**
209
+ * ChevronLeft icon component
210
+ * @example
211
+ * ```tsx
212
+ * import { ChevronLeft } from 'magick-icons';
213
+ *
214
+ * <ChevronLeft size={24} className="text-blue-500" strokeWidth={2} />
215
+ * ```
216
+ */
217
+ declare const ChevronLeft: React.ForwardRefExoticComponent<Omit<ChevronLeftProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
218
+
219
+ /**
220
+ * Props for the ChevronRight icon component
221
+ * @property {number | string} [size] - Size of the icon (default: 24)
222
+ */
223
+ interface ChevronRightProps extends React.SVGProps<SVGSVGElement> {
224
+ size?: number | string;
225
+ }
226
+ /**
227
+ * ChevronRight icon component
228
+ * @example
229
+ * ```tsx
230
+ * import { ChevronRight } from 'magick-icons';
231
+ *
232
+ * <ChevronRight size={24} className="text-blue-500" strokeWidth={2} />
233
+ * ```
234
+ */
235
+ declare const ChevronRight: React.ForwardRefExoticComponent<Omit<ChevronRightProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
236
+
237
+ /**
238
+ * Props for the ChevronUp icon component
239
+ * @property {number | string} [size] - Size of the icon (default: 24)
240
+ */
241
+ interface ChevronUpProps extends React.SVGProps<SVGSVGElement> {
242
+ size?: number | string;
243
+ }
244
+ /**
245
+ * ChevronUp icon component
246
+ * @example
247
+ * ```tsx
248
+ * import { ChevronUp } from 'magick-icons';
249
+ *
250
+ * <ChevronUp size={24} className="text-blue-500" strokeWidth={2} />
251
+ * ```
252
+ */
253
+ declare const ChevronUp: React.ForwardRefExoticComponent<Omit<ChevronUpProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
254
+
255
+ /**
256
+ * Props for the ChevronsUpDown icon component
257
+ * @property {number | string} [size] - Size of the icon (default: 24)
258
+ */
259
+ interface ChevronsUpDownProps extends React.SVGProps<SVGSVGElement> {
260
+ size?: number | string;
261
+ }
262
+ /**
263
+ * ChevronsUpDown icon component
264
+ * @example
265
+ * ```tsx
266
+ * import { ChevronsUpDown } from 'magick-icons';
267
+ *
268
+ * <ChevronsUpDown size={24} className="text-blue-500" strokeWidth={2} />
269
+ * ```
270
+ */
271
+ declare const ChevronsUpDown: React.ForwardRefExoticComponent<Omit<ChevronsUpDownProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
272
+
201
273
  /**
202
274
  * Props for the CircleCheckFill icon component
203
275
  * @property {number | string} [size] - Size of the icon (default: 24)
@@ -306,6 +378,24 @@ interface DocumentUploadProps extends React.SVGProps<SVGSVGElement> {
306
378
  */
307
379
  declare const DocumentUpload: React.ForwardRefExoticComponent<Omit<DocumentUploadProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
308
380
 
381
+ /**
382
+ * Props for the Enter icon component
383
+ * @property {number | string} [size] - Size of the icon (default: 24)
384
+ */
385
+ interface EnterProps extends React.SVGProps<SVGSVGElement> {
386
+ size?: number | string;
387
+ }
388
+ /**
389
+ * Enter icon component
390
+ * @example
391
+ * ```tsx
392
+ * import { Enter } from 'magick-icons';
393
+ *
394
+ * <Enter size={24} className="text-blue-500" strokeWidth={2} />
395
+ * ```
396
+ */
397
+ declare const Enter: React.ForwardRefExoticComponent<Omit<EnterProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
398
+
309
399
  /**
310
400
  * Props for the Excel icon component
311
401
  * @property {number | string} [size] - Size of the icon (default: 24)
@@ -469,76 +559,76 @@ interface GeneralMagickoProps extends React.SVGProps<SVGSVGElement> {
469
559
  declare const GeneralMagicko: React.ForwardRefExoticComponent<Omit<GeneralMagickoProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
470
560
 
471
561
  /**
472
- * Props for the HeartBold icon component
562
+ * Props for the GripVertical icon component
473
563
  * @property {number | string} [size] - Size of the icon (default: 24)
474
564
  */
475
- interface HeartBoldProps extends React.SVGProps<SVGSVGElement> {
565
+ interface GripVerticalProps extends React.SVGProps<SVGSVGElement> {
476
566
  size?: number | string;
477
567
  }
478
568
  /**
479
- * HeartBold icon component
569
+ * GripVertical icon component
480
570
  * @example
481
571
  * ```tsx
482
- * import { HeartBold } from 'magick-icons';
572
+ * import { GripVertical } from 'magick-icons';
483
573
  *
484
- * <HeartBold size={24} className="text-blue-500" strokeWidth={2} />
574
+ * <GripVertical size={24} className="text-blue-500" strokeWidth={2} />
485
575
  * ```
486
576
  */
487
- declare const HeartBold: React.ForwardRefExoticComponent<Omit<HeartBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
577
+ declare const GripVertical: React.ForwardRefExoticComponent<Omit<GripVerticalProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
488
578
 
489
579
  /**
490
- * Props for the Hr icon component
580
+ * Props for the HeartBold icon component
491
581
  * @property {number | string} [size] - Size of the icon (default: 24)
492
582
  */
493
- interface HrProps extends React.SVGProps<SVGSVGElement> {
583
+ interface HeartBoldProps extends React.SVGProps<SVGSVGElement> {
494
584
  size?: number | string;
495
585
  }
496
586
  /**
497
- * Hr icon component
587
+ * HeartBold icon component
498
588
  * @example
499
589
  * ```tsx
500
- * import { Hr } from 'magick-icons';
590
+ * import { HeartBold } from 'magick-icons';
501
591
  *
502
- * <Hr size={24} className="text-blue-500" strokeWidth={2} />
592
+ * <HeartBold size={24} className="text-blue-500" strokeWidth={2} />
503
593
  * ```
504
594
  */
505
- declare const Hr: React.ForwardRefExoticComponent<Omit<HrProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
595
+ declare const HeartBold: React.ForwardRefExoticComponent<Omit<HeartBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
506
596
 
507
597
  /**
508
- * Props for the Icon3dcube1 icon component
598
+ * Props for the Hr icon component
509
599
  * @property {number | string} [size] - Size of the icon (default: 24)
510
600
  */
511
- interface Icon3dcube1Props extends React.SVGProps<SVGSVGElement> {
601
+ interface HrProps extends React.SVGProps<SVGSVGElement> {
512
602
  size?: number | string;
513
603
  }
514
604
  /**
515
- * Icon3dcube1 icon component
605
+ * Hr icon component
516
606
  * @example
517
607
  * ```tsx
518
- * import { Icon3dcube1 } from 'magick-icons';
608
+ * import { Hr } from 'magick-icons';
519
609
  *
520
- * <Icon3dcube1 size={24} className="text-blue-500" strokeWidth={2} />
610
+ * <Hr size={24} className="text-blue-500" strokeWidth={2} />
521
611
  * ```
522
612
  */
523
- declare const Icon3dcube1: React.ForwardRefExoticComponent<Omit<Icon3dcube1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
613
+ declare const Hr: React.ForwardRefExoticComponent<Omit<HrProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
524
614
 
525
615
  /**
526
- * Props for the Icon3square1 icon component
616
+ * Props for the HrSystem icon component
527
617
  * @property {number | string} [size] - Size of the icon (default: 24)
528
618
  */
529
- interface Icon3square1Props extends React.SVGProps<SVGSVGElement> {
619
+ interface HrSystemProps extends React.SVGProps<SVGSVGElement> {
530
620
  size?: number | string;
531
621
  }
532
622
  /**
533
- * Icon3square1 icon component
623
+ * HrSystem icon component
534
624
  * @example
535
625
  * ```tsx
536
- * import { Icon3square1 } from 'magick-icons';
626
+ * import { HrSystem } from 'magick-icons';
537
627
  *
538
- * <Icon3square1 size={24} className="text-blue-500" strokeWidth={2} />
628
+ * <HrSystem size={24} className="text-blue-500" strokeWidth={2} />
539
629
  * ```
540
630
  */
541
- declare const Icon3square1: React.ForwardRefExoticComponent<Omit<Icon3square1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
631
+ declare const HrSystem: React.ForwardRefExoticComponent<Omit<HrSystemProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
542
632
 
543
633
  /**
544
634
  * Props for the IconsaxAttachCircleBold icon component
@@ -594,6 +684,24 @@ interface IconsaxVideoCameraBoldProps extends React.SVGProps<SVGSVGElement> {
594
684
  */
595
685
  declare const IconsaxVideoCameraBold: React.ForwardRefExoticComponent<Omit<IconsaxVideoCameraBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
596
686
 
687
+ /**
688
+ * Props for the IconsaxWord icon component
689
+ * @property {number | string} [size] - Size of the icon (default: 24)
690
+ */
691
+ interface IconsaxWordProps extends React.SVGProps<SVGSVGElement> {
692
+ size?: number | string;
693
+ }
694
+ /**
695
+ * IconsaxWord icon component
696
+ * @example
697
+ * ```tsx
698
+ * import { IconsaxWord } from 'magick-icons';
699
+ *
700
+ * <IconsaxWord size={24} className="text-blue-500" strokeWidth={2} />
701
+ * ```
702
+ */
703
+ declare const IconsaxWord: React.ForwardRefExoticComponent<Omit<IconsaxWordProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
704
+
597
705
  /**
598
706
  * Props for the InProgress icon component
599
707
  * @property {number | string} [size] - Size of the icon (default: 24)
@@ -666,6 +774,24 @@ interface LikeBoldProps extends React.SVGProps<SVGSVGElement> {
666
774
  */
667
775
  declare const LikeBold: React.ForwardRefExoticComponent<Omit<LikeBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
668
776
 
777
+ /**
778
+ * Props for the Line icon component
779
+ * @property {number | string} [size] - Size of the icon (default: 24)
780
+ */
781
+ interface LineProps extends React.SVGProps<SVGSVGElement> {
782
+ size?: number | string;
783
+ }
784
+ /**
785
+ * Line icon component
786
+ * @example
787
+ * ```tsx
788
+ * import { Line } from 'magick-icons';
789
+ *
790
+ * <Line size={24} className="text-blue-500" strokeWidth={2} />
791
+ * ```
792
+ */
793
+ declare const Line: React.ForwardRefExoticComponent<Omit<LineProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
794
+
669
795
  /**
670
796
  * Props for the LinkSquare icon component
671
797
  * @property {number | string} [size] - Size of the icon (default: 24)
@@ -684,6 +810,78 @@ interface LinkSquareProps extends React.SVGProps<SVGSVGElement> {
684
810
  */
685
811
  declare const LinkSquare: React.ForwardRefExoticComponent<Omit<LinkSquareProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
686
812
 
813
+ /**
814
+ * Props for the List icon component
815
+ * @property {number | string} [size] - Size of the icon (default: 24)
816
+ */
817
+ interface ListProps extends React.SVGProps<SVGSVGElement> {
818
+ size?: number | string;
819
+ }
820
+ /**
821
+ * List icon component
822
+ * @example
823
+ * ```tsx
824
+ * import { List } from 'magick-icons';
825
+ *
826
+ * <List size={24} className="text-blue-500" strokeWidth={2} />
827
+ * ```
828
+ */
829
+ declare const List: React.ForwardRefExoticComponent<Omit<ListProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
830
+
831
+ /**
832
+ * Props for the ListEnd icon component
833
+ * @property {number | string} [size] - Size of the icon (default: 24)
834
+ */
835
+ interface ListEndProps extends React.SVGProps<SVGSVGElement> {
836
+ size?: number | string;
837
+ }
838
+ /**
839
+ * ListEnd icon component
840
+ * @example
841
+ * ```tsx
842
+ * import { ListEnd } from 'magick-icons';
843
+ *
844
+ * <ListEnd size={24} className="text-blue-500" strokeWidth={2} />
845
+ * ```
846
+ */
847
+ declare const ListEnd: React.ForwardRefExoticComponent<Omit<ListEndProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
848
+
849
+ /**
850
+ * Props for the ListOrdered icon component
851
+ * @property {number | string} [size] - Size of the icon (default: 24)
852
+ */
853
+ interface ListOrderedProps extends React.SVGProps<SVGSVGElement> {
854
+ size?: number | string;
855
+ }
856
+ /**
857
+ * ListOrdered icon component
858
+ * @example
859
+ * ```tsx
860
+ * import { ListOrdered } from 'magick-icons';
861
+ *
862
+ * <ListOrdered size={24} className="text-blue-500" strokeWidth={2} />
863
+ * ```
864
+ */
865
+ declare const ListOrdered: React.ForwardRefExoticComponent<Omit<ListOrderedProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
866
+
867
+ /**
868
+ * Props for the ListTodo icon component
869
+ * @property {number | string} [size] - Size of the icon (default: 24)
870
+ */
871
+ interface ListTodoProps extends React.SVGProps<SVGSVGElement> {
872
+ size?: number | string;
873
+ }
874
+ /**
875
+ * ListTodo icon component
876
+ * @example
877
+ * ```tsx
878
+ * import { ListTodo } from 'magick-icons';
879
+ *
880
+ * <ListTodo size={24} className="text-blue-500" strokeWidth={2} />
881
+ * ```
882
+ */
883
+ declare const ListTodo: React.ForwardRefExoticComponent<Omit<ListTodoProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
884
+
687
885
  /**
688
886
  * Props for the MagickPotion icon component
689
887
  * @property {number | string} [size] - Size of the icon (default: 24)
@@ -702,6 +900,24 @@ interface MagickPotionProps extends React.SVGProps<SVGSVGElement> {
702
900
  */
703
901
  declare const MagickPotion: React.ForwardRefExoticComponent<Omit<MagickPotionProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
704
902
 
903
+ /**
904
+ * Props for the MagickoCheck icon component
905
+ * @property {number | string} [size] - Size of the icon (default: 24)
906
+ */
907
+ interface MagickoCheckProps extends React.SVGProps<SVGSVGElement> {
908
+ size?: number | string;
909
+ }
910
+ /**
911
+ * MagickoCheck icon component
912
+ * @example
913
+ * ```tsx
914
+ * import { MagickoCheck } from 'magick-icons';
915
+ *
916
+ * <MagickoCheck size={24} className="text-blue-500" strokeWidth={2} />
917
+ * ```
918
+ */
919
+ declare const MagickoCheck: React.ForwardRefExoticComponent<Omit<MagickoCheckProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
920
+
705
921
  /**
706
922
  * Props for the Marketing icon component
707
923
  * @property {number | string} [size] - Size of the icon (default: 24)
@@ -846,6 +1062,24 @@ interface PlayFilledProps extends React.SVGProps<SVGSVGElement> {
846
1062
  */
847
1063
  declare const PlayFilled: React.ForwardRefExoticComponent<Omit<PlayFilledProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
848
1064
 
1065
+ /**
1066
+ * Props for the Signature icon component
1067
+ * @property {number | string} [size] - Size of the icon (default: 24)
1068
+ */
1069
+ interface SignatureProps extends React.SVGProps<SVGSVGElement> {
1070
+ size?: number | string;
1071
+ }
1072
+ /**
1073
+ * Signature icon component
1074
+ * @example
1075
+ * ```tsx
1076
+ * import { Signature } from 'magick-icons';
1077
+ *
1078
+ * <Signature size={24} className="text-blue-500" strokeWidth={2} />
1079
+ * ```
1080
+ */
1081
+ declare const Signature: React.ForwardRefExoticComponent<Omit<SignatureProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1082
+
849
1083
  /**
850
1084
  * Props for the SperateDot icon component
851
1085
  * @property {number | string} [size] - Size of the icon (default: 24)
@@ -882,6 +1116,24 @@ interface SquarePen1Props extends React.SVGProps<SVGSVGElement> {
882
1116
  */
883
1117
  declare const SquarePen1: React.ForwardRefExoticComponent<Omit<SquarePen1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
884
1118
 
1119
+ /**
1120
+ * Props for the Strikethrough icon component
1121
+ * @property {number | string} [size] - Size of the icon (default: 24)
1122
+ */
1123
+ interface StrikethroughProps extends React.SVGProps<SVGSVGElement> {
1124
+ size?: number | string;
1125
+ }
1126
+ /**
1127
+ * Strikethrough icon component
1128
+ * @example
1129
+ * ```tsx
1130
+ * import { Strikethrough } from 'magick-icons';
1131
+ *
1132
+ * <Strikethrough size={24} className="text-blue-500" strokeWidth={2} />
1133
+ * ```
1134
+ */
1135
+ declare const Strikethrough: React.ForwardRefExoticComponent<Omit<StrikethroughProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1136
+
885
1137
  /**
886
1138
  * Props for the Video icon component
887
1139
  * @property {number | string} [size] - Size of the icon (default: 24)
@@ -900,4 +1152,22 @@ interface VideoProps extends React.SVGProps<SVGSVGElement> {
900
1152
  */
901
1153
  declare const Video: React.ForwardRefExoticComponent<Omit<VideoProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
902
1154
 
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 };
1155
+ /**
1156
+ * Props for the X icon component
1157
+ * @property {number | string} [size] - Size of the icon (default: 24)
1158
+ */
1159
+ interface XProps extends React.SVGProps<SVGSVGElement> {
1160
+ size?: number | string;
1161
+ }
1162
+ /**
1163
+ * X icon component
1164
+ * @example
1165
+ * ```tsx
1166
+ * import { X } from 'magick-icons';
1167
+ *
1168
+ * <X size={24} className="text-blue-500" strokeWidth={2} />
1169
+ * ```
1170
+ */
1171
+ declare const X: React.ForwardRefExoticComponent<Omit<XProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1172
+
1173
+ export { 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, ChevronDown, type ChevronDownProps, ChevronLeft, type ChevronLeftProps, ChevronRight, type ChevronRightProps, ChevronUp, type ChevronUpProps, ChevronsUpDown, type ChevronsUpDownProps, CircleCheckFill, type CircleCheckFillProps, CloseCircle1, type CloseCircle1Props, DislikeBold, type DislikeBoldProps, Doc, type DocProps, DocumentTextBold, type DocumentTextBoldProps, DocumentUpload, type DocumentUploadProps, Enter, type EnterProps, 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, GripVertical, type GripVerticalProps, HeartBold, type HeartBoldProps, Hr, type HrProps, HrSystem, type HrSystemProps, IconsaxAttachCircleBold, type IconsaxAttachCircleBoldProps, IconsaxPenBrushBold, type IconsaxPenBrushBoldProps, IconsaxVideoCameraBold, type IconsaxVideoCameraBoldProps, IconsaxWord, type IconsaxWordProps, InProgress, type InProgressProps, 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, NotiDot, type NotiDotProps, PA, type PAProps, PauseSquare, type PauseSquareProps, Pdf, type PdfProps, PlayFilled, type PlayFilledProps, Signature, type SignatureProps, SperateDot, type SperateDotProps, SquarePen1, type SquarePen1Props, Strikethrough, type StrikethroughProps, Video, type VideoProps, X, type XProps };