magick-icons 0.1.167 → 0.1.169

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
@@ -972,6 +972,24 @@ interface ListTodoProps extends React.SVGProps<SVGSVGElement> {
972
972
  */
973
973
  declare const ListTodo: React.ForwardRefExoticComponent<Omit<ListTodoProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
974
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
+
975
993
  /**
976
994
  * Props for the MagickPotion icon component
977
995
  * @property {number | string} [size] - Size of the icon (default: 24)
@@ -1044,6 +1062,60 @@ interface MessageEditProps extends React.SVGProps<SVGSVGElement> {
1044
1062
  */
1045
1063
  declare const MessageEdit: React.ForwardRefExoticComponent<Omit<MessageEditProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1046
1064
 
1065
+ /**
1066
+ * Props for the MingcuteMicLine1 icon component
1067
+ * @property {number | string} [size] - Size of the icon (default: 24)
1068
+ */
1069
+ interface MingcuteMicLine1Props extends React.SVGProps<SVGSVGElement> {
1070
+ size?: number | string;
1071
+ }
1072
+ /**
1073
+ * MingcuteMicLine1 icon component
1074
+ * @example
1075
+ * ```tsx
1076
+ * import { MingcuteMicLine1 } from 'magick-icons';
1077
+ *
1078
+ * <MingcuteMicLine1 size={24} className="text-blue-500" strokeWidth={2} />
1079
+ * ```
1080
+ */
1081
+ declare const MingcuteMicLine1: React.ForwardRefExoticComponent<Omit<MingcuteMicLine1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
1082
+
1083
+ /**
1084
+ * Props for the MingcuteMicLine11 icon component
1085
+ * @property {number | string} [size] - Size of the icon (default: 24)
1086
+ */
1087
+ interface MingcuteMicLine11Props extends React.SVGProps<SVGSVGElement> {
1088
+ size?: number | string;
1089
+ }
1090
+ /**
1091
+ * MingcuteMicLine11 icon component
1092
+ * @example
1093
+ * ```tsx
1094
+ * import { MingcuteMicLine11 } from 'magick-icons';
1095
+ *
1096
+ * <MingcuteMicLine11 size={24} className="text-blue-500" strokeWidth={2} />
1097
+ * ```
1098
+ */
1099
+ declare const MingcuteMicLine11: React.ForwardRefExoticComponent<Omit<MingcuteMicLine11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
1100
+
1101
+ /**
1102
+ * Props for the MingcuteMicLine12 icon component
1103
+ * @property {number | string} [size] - Size of the icon (default: 24)
1104
+ */
1105
+ interface MingcuteMicLine12Props extends React.SVGProps<SVGSVGElement> {
1106
+ size?: number | string;
1107
+ }
1108
+ /**
1109
+ * MingcuteMicLine12 icon component
1110
+ * @example
1111
+ * ```tsx
1112
+ * import { MingcuteMicLine12 } from 'magick-icons';
1113
+ *
1114
+ * <MingcuteMicLine12 size={24} className="text-blue-500" strokeWidth={2} />
1115
+ * ```
1116
+ */
1117
+ declare const MingcuteMicLine12: React.ForwardRefExoticComponent<Omit<MingcuteMicLine12Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
1118
+
1047
1119
  /**
1048
1120
  * Props for the Network icon component
1049
1121
  * @property {number | string} [size] - Size of the icon (default: 24)
@@ -1224,6 +1296,42 @@ interface StrikethroughProps extends React.SVGProps<SVGSVGElement> {
1224
1296
  */
1225
1297
  declare const Strikethrough: React.ForwardRefExoticComponent<Omit<StrikethroughProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1226
1298
 
1299
+ /**
1300
+ * Props for the Tasks icon component
1301
+ * @property {number | string} [size] - Size of the icon (default: 24)
1302
+ */
1303
+ interface TasksProps extends React.SVGProps<SVGSVGElement> {
1304
+ size?: number | string;
1305
+ }
1306
+ /**
1307
+ * Tasks icon component
1308
+ * @example
1309
+ * ```tsx
1310
+ * import { Tasks } from 'magick-icons';
1311
+ *
1312
+ * <Tasks size={24} className="text-blue-500" strokeWidth={2} />
1313
+ * ```
1314
+ */
1315
+ declare const Tasks: React.ForwardRefExoticComponent<Omit<TasksProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1316
+
1317
+ /**
1318
+ * Props for the Trash icon component
1319
+ * @property {number | string} [size] - Size of the icon (default: 24)
1320
+ */
1321
+ interface TrashProps extends React.SVGProps<SVGSVGElement> {
1322
+ size?: number | string;
1323
+ }
1324
+ /**
1325
+ * Trash icon component
1326
+ * @example
1327
+ * ```tsx
1328
+ * import { Trash } from 'magick-icons';
1329
+ *
1330
+ * <Trash size={24} className="text-blue-500" strokeWidth={2} />
1331
+ * ```
1332
+ */
1333
+ declare const Trash: React.ForwardRefExoticComponent<Omit<TrashProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1334
+
1227
1335
  /**
1228
1336
  * Props for the Video icon component
1229
1337
  * @property {number | string} [size] - Size of the icon (default: 24)
@@ -1260,4 +1368,4 @@ interface XProps extends React.SVGProps<SVGSVGElement> {
1260
1368
  */
1261
1369
  declare const X: React.ForwardRefExoticComponent<Omit<XProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1262
1370
 
1263
- 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, 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 };
1371
+ 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, MingcuteMicLine1, MingcuteMicLine11, type MingcuteMicLine11Props, MingcuteMicLine12, type MingcuteMicLine12Props, type MingcuteMicLine1Props, 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
@@ -972,6 +972,24 @@ interface ListTodoProps extends React.SVGProps<SVGSVGElement> {
972
972
  */
973
973
  declare const ListTodo: React.ForwardRefExoticComponent<Omit<ListTodoProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
974
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
+
975
993
  /**
976
994
  * Props for the MagickPotion icon component
977
995
  * @property {number | string} [size] - Size of the icon (default: 24)
@@ -1044,6 +1062,60 @@ interface MessageEditProps extends React.SVGProps<SVGSVGElement> {
1044
1062
  */
1045
1063
  declare const MessageEdit: React.ForwardRefExoticComponent<Omit<MessageEditProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1046
1064
 
1065
+ /**
1066
+ * Props for the MingcuteMicLine1 icon component
1067
+ * @property {number | string} [size] - Size of the icon (default: 24)
1068
+ */
1069
+ interface MingcuteMicLine1Props extends React.SVGProps<SVGSVGElement> {
1070
+ size?: number | string;
1071
+ }
1072
+ /**
1073
+ * MingcuteMicLine1 icon component
1074
+ * @example
1075
+ * ```tsx
1076
+ * import { MingcuteMicLine1 } from 'magick-icons';
1077
+ *
1078
+ * <MingcuteMicLine1 size={24} className="text-blue-500" strokeWidth={2} />
1079
+ * ```
1080
+ */
1081
+ declare const MingcuteMicLine1: React.ForwardRefExoticComponent<Omit<MingcuteMicLine1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
1082
+
1083
+ /**
1084
+ * Props for the MingcuteMicLine11 icon component
1085
+ * @property {number | string} [size] - Size of the icon (default: 24)
1086
+ */
1087
+ interface MingcuteMicLine11Props extends React.SVGProps<SVGSVGElement> {
1088
+ size?: number | string;
1089
+ }
1090
+ /**
1091
+ * MingcuteMicLine11 icon component
1092
+ * @example
1093
+ * ```tsx
1094
+ * import { MingcuteMicLine11 } from 'magick-icons';
1095
+ *
1096
+ * <MingcuteMicLine11 size={24} className="text-blue-500" strokeWidth={2} />
1097
+ * ```
1098
+ */
1099
+ declare const MingcuteMicLine11: React.ForwardRefExoticComponent<Omit<MingcuteMicLine11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
1100
+
1101
+ /**
1102
+ * Props for the MingcuteMicLine12 icon component
1103
+ * @property {number | string} [size] - Size of the icon (default: 24)
1104
+ */
1105
+ interface MingcuteMicLine12Props extends React.SVGProps<SVGSVGElement> {
1106
+ size?: number | string;
1107
+ }
1108
+ /**
1109
+ * MingcuteMicLine12 icon component
1110
+ * @example
1111
+ * ```tsx
1112
+ * import { MingcuteMicLine12 } from 'magick-icons';
1113
+ *
1114
+ * <MingcuteMicLine12 size={24} className="text-blue-500" strokeWidth={2} />
1115
+ * ```
1116
+ */
1117
+ declare const MingcuteMicLine12: React.ForwardRefExoticComponent<Omit<MingcuteMicLine12Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
1118
+
1047
1119
  /**
1048
1120
  * Props for the Network icon component
1049
1121
  * @property {number | string} [size] - Size of the icon (default: 24)
@@ -1224,6 +1296,42 @@ interface StrikethroughProps extends React.SVGProps<SVGSVGElement> {
1224
1296
  */
1225
1297
  declare const Strikethrough: React.ForwardRefExoticComponent<Omit<StrikethroughProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1226
1298
 
1299
+ /**
1300
+ * Props for the Tasks icon component
1301
+ * @property {number | string} [size] - Size of the icon (default: 24)
1302
+ */
1303
+ interface TasksProps extends React.SVGProps<SVGSVGElement> {
1304
+ size?: number | string;
1305
+ }
1306
+ /**
1307
+ * Tasks icon component
1308
+ * @example
1309
+ * ```tsx
1310
+ * import { Tasks } from 'magick-icons';
1311
+ *
1312
+ * <Tasks size={24} className="text-blue-500" strokeWidth={2} />
1313
+ * ```
1314
+ */
1315
+ declare const Tasks: React.ForwardRefExoticComponent<Omit<TasksProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1316
+
1317
+ /**
1318
+ * Props for the Trash icon component
1319
+ * @property {number | string} [size] - Size of the icon (default: 24)
1320
+ */
1321
+ interface TrashProps extends React.SVGProps<SVGSVGElement> {
1322
+ size?: number | string;
1323
+ }
1324
+ /**
1325
+ * Trash icon component
1326
+ * @example
1327
+ * ```tsx
1328
+ * import { Trash } from 'magick-icons';
1329
+ *
1330
+ * <Trash size={24} className="text-blue-500" strokeWidth={2} />
1331
+ * ```
1332
+ */
1333
+ declare const Trash: React.ForwardRefExoticComponent<Omit<TrashProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1334
+
1227
1335
  /**
1228
1336
  * Props for the Video icon component
1229
1337
  * @property {number | string} [size] - Size of the icon (default: 24)
@@ -1260,4 +1368,4 @@ interface XProps extends React.SVGProps<SVGSVGElement> {
1260
1368
  */
1261
1369
  declare const X: React.ForwardRefExoticComponent<Omit<XProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1262
1370
 
1263
- 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, 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 };
1371
+ 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, MingcuteMicLine1, MingcuteMicLine11, type MingcuteMicLine11Props, MingcuteMicLine12, type MingcuteMicLine12Props, type MingcuteMicLine1Props, 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 };