magick-icons 0.1.32 → 0.1.34

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.ts CHANGED
@@ -5,14 +5,20 @@
5
5
  *
6
6
  * @example
7
7
  * ```tsx
8
- * import { BrandInstagram } from 'magick-icons';
8
+ * import { Apple } from 'magick-icons';
9
9
  *
10
10
  * function MyComponent() {
11
- * return <BrandInstagram size={24} className="text-blue-500" />;
11
+ * return <Apple size={24} className="text-blue-500" />;
12
12
  * }
13
13
  * ```
14
14
  */
15
15
 
16
+ /**
17
+ * Apple icon component and its props type
18
+ * @see {@link AppleProps} for available props
19
+ */
20
+ export { Apple, type AppleProps } from './icons/Apple';
21
+
16
22
  /**
17
23
  * BrandInstagram icon component and its props type
18
24
  * @see {@link BrandInstagramProps} for available props
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "magick-icons",
3
- "version": "0.1.32",
3
+ "version": "0.1.34",
4
4
  "main": "index.js",
5
5
  "module": "index.mjs",
6
6
  "types": "index.d.ts",
package/types.ts CHANGED
@@ -1,5 +1,6 @@
1
1
  // Auto-generated file - do not edit manually
2
2
  import type * as React from 'react';
3
+ import type { AppleProps } from './icons/Apple';
3
4
  import type { BrandInstagramProps } from './icons/BrandInstagram';
4
5
  import type { Image6Props } from './icons/Image6';
5
6
  import type { IxWebcam1Props } from './icons/IxWebcam1';
@@ -7,6 +8,7 @@ import type { Magicko3DotsMoreProps } from './icons/Magicko3DotsMore';
7
8
  import type { SparklesProps } from './icons/Sparkles';
8
9
 
9
10
  export interface IconComponents {
11
+ Apple: React.ComponentType<AppleProps>;
10
12
  BrandInstagram: React.ComponentType<BrandInstagramProps>;
11
13
  Image6: React.ComponentType<Image6Props>;
12
14
  IxWebcam1: React.ComponentType<IxWebcam1Props>;
@@ -14,4 +16,4 @@ export interface IconComponents {
14
16
  Sparkles: React.ComponentType<SparklesProps>;
15
17
  }
16
18
 
17
- export type IconName = 'BrandInstagram' | 'Image6' | 'IxWebcam1' | 'Magicko3DotsMore' | 'Sparkles';
19
+ export type IconName = 'Apple' | 'BrandInstagram' | 'Image6' | 'IxWebcam1' | 'Magicko3DotsMore' | 'Sparkles';