magick-icons 0.1.149 → 0.1.151
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 +91 -1
- package/index.d.ts +91 -1
- package/index.js +223 -160
- package/index.js.map +1 -1
- package/index.mjs +219 -161
- package/index.mjs.map +1 -1
- package/package.json +1 -1
package/index.d.mts
CHANGED
|
@@ -828,6 +828,24 @@ interface HrSystemProps extends React.SVGProps<SVGSVGElement> {
|
|
|
828
828
|
*/
|
|
829
829
|
declare const HrSystem: React.ForwardRefExoticComponent<Omit<HrSystemProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
830
830
|
|
|
831
|
+
/**
|
|
832
|
+
* Props for the IconsaxAiScienceBold icon component
|
|
833
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
834
|
+
*/
|
|
835
|
+
interface IconsaxAiScienceBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
836
|
+
size?: number | string;
|
|
837
|
+
}
|
|
838
|
+
/**
|
|
839
|
+
* IconsaxAiScienceBold icon component
|
|
840
|
+
* @example
|
|
841
|
+
* ```tsx
|
|
842
|
+
* import { IconsaxAiScienceBold } from 'magick-icons';
|
|
843
|
+
*
|
|
844
|
+
* <IconsaxAiScienceBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
845
|
+
* ```
|
|
846
|
+
*/
|
|
847
|
+
declare const IconsaxAiScienceBold: React.ForwardRefExoticComponent<Omit<IconsaxAiScienceBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
848
|
+
|
|
831
849
|
/**
|
|
832
850
|
* Props for the IconsaxAttachCircleBold icon component
|
|
833
851
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -846,6 +864,42 @@ interface IconsaxAttachCircleBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
|
846
864
|
*/
|
|
847
865
|
declare const IconsaxAttachCircleBold: React.ForwardRefExoticComponent<Omit<IconsaxAttachCircleBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
848
866
|
|
|
867
|
+
/**
|
|
868
|
+
* Props for the IconsaxBrainBold icon component
|
|
869
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
870
|
+
*/
|
|
871
|
+
interface IconsaxBrainBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
872
|
+
size?: number | string;
|
|
873
|
+
}
|
|
874
|
+
/**
|
|
875
|
+
* IconsaxBrainBold icon component
|
|
876
|
+
* @example
|
|
877
|
+
* ```tsx
|
|
878
|
+
* import { IconsaxBrainBold } from 'magick-icons';
|
|
879
|
+
*
|
|
880
|
+
* <IconsaxBrainBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
881
|
+
* ```
|
|
882
|
+
*/
|
|
883
|
+
declare const IconsaxBrainBold: React.ForwardRefExoticComponent<Omit<IconsaxBrainBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
884
|
+
|
|
885
|
+
/**
|
|
886
|
+
* Props for the IconsaxMonetizeBold icon component
|
|
887
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
888
|
+
*/
|
|
889
|
+
interface IconsaxMonetizeBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
890
|
+
size?: number | string;
|
|
891
|
+
}
|
|
892
|
+
/**
|
|
893
|
+
* IconsaxMonetizeBold icon component
|
|
894
|
+
* @example
|
|
895
|
+
* ```tsx
|
|
896
|
+
* import { IconsaxMonetizeBold } from 'magick-icons';
|
|
897
|
+
*
|
|
898
|
+
* <IconsaxMonetizeBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
899
|
+
* ```
|
|
900
|
+
*/
|
|
901
|
+
declare const IconsaxMonetizeBold: React.ForwardRefExoticComponent<Omit<IconsaxMonetizeBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
902
|
+
|
|
849
903
|
/**
|
|
850
904
|
* Props for the IconsaxPenBrushBold icon component
|
|
851
905
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -864,6 +918,42 @@ interface IconsaxPenBrushBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
|
864
918
|
*/
|
|
865
919
|
declare const IconsaxPenBrushBold: React.ForwardRefExoticComponent<Omit<IconsaxPenBrushBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
866
920
|
|
|
921
|
+
/**
|
|
922
|
+
* Props for the IconsaxPeopleBold icon component
|
|
923
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
924
|
+
*/
|
|
925
|
+
interface IconsaxPeopleBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
926
|
+
size?: number | string;
|
|
927
|
+
}
|
|
928
|
+
/**
|
|
929
|
+
* IconsaxPeopleBold icon component
|
|
930
|
+
* @example
|
|
931
|
+
* ```tsx
|
|
932
|
+
* import { IconsaxPeopleBold } from 'magick-icons';
|
|
933
|
+
*
|
|
934
|
+
* <IconsaxPeopleBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
935
|
+
* ```
|
|
936
|
+
*/
|
|
937
|
+
declare const IconsaxPeopleBold: React.ForwardRefExoticComponent<Omit<IconsaxPeopleBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
938
|
+
|
|
939
|
+
/**
|
|
940
|
+
* Props for the IconsaxTaskSquareBold icon component
|
|
941
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
942
|
+
*/
|
|
943
|
+
interface IconsaxTaskSquareBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
944
|
+
size?: number | string;
|
|
945
|
+
}
|
|
946
|
+
/**
|
|
947
|
+
* IconsaxTaskSquareBold icon component
|
|
948
|
+
* @example
|
|
949
|
+
* ```tsx
|
|
950
|
+
* import { IconsaxTaskSquareBold } from 'magick-icons';
|
|
951
|
+
*
|
|
952
|
+
* <IconsaxTaskSquareBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
953
|
+
* ```
|
|
954
|
+
*/
|
|
955
|
+
declare const IconsaxTaskSquareBold: React.ForwardRefExoticComponent<Omit<IconsaxTaskSquareBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
956
|
+
|
|
867
957
|
/**
|
|
868
958
|
* Props for the IconsaxVideoCameraBold icon component
|
|
869
959
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -1476,4 +1566,4 @@ interface XProps extends React.SVGProps<SVGSVGElement> {
|
|
|
1476
1566
|
*/
|
|
1477
1567
|
declare const X: React.ForwardRefExoticComponent<Omit<XProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1478
1568
|
|
|
1479
|
-
export { AiIcon, AiIcon1, type AiIcon1Props, type AiIconProps, ArchiveBold, type ArchiveBoldProps, ArrowDownBold, type ArrowDownBoldProps, ArrowRightBold, type ArrowRightBoldProps, ArrowUpBold, type ArrowUpBoldProps, BookmarkFilled, BookmarkFilled1, type BookmarkFilled1Props, type BookmarkFilledProps, Calendar, type CalendarProps, ChatFullScreen, ChatFullScreen1, type ChatFullScreen1Props, type ChatFullScreenProps, ChatMaximize, ChatMaximize1, type ChatMaximize1Props, type ChatMaximizeProps, ChatMinimize, ChatMinimize1, type ChatMinimize1Props, 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, Doc1, type Doc1Props, type DocProps, DocumentTextBold, type DocumentTextBoldProps, DocumentUpload, type DocumentUploadProps, Enter, type EnterProps, Excel, Excel1, type Excel1Props, type ExcelProps, File, File1, type File1Props, type FileProps, Finance, type FinanceProps, Flag, type FlagProps, Folder2, type Folder2Props, FolderDrawerOpen, FolderDrawerOpenAddBold, FolderDrawerOpenAddBold1, type FolderDrawerOpenAddBold1Props, type FolderDrawerOpenAddBoldProps, type FolderDrawerOpenProps, FolderOpenBold, type FolderOpenBoldProps, GeneralMagicko, GeneralMagicko1, type GeneralMagicko1Props, type GeneralMagickoProps, GripVertical, type GripVerticalProps, HeartBold, type HeartBoldProps, Hr, Hr1, type Hr1Props, type HrProps, HrSystem, type HrSystemProps, IconsaxAttachCircleBold, type IconsaxAttachCircleBoldProps, IconsaxPenBrushBold, type IconsaxPenBrushBoldProps, IconsaxVideoCameraBold, type IconsaxVideoCameraBoldProps, IconsaxWord, type IconsaxWordProps, InProgress, InProgress1, type InProgress1Props, 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, NotiDot1, type NotiDot1Props, type NotiDotProps, PA, type PAProps, PauseSquare, PauseSquare1, type PauseSquare1Props, type PauseSquareProps, Pdf, Pdf1, type Pdf1Props, type PdfProps, PlayFilled, PlayFilled1, type PlayFilled1Props, type PlayFilledProps, Signature, type SignatureProps, SperateDot, SperateDot1, type SperateDot1Props, type SperateDotProps, SquarePen1, type SquarePen1Props, Strikethrough, type StrikethroughProps, Video, type VideoProps, X, type XProps };
|
|
1569
|
+
export { AiIcon, AiIcon1, type AiIcon1Props, type AiIconProps, ArchiveBold, type ArchiveBoldProps, ArrowDownBold, type ArrowDownBoldProps, ArrowRightBold, type ArrowRightBoldProps, ArrowUpBold, type ArrowUpBoldProps, BookmarkFilled, BookmarkFilled1, type BookmarkFilled1Props, type BookmarkFilledProps, Calendar, type CalendarProps, ChatFullScreen, ChatFullScreen1, type ChatFullScreen1Props, type ChatFullScreenProps, ChatMaximize, ChatMaximize1, type ChatMaximize1Props, type ChatMaximizeProps, ChatMinimize, ChatMinimize1, type ChatMinimize1Props, 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, Doc1, type Doc1Props, type DocProps, DocumentTextBold, type DocumentTextBoldProps, DocumentUpload, type DocumentUploadProps, Enter, type EnterProps, Excel, Excel1, type Excel1Props, type ExcelProps, File, File1, type File1Props, type FileProps, Finance, type FinanceProps, Flag, type FlagProps, Folder2, type Folder2Props, FolderDrawerOpen, FolderDrawerOpenAddBold, FolderDrawerOpenAddBold1, type FolderDrawerOpenAddBold1Props, type FolderDrawerOpenAddBoldProps, type FolderDrawerOpenProps, FolderOpenBold, type FolderOpenBoldProps, GeneralMagicko, GeneralMagicko1, type GeneralMagicko1Props, type GeneralMagickoProps, GripVertical, type GripVerticalProps, HeartBold, type HeartBoldProps, Hr, Hr1, type Hr1Props, 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, InProgress1, type InProgress1Props, 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, NotiDot1, type NotiDot1Props, type NotiDotProps, PA, type PAProps, PauseSquare, PauseSquare1, type PauseSquare1Props, type PauseSquareProps, Pdf, Pdf1, type Pdf1Props, type PdfProps, PlayFilled, PlayFilled1, type PlayFilled1Props, type PlayFilledProps, Signature, type SignatureProps, SperateDot, SperateDot1, type SperateDot1Props, type SperateDotProps, SquarePen1, type SquarePen1Props, Strikethrough, type StrikethroughProps, Video, type VideoProps, X, type XProps };
|
package/index.d.ts
CHANGED
|
@@ -828,6 +828,24 @@ interface HrSystemProps extends React.SVGProps<SVGSVGElement> {
|
|
|
828
828
|
*/
|
|
829
829
|
declare const HrSystem: React.ForwardRefExoticComponent<Omit<HrSystemProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
830
830
|
|
|
831
|
+
/**
|
|
832
|
+
* Props for the IconsaxAiScienceBold icon component
|
|
833
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
834
|
+
*/
|
|
835
|
+
interface IconsaxAiScienceBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
836
|
+
size?: number | string;
|
|
837
|
+
}
|
|
838
|
+
/**
|
|
839
|
+
* IconsaxAiScienceBold icon component
|
|
840
|
+
* @example
|
|
841
|
+
* ```tsx
|
|
842
|
+
* import { IconsaxAiScienceBold } from 'magick-icons';
|
|
843
|
+
*
|
|
844
|
+
* <IconsaxAiScienceBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
845
|
+
* ```
|
|
846
|
+
*/
|
|
847
|
+
declare const IconsaxAiScienceBold: React.ForwardRefExoticComponent<Omit<IconsaxAiScienceBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
848
|
+
|
|
831
849
|
/**
|
|
832
850
|
* Props for the IconsaxAttachCircleBold icon component
|
|
833
851
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -846,6 +864,42 @@ interface IconsaxAttachCircleBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
|
846
864
|
*/
|
|
847
865
|
declare const IconsaxAttachCircleBold: React.ForwardRefExoticComponent<Omit<IconsaxAttachCircleBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
848
866
|
|
|
867
|
+
/**
|
|
868
|
+
* Props for the IconsaxBrainBold icon component
|
|
869
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
870
|
+
*/
|
|
871
|
+
interface IconsaxBrainBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
872
|
+
size?: number | string;
|
|
873
|
+
}
|
|
874
|
+
/**
|
|
875
|
+
* IconsaxBrainBold icon component
|
|
876
|
+
* @example
|
|
877
|
+
* ```tsx
|
|
878
|
+
* import { IconsaxBrainBold } from 'magick-icons';
|
|
879
|
+
*
|
|
880
|
+
* <IconsaxBrainBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
881
|
+
* ```
|
|
882
|
+
*/
|
|
883
|
+
declare const IconsaxBrainBold: React.ForwardRefExoticComponent<Omit<IconsaxBrainBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
884
|
+
|
|
885
|
+
/**
|
|
886
|
+
* Props for the IconsaxMonetizeBold icon component
|
|
887
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
888
|
+
*/
|
|
889
|
+
interface IconsaxMonetizeBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
890
|
+
size?: number | string;
|
|
891
|
+
}
|
|
892
|
+
/**
|
|
893
|
+
* IconsaxMonetizeBold icon component
|
|
894
|
+
* @example
|
|
895
|
+
* ```tsx
|
|
896
|
+
* import { IconsaxMonetizeBold } from 'magick-icons';
|
|
897
|
+
*
|
|
898
|
+
* <IconsaxMonetizeBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
899
|
+
* ```
|
|
900
|
+
*/
|
|
901
|
+
declare const IconsaxMonetizeBold: React.ForwardRefExoticComponent<Omit<IconsaxMonetizeBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
902
|
+
|
|
849
903
|
/**
|
|
850
904
|
* Props for the IconsaxPenBrushBold icon component
|
|
851
905
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -864,6 +918,42 @@ interface IconsaxPenBrushBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
|
864
918
|
*/
|
|
865
919
|
declare const IconsaxPenBrushBold: React.ForwardRefExoticComponent<Omit<IconsaxPenBrushBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
866
920
|
|
|
921
|
+
/**
|
|
922
|
+
* Props for the IconsaxPeopleBold icon component
|
|
923
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
924
|
+
*/
|
|
925
|
+
interface IconsaxPeopleBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
926
|
+
size?: number | string;
|
|
927
|
+
}
|
|
928
|
+
/**
|
|
929
|
+
* IconsaxPeopleBold icon component
|
|
930
|
+
* @example
|
|
931
|
+
* ```tsx
|
|
932
|
+
* import { IconsaxPeopleBold } from 'magick-icons';
|
|
933
|
+
*
|
|
934
|
+
* <IconsaxPeopleBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
935
|
+
* ```
|
|
936
|
+
*/
|
|
937
|
+
declare const IconsaxPeopleBold: React.ForwardRefExoticComponent<Omit<IconsaxPeopleBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
938
|
+
|
|
939
|
+
/**
|
|
940
|
+
* Props for the IconsaxTaskSquareBold icon component
|
|
941
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
942
|
+
*/
|
|
943
|
+
interface IconsaxTaskSquareBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
944
|
+
size?: number | string;
|
|
945
|
+
}
|
|
946
|
+
/**
|
|
947
|
+
* IconsaxTaskSquareBold icon component
|
|
948
|
+
* @example
|
|
949
|
+
* ```tsx
|
|
950
|
+
* import { IconsaxTaskSquareBold } from 'magick-icons';
|
|
951
|
+
*
|
|
952
|
+
* <IconsaxTaskSquareBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
953
|
+
* ```
|
|
954
|
+
*/
|
|
955
|
+
declare const IconsaxTaskSquareBold: React.ForwardRefExoticComponent<Omit<IconsaxTaskSquareBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
956
|
+
|
|
867
957
|
/**
|
|
868
958
|
* Props for the IconsaxVideoCameraBold icon component
|
|
869
959
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -1476,4 +1566,4 @@ interface XProps extends React.SVGProps<SVGSVGElement> {
|
|
|
1476
1566
|
*/
|
|
1477
1567
|
declare const X: React.ForwardRefExoticComponent<Omit<XProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1478
1568
|
|
|
1479
|
-
export { AiIcon, AiIcon1, type AiIcon1Props, type AiIconProps, ArchiveBold, type ArchiveBoldProps, ArrowDownBold, type ArrowDownBoldProps, ArrowRightBold, type ArrowRightBoldProps, ArrowUpBold, type ArrowUpBoldProps, BookmarkFilled, BookmarkFilled1, type BookmarkFilled1Props, type BookmarkFilledProps, Calendar, type CalendarProps, ChatFullScreen, ChatFullScreen1, type ChatFullScreen1Props, type ChatFullScreenProps, ChatMaximize, ChatMaximize1, type ChatMaximize1Props, type ChatMaximizeProps, ChatMinimize, ChatMinimize1, type ChatMinimize1Props, 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, Doc1, type Doc1Props, type DocProps, DocumentTextBold, type DocumentTextBoldProps, DocumentUpload, type DocumentUploadProps, Enter, type EnterProps, Excel, Excel1, type Excel1Props, type ExcelProps, File, File1, type File1Props, type FileProps, Finance, type FinanceProps, Flag, type FlagProps, Folder2, type Folder2Props, FolderDrawerOpen, FolderDrawerOpenAddBold, FolderDrawerOpenAddBold1, type FolderDrawerOpenAddBold1Props, type FolderDrawerOpenAddBoldProps, type FolderDrawerOpenProps, FolderOpenBold, type FolderOpenBoldProps, GeneralMagicko, GeneralMagicko1, type GeneralMagicko1Props, type GeneralMagickoProps, GripVertical, type GripVerticalProps, HeartBold, type HeartBoldProps, Hr, Hr1, type Hr1Props, type HrProps, HrSystem, type HrSystemProps, IconsaxAttachCircleBold, type IconsaxAttachCircleBoldProps, IconsaxPenBrushBold, type IconsaxPenBrushBoldProps, IconsaxVideoCameraBold, type IconsaxVideoCameraBoldProps, IconsaxWord, type IconsaxWordProps, InProgress, InProgress1, type InProgress1Props, 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, NotiDot1, type NotiDot1Props, type NotiDotProps, PA, type PAProps, PauseSquare, PauseSquare1, type PauseSquare1Props, type PauseSquareProps, Pdf, Pdf1, type Pdf1Props, type PdfProps, PlayFilled, PlayFilled1, type PlayFilled1Props, type PlayFilledProps, Signature, type SignatureProps, SperateDot, SperateDot1, type SperateDot1Props, type SperateDotProps, SquarePen1, type SquarePen1Props, Strikethrough, type StrikethroughProps, Video, type VideoProps, X, type XProps };
|
|
1569
|
+
export { AiIcon, AiIcon1, type AiIcon1Props, type AiIconProps, ArchiveBold, type ArchiveBoldProps, ArrowDownBold, type ArrowDownBoldProps, ArrowRightBold, type ArrowRightBoldProps, ArrowUpBold, type ArrowUpBoldProps, BookmarkFilled, BookmarkFilled1, type BookmarkFilled1Props, type BookmarkFilledProps, Calendar, type CalendarProps, ChatFullScreen, ChatFullScreen1, type ChatFullScreen1Props, type ChatFullScreenProps, ChatMaximize, ChatMaximize1, type ChatMaximize1Props, type ChatMaximizeProps, ChatMinimize, ChatMinimize1, type ChatMinimize1Props, 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, Doc1, type Doc1Props, type DocProps, DocumentTextBold, type DocumentTextBoldProps, DocumentUpload, type DocumentUploadProps, Enter, type EnterProps, Excel, Excel1, type Excel1Props, type ExcelProps, File, File1, type File1Props, type FileProps, Finance, type FinanceProps, Flag, type FlagProps, Folder2, type Folder2Props, FolderDrawerOpen, FolderDrawerOpenAddBold, FolderDrawerOpenAddBold1, type FolderDrawerOpenAddBold1Props, type FolderDrawerOpenAddBoldProps, type FolderDrawerOpenProps, FolderOpenBold, type FolderOpenBoldProps, GeneralMagicko, GeneralMagicko1, type GeneralMagicko1Props, type GeneralMagickoProps, GripVertical, type GripVerticalProps, HeartBold, type HeartBoldProps, Hr, Hr1, type Hr1Props, 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, InProgress1, type InProgress1Props, 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, NotiDot1, type NotiDot1Props, type NotiDotProps, PA, type PAProps, PauseSquare, PauseSquare1, type PauseSquare1Props, type PauseSquareProps, Pdf, Pdf1, type Pdf1Props, type PdfProps, PlayFilled, PlayFilled1, type PlayFilled1Props, type PlayFilledProps, Signature, type SignatureProps, SperateDot, SperateDot1, type SperateDot1Props, type SperateDotProps, SquarePen1, type SquarePen1Props, Strikethrough, type StrikethroughProps, Video, type VideoProps, X, type XProps };
|