magick-icons 0.1.48 → 0.1.49
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 +19 -1
- package/index.d.ts +19 -1
- package/index.js +90 -72
- package/index.js.map +1 -1
- package/index.mjs +89 -72
- package/index.mjs.map +1 -1
- package/package.json +1 -1
package/index.d.mts
CHANGED
|
@@ -72,6 +72,24 @@ interface IconSizeProps extends React.SVGProps<SVGSVGElement> {
|
|
|
72
72
|
*/
|
|
73
73
|
declare const IconSize: React.ForwardRefExoticComponent<Omit<IconSizeProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
74
74
|
|
|
75
|
+
/**
|
|
76
|
+
* Props for the Image8 icon component
|
|
77
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
78
|
+
*/
|
|
79
|
+
interface Image8Props extends React.SVGProps<SVGSVGElement> {
|
|
80
|
+
size?: number | string;
|
|
81
|
+
}
|
|
82
|
+
/**
|
|
83
|
+
* Image8 icon component
|
|
84
|
+
* @example
|
|
85
|
+
* ```tsx
|
|
86
|
+
* import { Image8 } from 'magick-icons';
|
|
87
|
+
*
|
|
88
|
+
* <Image8 size={24} className="text-blue-500" />
|
|
89
|
+
* ```
|
|
90
|
+
*/
|
|
91
|
+
declare const Image8: React.ForwardRefExoticComponent<Omit<Image8Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
92
|
+
|
|
75
93
|
/**
|
|
76
94
|
* Props for the Legal icon component
|
|
77
95
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -288,4 +306,4 @@ interface MagicpenProps extends React.SVGProps<SVGSVGElement> {
|
|
|
288
306
|
*/
|
|
289
307
|
declare const Magicpen: React.ForwardRefExoticComponent<Omit<MagicpenProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
290
308
|
|
|
291
|
-
export { Enter, type EnterProps, Frame, type FrameProps, Google, type GoogleProps, IconSize, type IconSizeProps, Legal, LegalModule, type LegalModuleProps, type LegalProps, Magicko3DotsMore, type Magicko3DotsMoreProps, MagickoArchive, type MagickoArchiveProps, MagickoChart, type MagickoChartProps, MagickoKey, type MagickoKeyProps, MagickoProfileCircle, type MagickoProfileCircleProps, MagickoSidebarLeft, type MagickoSidebarLeftProps, MagickoSortDescending, type MagickoSortDescendingProps, MagickoSpeaker, type MagickoSpeakerProps, MagickoTelescope, type MagickoTelescopeProps, Magicpen, type MagicpenProps };
|
|
309
|
+
export { Enter, type EnterProps, Frame, type FrameProps, Google, type GoogleProps, IconSize, type IconSizeProps, Image8, type Image8Props, Legal, LegalModule, type LegalModuleProps, type LegalProps, Magicko3DotsMore, type Magicko3DotsMoreProps, MagickoArchive, type MagickoArchiveProps, MagickoChart, type MagickoChartProps, MagickoKey, type MagickoKeyProps, MagickoProfileCircle, type MagickoProfileCircleProps, MagickoSidebarLeft, type MagickoSidebarLeftProps, MagickoSortDescending, type MagickoSortDescendingProps, MagickoSpeaker, type MagickoSpeakerProps, MagickoTelescope, type MagickoTelescopeProps, Magicpen, type MagicpenProps };
|
package/index.d.ts
CHANGED
|
@@ -72,6 +72,24 @@ interface IconSizeProps extends React.SVGProps<SVGSVGElement> {
|
|
|
72
72
|
*/
|
|
73
73
|
declare const IconSize: React.ForwardRefExoticComponent<Omit<IconSizeProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
74
74
|
|
|
75
|
+
/**
|
|
76
|
+
* Props for the Image8 icon component
|
|
77
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
78
|
+
*/
|
|
79
|
+
interface Image8Props extends React.SVGProps<SVGSVGElement> {
|
|
80
|
+
size?: number | string;
|
|
81
|
+
}
|
|
82
|
+
/**
|
|
83
|
+
* Image8 icon component
|
|
84
|
+
* @example
|
|
85
|
+
* ```tsx
|
|
86
|
+
* import { Image8 } from 'magick-icons';
|
|
87
|
+
*
|
|
88
|
+
* <Image8 size={24} className="text-blue-500" />
|
|
89
|
+
* ```
|
|
90
|
+
*/
|
|
91
|
+
declare const Image8: React.ForwardRefExoticComponent<Omit<Image8Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
92
|
+
|
|
75
93
|
/**
|
|
76
94
|
* Props for the Legal icon component
|
|
77
95
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -288,4 +306,4 @@ interface MagicpenProps extends React.SVGProps<SVGSVGElement> {
|
|
|
288
306
|
*/
|
|
289
307
|
declare const Magicpen: React.ForwardRefExoticComponent<Omit<MagicpenProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
290
308
|
|
|
291
|
-
export { Enter, type EnterProps, Frame, type FrameProps, Google, type GoogleProps, IconSize, type IconSizeProps, Legal, LegalModule, type LegalModuleProps, type LegalProps, Magicko3DotsMore, type Magicko3DotsMoreProps, MagickoArchive, type MagickoArchiveProps, MagickoChart, type MagickoChartProps, MagickoKey, type MagickoKeyProps, MagickoProfileCircle, type MagickoProfileCircleProps, MagickoSidebarLeft, type MagickoSidebarLeftProps, MagickoSortDescending, type MagickoSortDescendingProps, MagickoSpeaker, type MagickoSpeakerProps, MagickoTelescope, type MagickoTelescopeProps, Magicpen, type MagicpenProps };
|
|
309
|
+
export { Enter, type EnterProps, Frame, type FrameProps, Google, type GoogleProps, IconSize, type IconSizeProps, Image8, type Image8Props, Legal, LegalModule, type LegalModuleProps, type LegalProps, Magicko3DotsMore, type Magicko3DotsMoreProps, MagickoArchive, type MagickoArchiveProps, MagickoChart, type MagickoChartProps, MagickoKey, type MagickoKeyProps, MagickoProfileCircle, type MagickoProfileCircleProps, MagickoSidebarLeft, type MagickoSidebarLeftProps, MagickoSortDescending, type MagickoSortDescendingProps, MagickoSpeaker, type MagickoSpeakerProps, MagickoTelescope, type MagickoTelescopeProps, Magicpen, type MagicpenProps };
|