magick-icons 0.1.207 → 0.1.208
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 +253 -1
- package/index.d.ts +253 -1
- package/index.js +238 -58
- package/index.js.map +1 -1
- package/index.mjs +224 -58
- package/index.mjs.map +1 -1
- package/package.json +1 -1
package/index.d.mts
CHANGED
|
@@ -810,6 +810,60 @@ interface InProgressProps extends React.SVGProps<SVGSVGElement> {
|
|
|
810
810
|
*/
|
|
811
811
|
declare const InProgress: React.ForwardRefExoticComponent<Omit<InProgressProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
812
812
|
|
|
813
|
+
/**
|
|
814
|
+
* Props for the InfoCircleBold icon component
|
|
815
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
816
|
+
*/
|
|
817
|
+
interface InfoCircleBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
818
|
+
size?: number | string;
|
|
819
|
+
}
|
|
820
|
+
/**
|
|
821
|
+
* InfoCircleBold icon component
|
|
822
|
+
* @example
|
|
823
|
+
* ```tsx
|
|
824
|
+
* import { InfoCircleBold } from 'magick-icons';
|
|
825
|
+
*
|
|
826
|
+
* <InfoCircleBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
827
|
+
* ```
|
|
828
|
+
*/
|
|
829
|
+
declare const InfoCircleBold: React.ForwardRefExoticComponent<Omit<InfoCircleBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
830
|
+
|
|
831
|
+
/**
|
|
832
|
+
* Props for the Legal icon component
|
|
833
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
834
|
+
*/
|
|
835
|
+
interface LegalProps extends React.SVGProps<SVGSVGElement> {
|
|
836
|
+
size?: number | string;
|
|
837
|
+
}
|
|
838
|
+
/**
|
|
839
|
+
* Legal icon component
|
|
840
|
+
* @example
|
|
841
|
+
* ```tsx
|
|
842
|
+
* import { Legal } from 'magick-icons';
|
|
843
|
+
*
|
|
844
|
+
* <Legal size={24} className="text-blue-500" strokeWidth={2} />
|
|
845
|
+
* ```
|
|
846
|
+
*/
|
|
847
|
+
declare const Legal: React.ForwardRefExoticComponent<Omit<LegalProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
848
|
+
|
|
849
|
+
/**
|
|
850
|
+
* Props for the LikeBold icon component
|
|
851
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
852
|
+
*/
|
|
853
|
+
interface LikeBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
854
|
+
size?: number | string;
|
|
855
|
+
}
|
|
856
|
+
/**
|
|
857
|
+
* LikeBold icon component
|
|
858
|
+
* @example
|
|
859
|
+
* ```tsx
|
|
860
|
+
* import { LikeBold } from 'magick-icons';
|
|
861
|
+
*
|
|
862
|
+
* <LikeBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
863
|
+
* ```
|
|
864
|
+
*/
|
|
865
|
+
declare const LikeBold: React.ForwardRefExoticComponent<Omit<LikeBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
866
|
+
|
|
813
867
|
/**
|
|
814
868
|
* Props for the Line icon component
|
|
815
869
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -828,6 +882,24 @@ interface LineProps extends React.SVGProps<SVGSVGElement> {
|
|
|
828
882
|
*/
|
|
829
883
|
declare const Line: React.ForwardRefExoticComponent<Omit<LineProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
830
884
|
|
|
885
|
+
/**
|
|
886
|
+
* Props for the LinkSquare icon component
|
|
887
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
888
|
+
*/
|
|
889
|
+
interface LinkSquareProps extends React.SVGProps<SVGSVGElement> {
|
|
890
|
+
size?: number | string;
|
|
891
|
+
}
|
|
892
|
+
/**
|
|
893
|
+
* LinkSquare icon component
|
|
894
|
+
* @example
|
|
895
|
+
* ```tsx
|
|
896
|
+
* import { LinkSquare } from 'magick-icons';
|
|
897
|
+
*
|
|
898
|
+
* <LinkSquare size={24} className="text-blue-500" strokeWidth={2} />
|
|
899
|
+
* ```
|
|
900
|
+
*/
|
|
901
|
+
declare const LinkSquare: React.ForwardRefExoticComponent<Omit<LinkSquareProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
902
|
+
|
|
831
903
|
/**
|
|
832
904
|
* Props for the List icon component
|
|
833
905
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -900,6 +972,42 @@ interface ListTodoProps extends React.SVGProps<SVGSVGElement> {
|
|
|
900
972
|
*/
|
|
901
973
|
declare const ListTodo: React.ForwardRefExoticComponent<Omit<ListTodoProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
902
974
|
|
|
975
|
+
/**
|
|
976
|
+
* Props for the Lock icon component
|
|
977
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
978
|
+
*/
|
|
979
|
+
interface LockProps extends React.SVGProps<SVGSVGElement> {
|
|
980
|
+
size?: number | string;
|
|
981
|
+
}
|
|
982
|
+
/**
|
|
983
|
+
* Lock icon component
|
|
984
|
+
* @example
|
|
985
|
+
* ```tsx
|
|
986
|
+
* import { Lock } from 'magick-icons';
|
|
987
|
+
*
|
|
988
|
+
* <Lock size={24} className="text-blue-500" strokeWidth={2} />
|
|
989
|
+
* ```
|
|
990
|
+
*/
|
|
991
|
+
declare const Lock: React.ForwardRefExoticComponent<Omit<LockProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
992
|
+
|
|
993
|
+
/**
|
|
994
|
+
* Props for the MagickPotion icon component
|
|
995
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
996
|
+
*/
|
|
997
|
+
interface MagickPotionProps extends React.SVGProps<SVGSVGElement> {
|
|
998
|
+
size?: number | string;
|
|
999
|
+
}
|
|
1000
|
+
/**
|
|
1001
|
+
* MagickPotion icon component
|
|
1002
|
+
* @example
|
|
1003
|
+
* ```tsx
|
|
1004
|
+
* import { MagickPotion } from 'magick-icons';
|
|
1005
|
+
*
|
|
1006
|
+
* <MagickPotion size={24} className="text-blue-500" strokeWidth={2} />
|
|
1007
|
+
* ```
|
|
1008
|
+
*/
|
|
1009
|
+
declare const MagickPotion: React.ForwardRefExoticComponent<Omit<MagickPotionProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1010
|
+
|
|
903
1011
|
/**
|
|
904
1012
|
* Props for the MagickoCheck icon component
|
|
905
1013
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -918,6 +1026,60 @@ interface MagickoCheckProps extends React.SVGProps<SVGSVGElement> {
|
|
|
918
1026
|
*/
|
|
919
1027
|
declare const MagickoCheck: React.ForwardRefExoticComponent<Omit<MagickoCheckProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
920
1028
|
|
|
1029
|
+
/**
|
|
1030
|
+
* Props for the Marketing icon component
|
|
1031
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1032
|
+
*/
|
|
1033
|
+
interface MarketingProps extends React.SVGProps<SVGSVGElement> {
|
|
1034
|
+
size?: number | string;
|
|
1035
|
+
}
|
|
1036
|
+
/**
|
|
1037
|
+
* Marketing icon component
|
|
1038
|
+
* @example
|
|
1039
|
+
* ```tsx
|
|
1040
|
+
* import { Marketing } from 'magick-icons';
|
|
1041
|
+
*
|
|
1042
|
+
* <Marketing size={24} className="text-blue-500" strokeWidth={2} />
|
|
1043
|
+
* ```
|
|
1044
|
+
*/
|
|
1045
|
+
declare const Marketing: React.ForwardRefExoticComponent<Omit<MarketingProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1046
|
+
|
|
1047
|
+
/**
|
|
1048
|
+
* Props for the MessageEdit icon component
|
|
1049
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1050
|
+
*/
|
|
1051
|
+
interface MessageEditProps extends React.SVGProps<SVGSVGElement> {
|
|
1052
|
+
size?: number | string;
|
|
1053
|
+
}
|
|
1054
|
+
/**
|
|
1055
|
+
* MessageEdit icon component
|
|
1056
|
+
* @example
|
|
1057
|
+
* ```tsx
|
|
1058
|
+
* import { MessageEdit } from 'magick-icons';
|
|
1059
|
+
*
|
|
1060
|
+
* <MessageEdit size={24} className="text-blue-500" strokeWidth={2} />
|
|
1061
|
+
* ```
|
|
1062
|
+
*/
|
|
1063
|
+
declare const MessageEdit: React.ForwardRefExoticComponent<Omit<MessageEditProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1064
|
+
|
|
1065
|
+
/**
|
|
1066
|
+
* Props for the Network icon component
|
|
1067
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1068
|
+
*/
|
|
1069
|
+
interface NetworkProps extends React.SVGProps<SVGSVGElement> {
|
|
1070
|
+
size?: number | string;
|
|
1071
|
+
}
|
|
1072
|
+
/**
|
|
1073
|
+
* Network icon component
|
|
1074
|
+
* @example
|
|
1075
|
+
* ```tsx
|
|
1076
|
+
* import { Network } from 'magick-icons';
|
|
1077
|
+
*
|
|
1078
|
+
* <Network size={24} className="text-blue-500" strokeWidth={2} />
|
|
1079
|
+
* ```
|
|
1080
|
+
*/
|
|
1081
|
+
declare const Network: React.ForwardRefExoticComponent<Omit<NetworkProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1082
|
+
|
|
921
1083
|
/**
|
|
922
1084
|
* Props for the NotiDot icon component
|
|
923
1085
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -936,6 +1098,24 @@ interface NotiDotProps extends React.SVGProps<SVGSVGElement> {
|
|
|
936
1098
|
*/
|
|
937
1099
|
declare const NotiDot: React.ForwardRefExoticComponent<Omit<NotiDotProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
938
1100
|
|
|
1101
|
+
/**
|
|
1102
|
+
* Props for the PA icon component
|
|
1103
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1104
|
+
*/
|
|
1105
|
+
interface PAProps extends React.SVGProps<SVGSVGElement> {
|
|
1106
|
+
size?: number | string;
|
|
1107
|
+
}
|
|
1108
|
+
/**
|
|
1109
|
+
* PA icon component
|
|
1110
|
+
* @example
|
|
1111
|
+
* ```tsx
|
|
1112
|
+
* import { PA } from 'magick-icons';
|
|
1113
|
+
*
|
|
1114
|
+
* <PA size={24} className="text-blue-500" strokeWidth={2} />
|
|
1115
|
+
* ```
|
|
1116
|
+
*/
|
|
1117
|
+
declare const PA: React.ForwardRefExoticComponent<Omit<PAProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1118
|
+
|
|
939
1119
|
/**
|
|
940
1120
|
* Props for the PauseSquare icon component
|
|
941
1121
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -1026,6 +1206,24 @@ interface SperateDotProps extends React.SVGProps<SVGSVGElement> {
|
|
|
1026
1206
|
*/
|
|
1027
1207
|
declare const SperateDot: React.ForwardRefExoticComponent<Omit<SperateDotProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1028
1208
|
|
|
1209
|
+
/**
|
|
1210
|
+
* Props for the SquarePen1 icon component
|
|
1211
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1212
|
+
*/
|
|
1213
|
+
interface SquarePen1Props extends React.SVGProps<SVGSVGElement> {
|
|
1214
|
+
size?: number | string;
|
|
1215
|
+
}
|
|
1216
|
+
/**
|
|
1217
|
+
* SquarePen1 icon component
|
|
1218
|
+
* @example
|
|
1219
|
+
* ```tsx
|
|
1220
|
+
* import { SquarePen1 } from 'magick-icons';
|
|
1221
|
+
*
|
|
1222
|
+
* <SquarePen1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
1223
|
+
* ```
|
|
1224
|
+
*/
|
|
1225
|
+
declare const SquarePen1: React.ForwardRefExoticComponent<Omit<SquarePen1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1226
|
+
|
|
1029
1227
|
/**
|
|
1030
1228
|
* Props for the Strikethrough icon component
|
|
1031
1229
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -1044,6 +1242,60 @@ interface StrikethroughProps extends React.SVGProps<SVGSVGElement> {
|
|
|
1044
1242
|
*/
|
|
1045
1243
|
declare const Strikethrough: React.ForwardRefExoticComponent<Omit<StrikethroughProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1046
1244
|
|
|
1245
|
+
/**
|
|
1246
|
+
* Props for the Tasks icon component
|
|
1247
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1248
|
+
*/
|
|
1249
|
+
interface TasksProps extends React.SVGProps<SVGSVGElement> {
|
|
1250
|
+
size?: number | string;
|
|
1251
|
+
}
|
|
1252
|
+
/**
|
|
1253
|
+
* Tasks icon component
|
|
1254
|
+
* @example
|
|
1255
|
+
* ```tsx
|
|
1256
|
+
* import { Tasks } from 'magick-icons';
|
|
1257
|
+
*
|
|
1258
|
+
* <Tasks size={24} className="text-blue-500" strokeWidth={2} />
|
|
1259
|
+
* ```
|
|
1260
|
+
*/
|
|
1261
|
+
declare const Tasks: React.ForwardRefExoticComponent<Omit<TasksProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1262
|
+
|
|
1263
|
+
/**
|
|
1264
|
+
* Props for the Trash icon component
|
|
1265
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1266
|
+
*/
|
|
1267
|
+
interface TrashProps extends React.SVGProps<SVGSVGElement> {
|
|
1268
|
+
size?: number | string;
|
|
1269
|
+
}
|
|
1270
|
+
/**
|
|
1271
|
+
* Trash icon component
|
|
1272
|
+
* @example
|
|
1273
|
+
* ```tsx
|
|
1274
|
+
* import { Trash } from 'magick-icons';
|
|
1275
|
+
*
|
|
1276
|
+
* <Trash size={24} className="text-blue-500" strokeWidth={2} />
|
|
1277
|
+
* ```
|
|
1278
|
+
*/
|
|
1279
|
+
declare const Trash: React.ForwardRefExoticComponent<Omit<TrashProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1280
|
+
|
|
1281
|
+
/**
|
|
1282
|
+
* Props for the Video icon component
|
|
1283
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1284
|
+
*/
|
|
1285
|
+
interface VideoProps extends React.SVGProps<SVGSVGElement> {
|
|
1286
|
+
size?: number | string;
|
|
1287
|
+
}
|
|
1288
|
+
/**
|
|
1289
|
+
* Video icon component
|
|
1290
|
+
* @example
|
|
1291
|
+
* ```tsx
|
|
1292
|
+
* import { Video } from 'magick-icons';
|
|
1293
|
+
*
|
|
1294
|
+
* <Video size={24} className="text-blue-500" strokeWidth={2} />
|
|
1295
|
+
* ```
|
|
1296
|
+
*/
|
|
1297
|
+
declare const Video: React.ForwardRefExoticComponent<Omit<VideoProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1298
|
+
|
|
1047
1299
|
/**
|
|
1048
1300
|
* Props for the X icon component
|
|
1049
1301
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -1062,4 +1314,4 @@ interface XProps extends React.SVGProps<SVGSVGElement> {
|
|
|
1062
1314
|
*/
|
|
1063
1315
|
declare const X: React.ForwardRefExoticComponent<Omit<XProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1064
1316
|
|
|
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 };
|
|
1317
|
+
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, 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
|
@@ -810,6 +810,60 @@ interface InProgressProps extends React.SVGProps<SVGSVGElement> {
|
|
|
810
810
|
*/
|
|
811
811
|
declare const InProgress: React.ForwardRefExoticComponent<Omit<InProgressProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
812
812
|
|
|
813
|
+
/**
|
|
814
|
+
* Props for the InfoCircleBold icon component
|
|
815
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
816
|
+
*/
|
|
817
|
+
interface InfoCircleBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
818
|
+
size?: number | string;
|
|
819
|
+
}
|
|
820
|
+
/**
|
|
821
|
+
* InfoCircleBold icon component
|
|
822
|
+
* @example
|
|
823
|
+
* ```tsx
|
|
824
|
+
* import { InfoCircleBold } from 'magick-icons';
|
|
825
|
+
*
|
|
826
|
+
* <InfoCircleBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
827
|
+
* ```
|
|
828
|
+
*/
|
|
829
|
+
declare const InfoCircleBold: React.ForwardRefExoticComponent<Omit<InfoCircleBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
830
|
+
|
|
831
|
+
/**
|
|
832
|
+
* Props for the Legal icon component
|
|
833
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
834
|
+
*/
|
|
835
|
+
interface LegalProps extends React.SVGProps<SVGSVGElement> {
|
|
836
|
+
size?: number | string;
|
|
837
|
+
}
|
|
838
|
+
/**
|
|
839
|
+
* Legal icon component
|
|
840
|
+
* @example
|
|
841
|
+
* ```tsx
|
|
842
|
+
* import { Legal } from 'magick-icons';
|
|
843
|
+
*
|
|
844
|
+
* <Legal size={24} className="text-blue-500" strokeWidth={2} />
|
|
845
|
+
* ```
|
|
846
|
+
*/
|
|
847
|
+
declare const Legal: React.ForwardRefExoticComponent<Omit<LegalProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
848
|
+
|
|
849
|
+
/**
|
|
850
|
+
* Props for the LikeBold icon component
|
|
851
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
852
|
+
*/
|
|
853
|
+
interface LikeBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
854
|
+
size?: number | string;
|
|
855
|
+
}
|
|
856
|
+
/**
|
|
857
|
+
* LikeBold icon component
|
|
858
|
+
* @example
|
|
859
|
+
* ```tsx
|
|
860
|
+
* import { LikeBold } from 'magick-icons';
|
|
861
|
+
*
|
|
862
|
+
* <LikeBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
863
|
+
* ```
|
|
864
|
+
*/
|
|
865
|
+
declare const LikeBold: React.ForwardRefExoticComponent<Omit<LikeBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
866
|
+
|
|
813
867
|
/**
|
|
814
868
|
* Props for the Line icon component
|
|
815
869
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -828,6 +882,24 @@ interface LineProps extends React.SVGProps<SVGSVGElement> {
|
|
|
828
882
|
*/
|
|
829
883
|
declare const Line: React.ForwardRefExoticComponent<Omit<LineProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
830
884
|
|
|
885
|
+
/**
|
|
886
|
+
* Props for the LinkSquare icon component
|
|
887
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
888
|
+
*/
|
|
889
|
+
interface LinkSquareProps extends React.SVGProps<SVGSVGElement> {
|
|
890
|
+
size?: number | string;
|
|
891
|
+
}
|
|
892
|
+
/**
|
|
893
|
+
* LinkSquare icon component
|
|
894
|
+
* @example
|
|
895
|
+
* ```tsx
|
|
896
|
+
* import { LinkSquare } from 'magick-icons';
|
|
897
|
+
*
|
|
898
|
+
* <LinkSquare size={24} className="text-blue-500" strokeWidth={2} />
|
|
899
|
+
* ```
|
|
900
|
+
*/
|
|
901
|
+
declare const LinkSquare: React.ForwardRefExoticComponent<Omit<LinkSquareProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
902
|
+
|
|
831
903
|
/**
|
|
832
904
|
* Props for the List icon component
|
|
833
905
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -900,6 +972,42 @@ interface ListTodoProps extends React.SVGProps<SVGSVGElement> {
|
|
|
900
972
|
*/
|
|
901
973
|
declare const ListTodo: React.ForwardRefExoticComponent<Omit<ListTodoProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
902
974
|
|
|
975
|
+
/**
|
|
976
|
+
* Props for the Lock icon component
|
|
977
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
978
|
+
*/
|
|
979
|
+
interface LockProps extends React.SVGProps<SVGSVGElement> {
|
|
980
|
+
size?: number | string;
|
|
981
|
+
}
|
|
982
|
+
/**
|
|
983
|
+
* Lock icon component
|
|
984
|
+
* @example
|
|
985
|
+
* ```tsx
|
|
986
|
+
* import { Lock } from 'magick-icons';
|
|
987
|
+
*
|
|
988
|
+
* <Lock size={24} className="text-blue-500" strokeWidth={2} />
|
|
989
|
+
* ```
|
|
990
|
+
*/
|
|
991
|
+
declare const Lock: React.ForwardRefExoticComponent<Omit<LockProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
992
|
+
|
|
993
|
+
/**
|
|
994
|
+
* Props for the MagickPotion icon component
|
|
995
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
996
|
+
*/
|
|
997
|
+
interface MagickPotionProps extends React.SVGProps<SVGSVGElement> {
|
|
998
|
+
size?: number | string;
|
|
999
|
+
}
|
|
1000
|
+
/**
|
|
1001
|
+
* MagickPotion icon component
|
|
1002
|
+
* @example
|
|
1003
|
+
* ```tsx
|
|
1004
|
+
* import { MagickPotion } from 'magick-icons';
|
|
1005
|
+
*
|
|
1006
|
+
* <MagickPotion size={24} className="text-blue-500" strokeWidth={2} />
|
|
1007
|
+
* ```
|
|
1008
|
+
*/
|
|
1009
|
+
declare const MagickPotion: React.ForwardRefExoticComponent<Omit<MagickPotionProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1010
|
+
|
|
903
1011
|
/**
|
|
904
1012
|
* Props for the MagickoCheck icon component
|
|
905
1013
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -918,6 +1026,60 @@ interface MagickoCheckProps extends React.SVGProps<SVGSVGElement> {
|
|
|
918
1026
|
*/
|
|
919
1027
|
declare const MagickoCheck: React.ForwardRefExoticComponent<Omit<MagickoCheckProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
920
1028
|
|
|
1029
|
+
/**
|
|
1030
|
+
* Props for the Marketing icon component
|
|
1031
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1032
|
+
*/
|
|
1033
|
+
interface MarketingProps extends React.SVGProps<SVGSVGElement> {
|
|
1034
|
+
size?: number | string;
|
|
1035
|
+
}
|
|
1036
|
+
/**
|
|
1037
|
+
* Marketing icon component
|
|
1038
|
+
* @example
|
|
1039
|
+
* ```tsx
|
|
1040
|
+
* import { Marketing } from 'magick-icons';
|
|
1041
|
+
*
|
|
1042
|
+
* <Marketing size={24} className="text-blue-500" strokeWidth={2} />
|
|
1043
|
+
* ```
|
|
1044
|
+
*/
|
|
1045
|
+
declare const Marketing: React.ForwardRefExoticComponent<Omit<MarketingProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1046
|
+
|
|
1047
|
+
/**
|
|
1048
|
+
* Props for the MessageEdit icon component
|
|
1049
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1050
|
+
*/
|
|
1051
|
+
interface MessageEditProps extends React.SVGProps<SVGSVGElement> {
|
|
1052
|
+
size?: number | string;
|
|
1053
|
+
}
|
|
1054
|
+
/**
|
|
1055
|
+
* MessageEdit icon component
|
|
1056
|
+
* @example
|
|
1057
|
+
* ```tsx
|
|
1058
|
+
* import { MessageEdit } from 'magick-icons';
|
|
1059
|
+
*
|
|
1060
|
+
* <MessageEdit size={24} className="text-blue-500" strokeWidth={2} />
|
|
1061
|
+
* ```
|
|
1062
|
+
*/
|
|
1063
|
+
declare const MessageEdit: React.ForwardRefExoticComponent<Omit<MessageEditProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1064
|
+
|
|
1065
|
+
/**
|
|
1066
|
+
* Props for the Network icon component
|
|
1067
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1068
|
+
*/
|
|
1069
|
+
interface NetworkProps extends React.SVGProps<SVGSVGElement> {
|
|
1070
|
+
size?: number | string;
|
|
1071
|
+
}
|
|
1072
|
+
/**
|
|
1073
|
+
* Network icon component
|
|
1074
|
+
* @example
|
|
1075
|
+
* ```tsx
|
|
1076
|
+
* import { Network } from 'magick-icons';
|
|
1077
|
+
*
|
|
1078
|
+
* <Network size={24} className="text-blue-500" strokeWidth={2} />
|
|
1079
|
+
* ```
|
|
1080
|
+
*/
|
|
1081
|
+
declare const Network: React.ForwardRefExoticComponent<Omit<NetworkProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1082
|
+
|
|
921
1083
|
/**
|
|
922
1084
|
* Props for the NotiDot icon component
|
|
923
1085
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -936,6 +1098,24 @@ interface NotiDotProps extends React.SVGProps<SVGSVGElement> {
|
|
|
936
1098
|
*/
|
|
937
1099
|
declare const NotiDot: React.ForwardRefExoticComponent<Omit<NotiDotProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
938
1100
|
|
|
1101
|
+
/**
|
|
1102
|
+
* Props for the PA icon component
|
|
1103
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1104
|
+
*/
|
|
1105
|
+
interface PAProps extends React.SVGProps<SVGSVGElement> {
|
|
1106
|
+
size?: number | string;
|
|
1107
|
+
}
|
|
1108
|
+
/**
|
|
1109
|
+
* PA icon component
|
|
1110
|
+
* @example
|
|
1111
|
+
* ```tsx
|
|
1112
|
+
* import { PA } from 'magick-icons';
|
|
1113
|
+
*
|
|
1114
|
+
* <PA size={24} className="text-blue-500" strokeWidth={2} />
|
|
1115
|
+
* ```
|
|
1116
|
+
*/
|
|
1117
|
+
declare const PA: React.ForwardRefExoticComponent<Omit<PAProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1118
|
+
|
|
939
1119
|
/**
|
|
940
1120
|
* Props for the PauseSquare icon component
|
|
941
1121
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -1026,6 +1206,24 @@ interface SperateDotProps extends React.SVGProps<SVGSVGElement> {
|
|
|
1026
1206
|
*/
|
|
1027
1207
|
declare const SperateDot: React.ForwardRefExoticComponent<Omit<SperateDotProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1028
1208
|
|
|
1209
|
+
/**
|
|
1210
|
+
* Props for the SquarePen1 icon component
|
|
1211
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1212
|
+
*/
|
|
1213
|
+
interface SquarePen1Props extends React.SVGProps<SVGSVGElement> {
|
|
1214
|
+
size?: number | string;
|
|
1215
|
+
}
|
|
1216
|
+
/**
|
|
1217
|
+
* SquarePen1 icon component
|
|
1218
|
+
* @example
|
|
1219
|
+
* ```tsx
|
|
1220
|
+
* import { SquarePen1 } from 'magick-icons';
|
|
1221
|
+
*
|
|
1222
|
+
* <SquarePen1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
1223
|
+
* ```
|
|
1224
|
+
*/
|
|
1225
|
+
declare const SquarePen1: React.ForwardRefExoticComponent<Omit<SquarePen1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1226
|
+
|
|
1029
1227
|
/**
|
|
1030
1228
|
* Props for the Strikethrough icon component
|
|
1031
1229
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -1044,6 +1242,60 @@ interface StrikethroughProps extends React.SVGProps<SVGSVGElement> {
|
|
|
1044
1242
|
*/
|
|
1045
1243
|
declare const Strikethrough: React.ForwardRefExoticComponent<Omit<StrikethroughProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1046
1244
|
|
|
1245
|
+
/**
|
|
1246
|
+
* Props for the Tasks icon component
|
|
1247
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1248
|
+
*/
|
|
1249
|
+
interface TasksProps extends React.SVGProps<SVGSVGElement> {
|
|
1250
|
+
size?: number | string;
|
|
1251
|
+
}
|
|
1252
|
+
/**
|
|
1253
|
+
* Tasks icon component
|
|
1254
|
+
* @example
|
|
1255
|
+
* ```tsx
|
|
1256
|
+
* import { Tasks } from 'magick-icons';
|
|
1257
|
+
*
|
|
1258
|
+
* <Tasks size={24} className="text-blue-500" strokeWidth={2} />
|
|
1259
|
+
* ```
|
|
1260
|
+
*/
|
|
1261
|
+
declare const Tasks: React.ForwardRefExoticComponent<Omit<TasksProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1262
|
+
|
|
1263
|
+
/**
|
|
1264
|
+
* Props for the Trash icon component
|
|
1265
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1266
|
+
*/
|
|
1267
|
+
interface TrashProps extends React.SVGProps<SVGSVGElement> {
|
|
1268
|
+
size?: number | string;
|
|
1269
|
+
}
|
|
1270
|
+
/**
|
|
1271
|
+
* Trash icon component
|
|
1272
|
+
* @example
|
|
1273
|
+
* ```tsx
|
|
1274
|
+
* import { Trash } from 'magick-icons';
|
|
1275
|
+
*
|
|
1276
|
+
* <Trash size={24} className="text-blue-500" strokeWidth={2} />
|
|
1277
|
+
* ```
|
|
1278
|
+
*/
|
|
1279
|
+
declare const Trash: React.ForwardRefExoticComponent<Omit<TrashProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1280
|
+
|
|
1281
|
+
/**
|
|
1282
|
+
* Props for the Video icon component
|
|
1283
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1284
|
+
*/
|
|
1285
|
+
interface VideoProps extends React.SVGProps<SVGSVGElement> {
|
|
1286
|
+
size?: number | string;
|
|
1287
|
+
}
|
|
1288
|
+
/**
|
|
1289
|
+
* Video icon component
|
|
1290
|
+
* @example
|
|
1291
|
+
* ```tsx
|
|
1292
|
+
* import { Video } from 'magick-icons';
|
|
1293
|
+
*
|
|
1294
|
+
* <Video size={24} className="text-blue-500" strokeWidth={2} />
|
|
1295
|
+
* ```
|
|
1296
|
+
*/
|
|
1297
|
+
declare const Video: React.ForwardRefExoticComponent<Omit<VideoProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1298
|
+
|
|
1047
1299
|
/**
|
|
1048
1300
|
* Props for the X icon component
|
|
1049
1301
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -1062,4 +1314,4 @@ interface XProps extends React.SVGProps<SVGSVGElement> {
|
|
|
1062
1314
|
*/
|
|
1063
1315
|
declare const X: React.ForwardRefExoticComponent<Omit<XProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1064
1316
|
|
|
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 };
|
|
1317
|
+
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, 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 };
|