magick-icons 0.1.202 → 0.1.204
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 +271 -1
- package/index.d.ts +271 -1
- package/index.js +342 -150
- package/index.js.map +1 -1
- package/index.mjs +322 -145
- package/index.mjs.map +1 -1
- package/package.json +1 -1
package/index.d.mts
CHANGED
|
@@ -468,6 +468,24 @@ interface FlagProps extends React.SVGProps<SVGSVGElement> {
|
|
|
468
468
|
*/
|
|
469
469
|
declare const Flag: React.ForwardRefExoticComponent<Omit<FlagProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
470
470
|
|
|
471
|
+
/**
|
|
472
|
+
* Props for the FluentSparkle28Filled icon component
|
|
473
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
474
|
+
*/
|
|
475
|
+
interface FluentSparkle28FilledProps extends React.SVGProps<SVGSVGElement> {
|
|
476
|
+
size?: number | string;
|
|
477
|
+
}
|
|
478
|
+
/**
|
|
479
|
+
* FluentSparkle28Filled icon component
|
|
480
|
+
* @example
|
|
481
|
+
* ```tsx
|
|
482
|
+
* import { FluentSparkle28Filled } from 'magick-icons';
|
|
483
|
+
*
|
|
484
|
+
* <FluentSparkle28Filled size={24} className="text-blue-500" strokeWidth={2} />
|
|
485
|
+
* ```
|
|
486
|
+
*/
|
|
487
|
+
declare const FluentSparkle28Filled: React.ForwardRefExoticComponent<Omit<FluentSparkle28FilledProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
488
|
+
|
|
471
489
|
/**
|
|
472
490
|
* Props for the Folder2 icon component
|
|
473
491
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -810,6 +828,60 @@ interface InProgressProps extends React.SVGProps<SVGSVGElement> {
|
|
|
810
828
|
*/
|
|
811
829
|
declare const InProgress: React.ForwardRefExoticComponent<Omit<InProgressProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
812
830
|
|
|
831
|
+
/**
|
|
832
|
+
* Props for the InfoCircleBold icon component
|
|
833
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
834
|
+
*/
|
|
835
|
+
interface InfoCircleBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
836
|
+
size?: number | string;
|
|
837
|
+
}
|
|
838
|
+
/**
|
|
839
|
+
* InfoCircleBold icon component
|
|
840
|
+
* @example
|
|
841
|
+
* ```tsx
|
|
842
|
+
* import { InfoCircleBold } from 'magick-icons';
|
|
843
|
+
*
|
|
844
|
+
* <InfoCircleBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
845
|
+
* ```
|
|
846
|
+
*/
|
|
847
|
+
declare const InfoCircleBold: React.ForwardRefExoticComponent<Omit<InfoCircleBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
848
|
+
|
|
849
|
+
/**
|
|
850
|
+
* Props for the Legal icon component
|
|
851
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
852
|
+
*/
|
|
853
|
+
interface LegalProps extends React.SVGProps<SVGSVGElement> {
|
|
854
|
+
size?: number | string;
|
|
855
|
+
}
|
|
856
|
+
/**
|
|
857
|
+
* Legal icon component
|
|
858
|
+
* @example
|
|
859
|
+
* ```tsx
|
|
860
|
+
* import { Legal } from 'magick-icons';
|
|
861
|
+
*
|
|
862
|
+
* <Legal size={24} className="text-blue-500" strokeWidth={2} />
|
|
863
|
+
* ```
|
|
864
|
+
*/
|
|
865
|
+
declare const Legal: React.ForwardRefExoticComponent<Omit<LegalProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
866
|
+
|
|
867
|
+
/**
|
|
868
|
+
* Props for the LikeBold icon component
|
|
869
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
870
|
+
*/
|
|
871
|
+
interface LikeBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
872
|
+
size?: number | string;
|
|
873
|
+
}
|
|
874
|
+
/**
|
|
875
|
+
* LikeBold icon component
|
|
876
|
+
* @example
|
|
877
|
+
* ```tsx
|
|
878
|
+
* import { LikeBold } from 'magick-icons';
|
|
879
|
+
*
|
|
880
|
+
* <LikeBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
881
|
+
* ```
|
|
882
|
+
*/
|
|
883
|
+
declare const LikeBold: React.ForwardRefExoticComponent<Omit<LikeBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
884
|
+
|
|
813
885
|
/**
|
|
814
886
|
* Props for the Line icon component
|
|
815
887
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -828,6 +900,24 @@ interface LineProps extends React.SVGProps<SVGSVGElement> {
|
|
|
828
900
|
*/
|
|
829
901
|
declare const Line: React.ForwardRefExoticComponent<Omit<LineProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
830
902
|
|
|
903
|
+
/**
|
|
904
|
+
* Props for the LinkSquare icon component
|
|
905
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
906
|
+
*/
|
|
907
|
+
interface LinkSquareProps extends React.SVGProps<SVGSVGElement> {
|
|
908
|
+
size?: number | string;
|
|
909
|
+
}
|
|
910
|
+
/**
|
|
911
|
+
* LinkSquare icon component
|
|
912
|
+
* @example
|
|
913
|
+
* ```tsx
|
|
914
|
+
* import { LinkSquare } from 'magick-icons';
|
|
915
|
+
*
|
|
916
|
+
* <LinkSquare size={24} className="text-blue-500" strokeWidth={2} />
|
|
917
|
+
* ```
|
|
918
|
+
*/
|
|
919
|
+
declare const LinkSquare: React.ForwardRefExoticComponent<Omit<LinkSquareProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
920
|
+
|
|
831
921
|
/**
|
|
832
922
|
* Props for the List icon component
|
|
833
923
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -900,6 +990,42 @@ interface ListTodoProps extends React.SVGProps<SVGSVGElement> {
|
|
|
900
990
|
*/
|
|
901
991
|
declare const ListTodo: React.ForwardRefExoticComponent<Omit<ListTodoProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
902
992
|
|
|
993
|
+
/**
|
|
994
|
+
* Props for the Lock icon component
|
|
995
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
996
|
+
*/
|
|
997
|
+
interface LockProps extends React.SVGProps<SVGSVGElement> {
|
|
998
|
+
size?: number | string;
|
|
999
|
+
}
|
|
1000
|
+
/**
|
|
1001
|
+
* Lock icon component
|
|
1002
|
+
* @example
|
|
1003
|
+
* ```tsx
|
|
1004
|
+
* import { Lock } from 'magick-icons';
|
|
1005
|
+
*
|
|
1006
|
+
* <Lock size={24} className="text-blue-500" strokeWidth={2} />
|
|
1007
|
+
* ```
|
|
1008
|
+
*/
|
|
1009
|
+
declare const Lock: React.ForwardRefExoticComponent<Omit<LockProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1010
|
+
|
|
1011
|
+
/**
|
|
1012
|
+
* Props for the MagickPotion icon component
|
|
1013
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1014
|
+
*/
|
|
1015
|
+
interface MagickPotionProps extends React.SVGProps<SVGSVGElement> {
|
|
1016
|
+
size?: number | string;
|
|
1017
|
+
}
|
|
1018
|
+
/**
|
|
1019
|
+
* MagickPotion icon component
|
|
1020
|
+
* @example
|
|
1021
|
+
* ```tsx
|
|
1022
|
+
* import { MagickPotion } from 'magick-icons';
|
|
1023
|
+
*
|
|
1024
|
+
* <MagickPotion size={24} className="text-blue-500" strokeWidth={2} />
|
|
1025
|
+
* ```
|
|
1026
|
+
*/
|
|
1027
|
+
declare const MagickPotion: React.ForwardRefExoticComponent<Omit<MagickPotionProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1028
|
+
|
|
903
1029
|
/**
|
|
904
1030
|
* Props for the MagickoCheck icon component
|
|
905
1031
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -918,6 +1044,60 @@ interface MagickoCheckProps extends React.SVGProps<SVGSVGElement> {
|
|
|
918
1044
|
*/
|
|
919
1045
|
declare const MagickoCheck: React.ForwardRefExoticComponent<Omit<MagickoCheckProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
920
1046
|
|
|
1047
|
+
/**
|
|
1048
|
+
* Props for the Marketing icon component
|
|
1049
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1050
|
+
*/
|
|
1051
|
+
interface MarketingProps extends React.SVGProps<SVGSVGElement> {
|
|
1052
|
+
size?: number | string;
|
|
1053
|
+
}
|
|
1054
|
+
/**
|
|
1055
|
+
* Marketing icon component
|
|
1056
|
+
* @example
|
|
1057
|
+
* ```tsx
|
|
1058
|
+
* import { Marketing } from 'magick-icons';
|
|
1059
|
+
*
|
|
1060
|
+
* <Marketing size={24} className="text-blue-500" strokeWidth={2} />
|
|
1061
|
+
* ```
|
|
1062
|
+
*/
|
|
1063
|
+
declare const Marketing: React.ForwardRefExoticComponent<Omit<MarketingProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1064
|
+
|
|
1065
|
+
/**
|
|
1066
|
+
* Props for the MessageEdit icon component
|
|
1067
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1068
|
+
*/
|
|
1069
|
+
interface MessageEditProps extends React.SVGProps<SVGSVGElement> {
|
|
1070
|
+
size?: number | string;
|
|
1071
|
+
}
|
|
1072
|
+
/**
|
|
1073
|
+
* MessageEdit icon component
|
|
1074
|
+
* @example
|
|
1075
|
+
* ```tsx
|
|
1076
|
+
* import { MessageEdit } from 'magick-icons';
|
|
1077
|
+
*
|
|
1078
|
+
* <MessageEdit size={24} className="text-blue-500" strokeWidth={2} />
|
|
1079
|
+
* ```
|
|
1080
|
+
*/
|
|
1081
|
+
declare const MessageEdit: React.ForwardRefExoticComponent<Omit<MessageEditProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1082
|
+
|
|
1083
|
+
/**
|
|
1084
|
+
* Props for the Network icon component
|
|
1085
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1086
|
+
*/
|
|
1087
|
+
interface NetworkProps extends React.SVGProps<SVGSVGElement> {
|
|
1088
|
+
size?: number | string;
|
|
1089
|
+
}
|
|
1090
|
+
/**
|
|
1091
|
+
* Network icon component
|
|
1092
|
+
* @example
|
|
1093
|
+
* ```tsx
|
|
1094
|
+
* import { Network } from 'magick-icons';
|
|
1095
|
+
*
|
|
1096
|
+
* <Network size={24} className="text-blue-500" strokeWidth={2} />
|
|
1097
|
+
* ```
|
|
1098
|
+
*/
|
|
1099
|
+
declare const Network: React.ForwardRefExoticComponent<Omit<NetworkProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1100
|
+
|
|
921
1101
|
/**
|
|
922
1102
|
* Props for the NotiDot icon component
|
|
923
1103
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -936,6 +1116,24 @@ interface NotiDotProps extends React.SVGProps<SVGSVGElement> {
|
|
|
936
1116
|
*/
|
|
937
1117
|
declare const NotiDot: React.ForwardRefExoticComponent<Omit<NotiDotProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
938
1118
|
|
|
1119
|
+
/**
|
|
1120
|
+
* Props for the PA icon component
|
|
1121
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1122
|
+
*/
|
|
1123
|
+
interface PAProps extends React.SVGProps<SVGSVGElement> {
|
|
1124
|
+
size?: number | string;
|
|
1125
|
+
}
|
|
1126
|
+
/**
|
|
1127
|
+
* PA icon component
|
|
1128
|
+
* @example
|
|
1129
|
+
* ```tsx
|
|
1130
|
+
* import { PA } from 'magick-icons';
|
|
1131
|
+
*
|
|
1132
|
+
* <PA size={24} className="text-blue-500" strokeWidth={2} />
|
|
1133
|
+
* ```
|
|
1134
|
+
*/
|
|
1135
|
+
declare const PA: React.ForwardRefExoticComponent<Omit<PAProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1136
|
+
|
|
939
1137
|
/**
|
|
940
1138
|
* Props for the PauseSquare icon component
|
|
941
1139
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -1026,6 +1224,24 @@ interface SperateDotProps extends React.SVGProps<SVGSVGElement> {
|
|
|
1026
1224
|
*/
|
|
1027
1225
|
declare const SperateDot: React.ForwardRefExoticComponent<Omit<SperateDotProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1028
1226
|
|
|
1227
|
+
/**
|
|
1228
|
+
* Props for the SquarePen1 icon component
|
|
1229
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1230
|
+
*/
|
|
1231
|
+
interface SquarePen1Props extends React.SVGProps<SVGSVGElement> {
|
|
1232
|
+
size?: number | string;
|
|
1233
|
+
}
|
|
1234
|
+
/**
|
|
1235
|
+
* SquarePen1 icon component
|
|
1236
|
+
* @example
|
|
1237
|
+
* ```tsx
|
|
1238
|
+
* import { SquarePen1 } from 'magick-icons';
|
|
1239
|
+
*
|
|
1240
|
+
* <SquarePen1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
1241
|
+
* ```
|
|
1242
|
+
*/
|
|
1243
|
+
declare const SquarePen1: React.ForwardRefExoticComponent<Omit<SquarePen1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1244
|
+
|
|
1029
1245
|
/**
|
|
1030
1246
|
* Props for the Strikethrough icon component
|
|
1031
1247
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -1044,6 +1260,60 @@ interface StrikethroughProps extends React.SVGProps<SVGSVGElement> {
|
|
|
1044
1260
|
*/
|
|
1045
1261
|
declare const Strikethrough: React.ForwardRefExoticComponent<Omit<StrikethroughProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1046
1262
|
|
|
1263
|
+
/**
|
|
1264
|
+
* Props for the Tasks icon component
|
|
1265
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1266
|
+
*/
|
|
1267
|
+
interface TasksProps extends React.SVGProps<SVGSVGElement> {
|
|
1268
|
+
size?: number | string;
|
|
1269
|
+
}
|
|
1270
|
+
/**
|
|
1271
|
+
* Tasks icon component
|
|
1272
|
+
* @example
|
|
1273
|
+
* ```tsx
|
|
1274
|
+
* import { Tasks } from 'magick-icons';
|
|
1275
|
+
*
|
|
1276
|
+
* <Tasks size={24} className="text-blue-500" strokeWidth={2} />
|
|
1277
|
+
* ```
|
|
1278
|
+
*/
|
|
1279
|
+
declare const Tasks: React.ForwardRefExoticComponent<Omit<TasksProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1280
|
+
|
|
1281
|
+
/**
|
|
1282
|
+
* Props for the Trash icon component
|
|
1283
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1284
|
+
*/
|
|
1285
|
+
interface TrashProps extends React.SVGProps<SVGSVGElement> {
|
|
1286
|
+
size?: number | string;
|
|
1287
|
+
}
|
|
1288
|
+
/**
|
|
1289
|
+
* Trash icon component
|
|
1290
|
+
* @example
|
|
1291
|
+
* ```tsx
|
|
1292
|
+
* import { Trash } from 'magick-icons';
|
|
1293
|
+
*
|
|
1294
|
+
* <Trash size={24} className="text-blue-500" strokeWidth={2} />
|
|
1295
|
+
* ```
|
|
1296
|
+
*/
|
|
1297
|
+
declare const Trash: React.ForwardRefExoticComponent<Omit<TrashProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1298
|
+
|
|
1299
|
+
/**
|
|
1300
|
+
* Props for the Video icon component
|
|
1301
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1302
|
+
*/
|
|
1303
|
+
interface VideoProps extends React.SVGProps<SVGSVGElement> {
|
|
1304
|
+
size?: number | string;
|
|
1305
|
+
}
|
|
1306
|
+
/**
|
|
1307
|
+
* Video icon component
|
|
1308
|
+
* @example
|
|
1309
|
+
* ```tsx
|
|
1310
|
+
* import { Video } from 'magick-icons';
|
|
1311
|
+
*
|
|
1312
|
+
* <Video size={24} className="text-blue-500" strokeWidth={2} />
|
|
1313
|
+
* ```
|
|
1314
|
+
*/
|
|
1315
|
+
declare const Video: React.ForwardRefExoticComponent<Omit<VideoProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1316
|
+
|
|
1047
1317
|
/**
|
|
1048
1318
|
* Props for the X icon component
|
|
1049
1319
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -1062,4 +1332,4 @@ interface XProps extends React.SVGProps<SVGSVGElement> {
|
|
|
1062
1332
|
*/
|
|
1063
1333
|
declare const X: React.ForwardRefExoticComponent<Omit<XProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1064
1334
|
|
|
1065
|
-
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, IconsaxAiScienceBold, type IconsaxAiScienceBoldProps, IconsaxAttachCircleBold, type IconsaxAttachCircleBoldProps, IconsaxBrainBold, type IconsaxBrainBoldProps, IconsaxMonetizeBold, type IconsaxMonetizeBoldProps, IconsaxPenBrushBold, type IconsaxPenBrushBoldProps, IconsaxPeopleBold, type IconsaxPeopleBoldProps, IconsaxTaskSquareBold, type IconsaxTaskSquareBoldProps, IconsaxVideoCameraBold, type IconsaxVideoCameraBoldProps, IconsaxWord, type IconsaxWordProps, InProgress, type InProgressProps, Line, type LineProps, List, ListEnd, type ListEndProps, ListOrdered, type ListOrderedProps, type ListProps, ListTodo, type ListTodoProps, MagickoCheck, type MagickoCheckProps, NotiDot, type NotiDotProps, PauseSquare, type PauseSquareProps, Pdf, type PdfProps, PlayFilled, type PlayFilledProps, Signature, type SignatureProps, SperateDot, type SperateDotProps, Strikethrough, type StrikethroughProps, X, type XProps };
|
|
1335
|
+
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, FluentSparkle28Filled, type FluentSparkle28FilledProps, 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, IconsaxAiScienceBold, type IconsaxAiScienceBoldProps, IconsaxAttachCircleBold, type IconsaxAttachCircleBoldProps, IconsaxBrainBold, type IconsaxBrainBoldProps, IconsaxMonetizeBold, type IconsaxMonetizeBoldProps, IconsaxPenBrushBold, type IconsaxPenBrushBoldProps, IconsaxPeopleBold, type IconsaxPeopleBoldProps, IconsaxTaskSquareBold, type IconsaxTaskSquareBoldProps, 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, Lock, type LockProps, 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, Tasks, type TasksProps, Trash, type TrashProps, Video, type VideoProps, X, type XProps };
|
package/index.d.ts
CHANGED
|
@@ -468,6 +468,24 @@ interface FlagProps extends React.SVGProps<SVGSVGElement> {
|
|
|
468
468
|
*/
|
|
469
469
|
declare const Flag: React.ForwardRefExoticComponent<Omit<FlagProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
470
470
|
|
|
471
|
+
/**
|
|
472
|
+
* Props for the FluentSparkle28Filled icon component
|
|
473
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
474
|
+
*/
|
|
475
|
+
interface FluentSparkle28FilledProps extends React.SVGProps<SVGSVGElement> {
|
|
476
|
+
size?: number | string;
|
|
477
|
+
}
|
|
478
|
+
/**
|
|
479
|
+
* FluentSparkle28Filled icon component
|
|
480
|
+
* @example
|
|
481
|
+
* ```tsx
|
|
482
|
+
* import { FluentSparkle28Filled } from 'magick-icons';
|
|
483
|
+
*
|
|
484
|
+
* <FluentSparkle28Filled size={24} className="text-blue-500" strokeWidth={2} />
|
|
485
|
+
* ```
|
|
486
|
+
*/
|
|
487
|
+
declare const FluentSparkle28Filled: React.ForwardRefExoticComponent<Omit<FluentSparkle28FilledProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
488
|
+
|
|
471
489
|
/**
|
|
472
490
|
* Props for the Folder2 icon component
|
|
473
491
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -810,6 +828,60 @@ interface InProgressProps extends React.SVGProps<SVGSVGElement> {
|
|
|
810
828
|
*/
|
|
811
829
|
declare const InProgress: React.ForwardRefExoticComponent<Omit<InProgressProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
812
830
|
|
|
831
|
+
/**
|
|
832
|
+
* Props for the InfoCircleBold icon component
|
|
833
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
834
|
+
*/
|
|
835
|
+
interface InfoCircleBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
836
|
+
size?: number | string;
|
|
837
|
+
}
|
|
838
|
+
/**
|
|
839
|
+
* InfoCircleBold icon component
|
|
840
|
+
* @example
|
|
841
|
+
* ```tsx
|
|
842
|
+
* import { InfoCircleBold } from 'magick-icons';
|
|
843
|
+
*
|
|
844
|
+
* <InfoCircleBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
845
|
+
* ```
|
|
846
|
+
*/
|
|
847
|
+
declare const InfoCircleBold: React.ForwardRefExoticComponent<Omit<InfoCircleBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
848
|
+
|
|
849
|
+
/**
|
|
850
|
+
* Props for the Legal icon component
|
|
851
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
852
|
+
*/
|
|
853
|
+
interface LegalProps extends React.SVGProps<SVGSVGElement> {
|
|
854
|
+
size?: number | string;
|
|
855
|
+
}
|
|
856
|
+
/**
|
|
857
|
+
* Legal icon component
|
|
858
|
+
* @example
|
|
859
|
+
* ```tsx
|
|
860
|
+
* import { Legal } from 'magick-icons';
|
|
861
|
+
*
|
|
862
|
+
* <Legal size={24} className="text-blue-500" strokeWidth={2} />
|
|
863
|
+
* ```
|
|
864
|
+
*/
|
|
865
|
+
declare const Legal: React.ForwardRefExoticComponent<Omit<LegalProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
866
|
+
|
|
867
|
+
/**
|
|
868
|
+
* Props for the LikeBold icon component
|
|
869
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
870
|
+
*/
|
|
871
|
+
interface LikeBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
872
|
+
size?: number | string;
|
|
873
|
+
}
|
|
874
|
+
/**
|
|
875
|
+
* LikeBold icon component
|
|
876
|
+
* @example
|
|
877
|
+
* ```tsx
|
|
878
|
+
* import { LikeBold } from 'magick-icons';
|
|
879
|
+
*
|
|
880
|
+
* <LikeBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
881
|
+
* ```
|
|
882
|
+
*/
|
|
883
|
+
declare const LikeBold: React.ForwardRefExoticComponent<Omit<LikeBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
884
|
+
|
|
813
885
|
/**
|
|
814
886
|
* Props for the Line icon component
|
|
815
887
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -828,6 +900,24 @@ interface LineProps extends React.SVGProps<SVGSVGElement> {
|
|
|
828
900
|
*/
|
|
829
901
|
declare const Line: React.ForwardRefExoticComponent<Omit<LineProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
830
902
|
|
|
903
|
+
/**
|
|
904
|
+
* Props for the LinkSquare icon component
|
|
905
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
906
|
+
*/
|
|
907
|
+
interface LinkSquareProps extends React.SVGProps<SVGSVGElement> {
|
|
908
|
+
size?: number | string;
|
|
909
|
+
}
|
|
910
|
+
/**
|
|
911
|
+
* LinkSquare icon component
|
|
912
|
+
* @example
|
|
913
|
+
* ```tsx
|
|
914
|
+
* import { LinkSquare } from 'magick-icons';
|
|
915
|
+
*
|
|
916
|
+
* <LinkSquare size={24} className="text-blue-500" strokeWidth={2} />
|
|
917
|
+
* ```
|
|
918
|
+
*/
|
|
919
|
+
declare const LinkSquare: React.ForwardRefExoticComponent<Omit<LinkSquareProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
920
|
+
|
|
831
921
|
/**
|
|
832
922
|
* Props for the List icon component
|
|
833
923
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -900,6 +990,42 @@ interface ListTodoProps extends React.SVGProps<SVGSVGElement> {
|
|
|
900
990
|
*/
|
|
901
991
|
declare const ListTodo: React.ForwardRefExoticComponent<Omit<ListTodoProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
902
992
|
|
|
993
|
+
/**
|
|
994
|
+
* Props for the Lock icon component
|
|
995
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
996
|
+
*/
|
|
997
|
+
interface LockProps extends React.SVGProps<SVGSVGElement> {
|
|
998
|
+
size?: number | string;
|
|
999
|
+
}
|
|
1000
|
+
/**
|
|
1001
|
+
* Lock icon component
|
|
1002
|
+
* @example
|
|
1003
|
+
* ```tsx
|
|
1004
|
+
* import { Lock } from 'magick-icons';
|
|
1005
|
+
*
|
|
1006
|
+
* <Lock size={24} className="text-blue-500" strokeWidth={2} />
|
|
1007
|
+
* ```
|
|
1008
|
+
*/
|
|
1009
|
+
declare const Lock: React.ForwardRefExoticComponent<Omit<LockProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1010
|
+
|
|
1011
|
+
/**
|
|
1012
|
+
* Props for the MagickPotion icon component
|
|
1013
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1014
|
+
*/
|
|
1015
|
+
interface MagickPotionProps extends React.SVGProps<SVGSVGElement> {
|
|
1016
|
+
size?: number | string;
|
|
1017
|
+
}
|
|
1018
|
+
/**
|
|
1019
|
+
* MagickPotion icon component
|
|
1020
|
+
* @example
|
|
1021
|
+
* ```tsx
|
|
1022
|
+
* import { MagickPotion } from 'magick-icons';
|
|
1023
|
+
*
|
|
1024
|
+
* <MagickPotion size={24} className="text-blue-500" strokeWidth={2} />
|
|
1025
|
+
* ```
|
|
1026
|
+
*/
|
|
1027
|
+
declare const MagickPotion: React.ForwardRefExoticComponent<Omit<MagickPotionProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1028
|
+
|
|
903
1029
|
/**
|
|
904
1030
|
* Props for the MagickoCheck icon component
|
|
905
1031
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -918,6 +1044,60 @@ interface MagickoCheckProps extends React.SVGProps<SVGSVGElement> {
|
|
|
918
1044
|
*/
|
|
919
1045
|
declare const MagickoCheck: React.ForwardRefExoticComponent<Omit<MagickoCheckProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
920
1046
|
|
|
1047
|
+
/**
|
|
1048
|
+
* Props for the Marketing icon component
|
|
1049
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1050
|
+
*/
|
|
1051
|
+
interface MarketingProps extends React.SVGProps<SVGSVGElement> {
|
|
1052
|
+
size?: number | string;
|
|
1053
|
+
}
|
|
1054
|
+
/**
|
|
1055
|
+
* Marketing icon component
|
|
1056
|
+
* @example
|
|
1057
|
+
* ```tsx
|
|
1058
|
+
* import { Marketing } from 'magick-icons';
|
|
1059
|
+
*
|
|
1060
|
+
* <Marketing size={24} className="text-blue-500" strokeWidth={2} />
|
|
1061
|
+
* ```
|
|
1062
|
+
*/
|
|
1063
|
+
declare const Marketing: React.ForwardRefExoticComponent<Omit<MarketingProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1064
|
+
|
|
1065
|
+
/**
|
|
1066
|
+
* Props for the MessageEdit icon component
|
|
1067
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1068
|
+
*/
|
|
1069
|
+
interface MessageEditProps extends React.SVGProps<SVGSVGElement> {
|
|
1070
|
+
size?: number | string;
|
|
1071
|
+
}
|
|
1072
|
+
/**
|
|
1073
|
+
* MessageEdit icon component
|
|
1074
|
+
* @example
|
|
1075
|
+
* ```tsx
|
|
1076
|
+
* import { MessageEdit } from 'magick-icons';
|
|
1077
|
+
*
|
|
1078
|
+
* <MessageEdit size={24} className="text-blue-500" strokeWidth={2} />
|
|
1079
|
+
* ```
|
|
1080
|
+
*/
|
|
1081
|
+
declare const MessageEdit: React.ForwardRefExoticComponent<Omit<MessageEditProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1082
|
+
|
|
1083
|
+
/**
|
|
1084
|
+
* Props for the Network icon component
|
|
1085
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1086
|
+
*/
|
|
1087
|
+
interface NetworkProps extends React.SVGProps<SVGSVGElement> {
|
|
1088
|
+
size?: number | string;
|
|
1089
|
+
}
|
|
1090
|
+
/**
|
|
1091
|
+
* Network icon component
|
|
1092
|
+
* @example
|
|
1093
|
+
* ```tsx
|
|
1094
|
+
* import { Network } from 'magick-icons';
|
|
1095
|
+
*
|
|
1096
|
+
* <Network size={24} className="text-blue-500" strokeWidth={2} />
|
|
1097
|
+
* ```
|
|
1098
|
+
*/
|
|
1099
|
+
declare const Network: React.ForwardRefExoticComponent<Omit<NetworkProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1100
|
+
|
|
921
1101
|
/**
|
|
922
1102
|
* Props for the NotiDot icon component
|
|
923
1103
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -936,6 +1116,24 @@ interface NotiDotProps extends React.SVGProps<SVGSVGElement> {
|
|
|
936
1116
|
*/
|
|
937
1117
|
declare const NotiDot: React.ForwardRefExoticComponent<Omit<NotiDotProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
938
1118
|
|
|
1119
|
+
/**
|
|
1120
|
+
* Props for the PA icon component
|
|
1121
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1122
|
+
*/
|
|
1123
|
+
interface PAProps extends React.SVGProps<SVGSVGElement> {
|
|
1124
|
+
size?: number | string;
|
|
1125
|
+
}
|
|
1126
|
+
/**
|
|
1127
|
+
* PA icon component
|
|
1128
|
+
* @example
|
|
1129
|
+
* ```tsx
|
|
1130
|
+
* import { PA } from 'magick-icons';
|
|
1131
|
+
*
|
|
1132
|
+
* <PA size={24} className="text-blue-500" strokeWidth={2} />
|
|
1133
|
+
* ```
|
|
1134
|
+
*/
|
|
1135
|
+
declare const PA: React.ForwardRefExoticComponent<Omit<PAProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1136
|
+
|
|
939
1137
|
/**
|
|
940
1138
|
* Props for the PauseSquare icon component
|
|
941
1139
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -1026,6 +1224,24 @@ interface SperateDotProps extends React.SVGProps<SVGSVGElement> {
|
|
|
1026
1224
|
*/
|
|
1027
1225
|
declare const SperateDot: React.ForwardRefExoticComponent<Omit<SperateDotProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1028
1226
|
|
|
1227
|
+
/**
|
|
1228
|
+
* Props for the SquarePen1 icon component
|
|
1229
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1230
|
+
*/
|
|
1231
|
+
interface SquarePen1Props extends React.SVGProps<SVGSVGElement> {
|
|
1232
|
+
size?: number | string;
|
|
1233
|
+
}
|
|
1234
|
+
/**
|
|
1235
|
+
* SquarePen1 icon component
|
|
1236
|
+
* @example
|
|
1237
|
+
* ```tsx
|
|
1238
|
+
* import { SquarePen1 } from 'magick-icons';
|
|
1239
|
+
*
|
|
1240
|
+
* <SquarePen1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
1241
|
+
* ```
|
|
1242
|
+
*/
|
|
1243
|
+
declare const SquarePen1: React.ForwardRefExoticComponent<Omit<SquarePen1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1244
|
+
|
|
1029
1245
|
/**
|
|
1030
1246
|
* Props for the Strikethrough icon component
|
|
1031
1247
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -1044,6 +1260,60 @@ interface StrikethroughProps extends React.SVGProps<SVGSVGElement> {
|
|
|
1044
1260
|
*/
|
|
1045
1261
|
declare const Strikethrough: React.ForwardRefExoticComponent<Omit<StrikethroughProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1046
1262
|
|
|
1263
|
+
/**
|
|
1264
|
+
* Props for the Tasks icon component
|
|
1265
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1266
|
+
*/
|
|
1267
|
+
interface TasksProps extends React.SVGProps<SVGSVGElement> {
|
|
1268
|
+
size?: number | string;
|
|
1269
|
+
}
|
|
1270
|
+
/**
|
|
1271
|
+
* Tasks icon component
|
|
1272
|
+
* @example
|
|
1273
|
+
* ```tsx
|
|
1274
|
+
* import { Tasks } from 'magick-icons';
|
|
1275
|
+
*
|
|
1276
|
+
* <Tasks size={24} className="text-blue-500" strokeWidth={2} />
|
|
1277
|
+
* ```
|
|
1278
|
+
*/
|
|
1279
|
+
declare const Tasks: React.ForwardRefExoticComponent<Omit<TasksProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1280
|
+
|
|
1281
|
+
/**
|
|
1282
|
+
* Props for the Trash icon component
|
|
1283
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1284
|
+
*/
|
|
1285
|
+
interface TrashProps extends React.SVGProps<SVGSVGElement> {
|
|
1286
|
+
size?: number | string;
|
|
1287
|
+
}
|
|
1288
|
+
/**
|
|
1289
|
+
* Trash icon component
|
|
1290
|
+
* @example
|
|
1291
|
+
* ```tsx
|
|
1292
|
+
* import { Trash } from 'magick-icons';
|
|
1293
|
+
*
|
|
1294
|
+
* <Trash size={24} className="text-blue-500" strokeWidth={2} />
|
|
1295
|
+
* ```
|
|
1296
|
+
*/
|
|
1297
|
+
declare const Trash: React.ForwardRefExoticComponent<Omit<TrashProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1298
|
+
|
|
1299
|
+
/**
|
|
1300
|
+
* Props for the Video icon component
|
|
1301
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1302
|
+
*/
|
|
1303
|
+
interface VideoProps extends React.SVGProps<SVGSVGElement> {
|
|
1304
|
+
size?: number | string;
|
|
1305
|
+
}
|
|
1306
|
+
/**
|
|
1307
|
+
* Video icon component
|
|
1308
|
+
* @example
|
|
1309
|
+
* ```tsx
|
|
1310
|
+
* import { Video } from 'magick-icons';
|
|
1311
|
+
*
|
|
1312
|
+
* <Video size={24} className="text-blue-500" strokeWidth={2} />
|
|
1313
|
+
* ```
|
|
1314
|
+
*/
|
|
1315
|
+
declare const Video: React.ForwardRefExoticComponent<Omit<VideoProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1316
|
+
|
|
1047
1317
|
/**
|
|
1048
1318
|
* Props for the X icon component
|
|
1049
1319
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -1062,4 +1332,4 @@ interface XProps extends React.SVGProps<SVGSVGElement> {
|
|
|
1062
1332
|
*/
|
|
1063
1333
|
declare const X: React.ForwardRefExoticComponent<Omit<XProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1064
1334
|
|
|
1065
|
-
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, IconsaxAiScienceBold, type IconsaxAiScienceBoldProps, IconsaxAttachCircleBold, type IconsaxAttachCircleBoldProps, IconsaxBrainBold, type IconsaxBrainBoldProps, IconsaxMonetizeBold, type IconsaxMonetizeBoldProps, IconsaxPenBrushBold, type IconsaxPenBrushBoldProps, IconsaxPeopleBold, type IconsaxPeopleBoldProps, IconsaxTaskSquareBold, type IconsaxTaskSquareBoldProps, IconsaxVideoCameraBold, type IconsaxVideoCameraBoldProps, IconsaxWord, type IconsaxWordProps, InProgress, type InProgressProps, Line, type LineProps, List, ListEnd, type ListEndProps, ListOrdered, type ListOrderedProps, type ListProps, ListTodo, type ListTodoProps, MagickoCheck, type MagickoCheckProps, NotiDot, type NotiDotProps, PauseSquare, type PauseSquareProps, Pdf, type PdfProps, PlayFilled, type PlayFilledProps, Signature, type SignatureProps, SperateDot, type SperateDotProps, Strikethrough, type StrikethroughProps, X, type XProps };
|
|
1335
|
+
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, FluentSparkle28Filled, type FluentSparkle28FilledProps, 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, IconsaxAiScienceBold, type IconsaxAiScienceBoldProps, IconsaxAttachCircleBold, type IconsaxAttachCircleBoldProps, IconsaxBrainBold, type IconsaxBrainBoldProps, IconsaxMonetizeBold, type IconsaxMonetizeBoldProps, IconsaxPenBrushBold, type IconsaxPenBrushBoldProps, IconsaxPeopleBold, type IconsaxPeopleBoldProps, IconsaxTaskSquareBold, type IconsaxTaskSquareBoldProps, 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, Lock, type LockProps, 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, Tasks, type TasksProps, Trash, type TrashProps, Video, type VideoProps, X, type XProps };
|