magick-icons 0.1.31 → 0.1.32

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
@@ -31,6 +31,12 @@ export { Image6, type Image6Props } from './icons/Image6';
31
31
  */
32
32
  export { IxWebcam1, type IxWebcam1Props } from './icons/IxWebcam1';
33
33
 
34
+ /**
35
+ * Magicko3DotsMore icon component and its props type
36
+ * @see {@link Magicko3DotsMoreProps} for available props
37
+ */
38
+ export { Magicko3DotsMore, type Magicko3DotsMoreProps } from './icons/Magicko3DotsMore';
39
+
34
40
  /**
35
41
  * Sparkles icon component and its props type
36
42
  * @see {@link SparklesProps} for available props
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "magick-icons",
3
- "version": "0.1.31",
3
+ "version": "0.1.32",
4
4
  "main": "index.js",
5
5
  "module": "index.mjs",
6
6
  "types": "index.d.ts",
package/types.ts CHANGED
@@ -3,13 +3,15 @@ import type * as React from 'react';
3
3
  import type { BrandInstagramProps } from './icons/BrandInstagram';
4
4
  import type { Image6Props } from './icons/Image6';
5
5
  import type { IxWebcam1Props } from './icons/IxWebcam1';
6
+ import type { Magicko3DotsMoreProps } from './icons/Magicko3DotsMore';
6
7
  import type { SparklesProps } from './icons/Sparkles';
7
8
 
8
9
  export interface IconComponents {
9
10
  BrandInstagram: React.ComponentType<BrandInstagramProps>;
10
11
  Image6: React.ComponentType<Image6Props>;
11
12
  IxWebcam1: React.ComponentType<IxWebcam1Props>;
13
+ Magicko3DotsMore: React.ComponentType<Magicko3DotsMoreProps>;
12
14
  Sparkles: React.ComponentType<SparklesProps>;
13
15
  }
14
16
 
15
- export type IconName = 'BrandInstagram' | 'Image6' | 'IxWebcam1' | 'Sparkles';
17
+ export type IconName = 'BrandInstagram' | 'Image6' | 'IxWebcam1' | 'Magicko3DotsMore' | 'Sparkles';