magick-icons 0.1.113 → 0.1.114
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 +1 -19
- package/index.d.ts +1 -19
- package/index.js +154 -169
- package/index.js.map +1 -1
- package/index.mjs +155 -169
- package/index.mjs.map +1 -1
- package/package.json +1 -1
- package/README.md +0 -116
package/index.d.mts
CHANGED
|
@@ -90,24 +90,6 @@ interface CalendarProps extends React.SVGProps<SVGSVGElement> {
|
|
|
90
90
|
*/
|
|
91
91
|
declare const Calendar: React.ForwardRefExoticComponent<Omit<CalendarProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
92
92
|
|
|
93
|
-
/**
|
|
94
|
-
* Props for the ChatMinimize icon component
|
|
95
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
96
|
-
*/
|
|
97
|
-
interface ChatMinimizeProps extends React.SVGProps<SVGSVGElement> {
|
|
98
|
-
size?: number | string;
|
|
99
|
-
}
|
|
100
|
-
/**
|
|
101
|
-
* ChatMinimize icon component
|
|
102
|
-
* @example
|
|
103
|
-
* ```tsx
|
|
104
|
-
* import { ChatMinimize } from 'magick-icons';
|
|
105
|
-
*
|
|
106
|
-
* <ChatMinimize size={24} className="text-blue-500" strokeWidth={2} />
|
|
107
|
-
* ```
|
|
108
|
-
*/
|
|
109
|
-
declare const ChatMinimize: React.ForwardRefExoticComponent<Omit<ChatMinimizeProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
110
|
-
|
|
111
93
|
/**
|
|
112
94
|
* Props for the CircleCheckFill icon component
|
|
113
95
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -702,4 +684,4 @@ interface VideoProps extends React.SVGProps<SVGSVGElement> {
|
|
|
702
684
|
*/
|
|
703
685
|
declare const Video: React.ForwardRefExoticComponent<Omit<VideoProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
704
686
|
|
|
705
|
-
export { ArchiveBold, type ArchiveBoldProps, ArrowDownBold, type ArrowDownBoldProps, ArrowRightBold, type ArrowRightBoldProps, ArrowUpBold, type ArrowUpBoldProps, Calendar, type CalendarProps,
|
|
687
|
+
export { ArchiveBold, type ArchiveBoldProps, ArrowDownBold, type ArrowDownBoldProps, ArrowRightBold, type ArrowRightBoldProps, ArrowUpBold, type ArrowUpBoldProps, Calendar, type CalendarProps, CircleCheckFill, type CircleCheckFillProps, CloseCircle1, type CloseCircle1Props, DislikeBold, type DislikeBoldProps, DocumentTextBold, type DocumentTextBoldProps, DocumentUpload, type DocumentUploadProps, Finance, type FinanceProps, Flag, type FlagProps, Folder2, type Folder2Props, FolderDrawerOpen, type FolderDrawerOpenProps, FolderOpenBold, type FolderOpenBoldProps, HeartBold, type HeartBoldProps, IconsaxAiScienceBold, type IconsaxAiScienceBoldProps, IconsaxAttachCircleBold, type IconsaxAttachCircleBoldProps, IconsaxBrainBold, type IconsaxBrainBoldProps, IconsaxMonetizeBold, type IconsaxMonetizeBoldProps, IconsaxPenBrushBold, type IconsaxPenBrushBoldProps, IconsaxPeopleBold, type IconsaxPeopleBoldProps, IconsaxTaskSquareBold, type IconsaxTaskSquareBoldProps, IconsaxVideoCameraBold, type IconsaxVideoCameraBoldProps, InfoCircleBold, type InfoCircleBoldProps, Legal, type LegalProps, LikeBold, type LikeBoldProps, LinkSquare, type LinkSquareProps, Lock, type LockProps, MagickPotion, type MagickPotionProps, Marketing, type MarketingProps, MessageEdit, type MessageEditProps, Network, type NetworkProps, PA, type PAProps, SquarePen1, type SquarePen1Props, Tasks, type TasksProps, Trash, type TrashProps, Video, type VideoProps };
|
package/index.d.ts
CHANGED
|
@@ -90,24 +90,6 @@ interface CalendarProps extends React.SVGProps<SVGSVGElement> {
|
|
|
90
90
|
*/
|
|
91
91
|
declare const Calendar: React.ForwardRefExoticComponent<Omit<CalendarProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
92
92
|
|
|
93
|
-
/**
|
|
94
|
-
* Props for the ChatMinimize icon component
|
|
95
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
96
|
-
*/
|
|
97
|
-
interface ChatMinimizeProps extends React.SVGProps<SVGSVGElement> {
|
|
98
|
-
size?: number | string;
|
|
99
|
-
}
|
|
100
|
-
/**
|
|
101
|
-
* ChatMinimize icon component
|
|
102
|
-
* @example
|
|
103
|
-
* ```tsx
|
|
104
|
-
* import { ChatMinimize } from 'magick-icons';
|
|
105
|
-
*
|
|
106
|
-
* <ChatMinimize size={24} className="text-blue-500" strokeWidth={2} />
|
|
107
|
-
* ```
|
|
108
|
-
*/
|
|
109
|
-
declare const ChatMinimize: React.ForwardRefExoticComponent<Omit<ChatMinimizeProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
110
|
-
|
|
111
93
|
/**
|
|
112
94
|
* Props for the CircleCheckFill icon component
|
|
113
95
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -702,4 +684,4 @@ interface VideoProps extends React.SVGProps<SVGSVGElement> {
|
|
|
702
684
|
*/
|
|
703
685
|
declare const Video: React.ForwardRefExoticComponent<Omit<VideoProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
704
686
|
|
|
705
|
-
export { ArchiveBold, type ArchiveBoldProps, ArrowDownBold, type ArrowDownBoldProps, ArrowRightBold, type ArrowRightBoldProps, ArrowUpBold, type ArrowUpBoldProps, Calendar, type CalendarProps,
|
|
687
|
+
export { ArchiveBold, type ArchiveBoldProps, ArrowDownBold, type ArrowDownBoldProps, ArrowRightBold, type ArrowRightBoldProps, ArrowUpBold, type ArrowUpBoldProps, Calendar, type CalendarProps, CircleCheckFill, type CircleCheckFillProps, CloseCircle1, type CloseCircle1Props, DislikeBold, type DislikeBoldProps, DocumentTextBold, type DocumentTextBoldProps, DocumentUpload, type DocumentUploadProps, Finance, type FinanceProps, Flag, type FlagProps, Folder2, type Folder2Props, FolderDrawerOpen, type FolderDrawerOpenProps, FolderOpenBold, type FolderOpenBoldProps, HeartBold, type HeartBoldProps, IconsaxAiScienceBold, type IconsaxAiScienceBoldProps, IconsaxAttachCircleBold, type IconsaxAttachCircleBoldProps, IconsaxBrainBold, type IconsaxBrainBoldProps, IconsaxMonetizeBold, type IconsaxMonetizeBoldProps, IconsaxPenBrushBold, type IconsaxPenBrushBoldProps, IconsaxPeopleBold, type IconsaxPeopleBoldProps, IconsaxTaskSquareBold, type IconsaxTaskSquareBoldProps, IconsaxVideoCameraBold, type IconsaxVideoCameraBoldProps, InfoCircleBold, type InfoCircleBoldProps, Legal, type LegalProps, LikeBold, type LikeBoldProps, LinkSquare, type LinkSquareProps, Lock, type LockProps, MagickPotion, type MagickPotionProps, Marketing, type MarketingProps, MessageEdit, type MessageEditProps, Network, type NetworkProps, PA, type PAProps, SquarePen1, type SquarePen1Props, Tasks, type TasksProps, Trash, type TrashProps, Video, type VideoProps };
|