magick-icons 0.1.34 → 0.1.35

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.
Files changed (3) hide show
  1. package/index.d.mts +37 -1
  2. package/index.d.ts +37 -1
  3. package/package.json +1 -1
package/index.d.mts CHANGED
@@ -1,5 +1,23 @@
1
1
  import React from 'react';
2
2
 
3
+ /**
4
+ * Props for the Apple icon component
5
+ * @property {number | string} [size] - Size of the icon (default: 24)
6
+ */
7
+ interface AppleProps extends React.SVGProps<SVGSVGElement> {
8
+ size?: number | string;
9
+ }
10
+ /**
11
+ * Apple icon component
12
+ * @example
13
+ * ```tsx
14
+ * import { Apple } from 'magick-icons';
15
+ *
16
+ * <Apple size={24} className="text-blue-500" />
17
+ * ```
18
+ */
19
+ declare const Apple: React.ForwardRefExoticComponent<Omit<AppleProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
20
+
3
21
  /**
4
22
  * Props for the BrandInstagram icon component
5
23
  * @property {number | string} [size] - Size of the icon (default: 24)
@@ -54,6 +72,24 @@ interface IxWebcam1Props extends React.SVGProps<SVGSVGElement> {
54
72
  */
55
73
  declare const IxWebcam1: React.ForwardRefExoticComponent<Omit<IxWebcam1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
56
74
 
75
+ /**
76
+ * Props for the Magicko3DotsMore icon component
77
+ * @property {number | string} [size] - Size of the icon (default: 24)
78
+ */
79
+ interface Magicko3DotsMoreProps extends React.SVGProps<SVGSVGElement> {
80
+ size?: number | string;
81
+ }
82
+ /**
83
+ * Magicko3DotsMore icon component
84
+ * @example
85
+ * ```tsx
86
+ * import { Magicko3DotsMore } from 'magick-icons';
87
+ *
88
+ * <Magicko3DotsMore size={24} className="text-blue-500" />
89
+ * ```
90
+ */
91
+ declare const Magicko3DotsMore: React.ForwardRefExoticComponent<Omit<Magicko3DotsMoreProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
92
+
57
93
  /**
58
94
  * Props for the Sparkles icon component
59
95
  * @property {number | string} [size] - Size of the icon (default: 24)
@@ -72,4 +108,4 @@ interface SparklesProps extends React.SVGProps<SVGSVGElement> {
72
108
  */
73
109
  declare const Sparkles: React.ForwardRefExoticComponent<Omit<SparklesProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
74
110
 
75
- export { BrandInstagram, type BrandInstagramProps, Image6, type Image6Props, IxWebcam1, type IxWebcam1Props, Sparkles, type SparklesProps };
111
+ export { Apple, type AppleProps, BrandInstagram, type BrandInstagramProps, Image6, type Image6Props, IxWebcam1, type IxWebcam1Props, Magicko3DotsMore, type Magicko3DotsMoreProps, Sparkles, type SparklesProps };
package/index.d.ts CHANGED
@@ -1,5 +1,23 @@
1
1
  import React from 'react';
2
2
 
3
+ /**
4
+ * Props for the Apple icon component
5
+ * @property {number | string} [size] - Size of the icon (default: 24)
6
+ */
7
+ interface AppleProps extends React.SVGProps<SVGSVGElement> {
8
+ size?: number | string;
9
+ }
10
+ /**
11
+ * Apple icon component
12
+ * @example
13
+ * ```tsx
14
+ * import { Apple } from 'magick-icons';
15
+ *
16
+ * <Apple size={24} className="text-blue-500" />
17
+ * ```
18
+ */
19
+ declare const Apple: React.ForwardRefExoticComponent<Omit<AppleProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
20
+
3
21
  /**
4
22
  * Props for the BrandInstagram icon component
5
23
  * @property {number | string} [size] - Size of the icon (default: 24)
@@ -54,6 +72,24 @@ interface IxWebcam1Props extends React.SVGProps<SVGSVGElement> {
54
72
  */
55
73
  declare const IxWebcam1: React.ForwardRefExoticComponent<Omit<IxWebcam1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
56
74
 
75
+ /**
76
+ * Props for the Magicko3DotsMore icon component
77
+ * @property {number | string} [size] - Size of the icon (default: 24)
78
+ */
79
+ interface Magicko3DotsMoreProps extends React.SVGProps<SVGSVGElement> {
80
+ size?: number | string;
81
+ }
82
+ /**
83
+ * Magicko3DotsMore icon component
84
+ * @example
85
+ * ```tsx
86
+ * import { Magicko3DotsMore } from 'magick-icons';
87
+ *
88
+ * <Magicko3DotsMore size={24} className="text-blue-500" />
89
+ * ```
90
+ */
91
+ declare const Magicko3DotsMore: React.ForwardRefExoticComponent<Omit<Magicko3DotsMoreProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
92
+
57
93
  /**
58
94
  * Props for the Sparkles icon component
59
95
  * @property {number | string} [size] - Size of the icon (default: 24)
@@ -72,4 +108,4 @@ interface SparklesProps extends React.SVGProps<SVGSVGElement> {
72
108
  */
73
109
  declare const Sparkles: React.ForwardRefExoticComponent<Omit<SparklesProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
74
110
 
75
- export { BrandInstagram, type BrandInstagramProps, Image6, type Image6Props, IxWebcam1, type IxWebcam1Props, Sparkles, type SparklesProps };
111
+ export { Apple, type AppleProps, BrandInstagram, type BrandInstagramProps, Image6, type Image6Props, IxWebcam1, type IxWebcam1Props, Magicko3DotsMore, type Magicko3DotsMoreProps, Sparkles, type SparklesProps };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "magick-icons",
3
- "version": "0.1.34",
3
+ "version": "0.1.35",
4
4
  "main": "index.js",
5
5
  "module": "index.mjs",
6
6
  "types": "index.d.ts",