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/icons/Magicko3DotsMore.tsx +32 -0
- package/icons/Sparkles.tsx +32 -32
- package/index.d.mts +55 -1
- package/index.d.ts +55 -1
- package/index.js +67 -51
- package/index.js.map +1 -1
- package/index.mjs +66 -51
- package/index.mjs.map +1 -1
- package/index.ts +6 -0
- package/package.json +1 -1
- package/types.ts +3 -1
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
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';
|