magick-icons 0.1.31 → 0.1.33
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/Apple.tsx +31 -0
- 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 +98 -67
- package/index.js.map +1 -1
- package/index.mjs +97 -68
- package/index.mjs.map +1 -1
- package/index.ts +14 -2
- package/package.json +1 -1
- package/types.ts +5 -1
package/index.ts
CHANGED
|
@@ -5,14 +5,20 @@
|
|
|
5
5
|
*
|
|
6
6
|
* @example
|
|
7
7
|
* ```tsx
|
|
8
|
-
* import {
|
|
8
|
+
* import { Apple } from 'magick-icons';
|
|
9
9
|
*
|
|
10
10
|
* function MyComponent() {
|
|
11
|
-
* return <
|
|
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
|
|
@@ -31,6 +37,12 @@ export { Image6, type Image6Props } from './icons/Image6';
|
|
|
31
37
|
*/
|
|
32
38
|
export { IxWebcam1, type IxWebcam1Props } from './icons/IxWebcam1';
|
|
33
39
|
|
|
40
|
+
/**
|
|
41
|
+
* Magicko3DotsMore icon component and its props type
|
|
42
|
+
* @see {@link Magicko3DotsMoreProps} for available props
|
|
43
|
+
*/
|
|
44
|
+
export { Magicko3DotsMore, type Magicko3DotsMoreProps } from './icons/Magicko3DotsMore';
|
|
45
|
+
|
|
34
46
|
/**
|
|
35
47
|
* Sparkles icon component and its props type
|
|
36
48
|
* @see {@link SparklesProps} for available props
|
package/package.json
CHANGED
package/types.ts
CHANGED
|
@@ -1,15 +1,19 @@
|
|
|
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
|
+
import type { Magicko3DotsMoreProps } from './icons/Magicko3DotsMore';
|
|
6
8
|
import type { SparklesProps } from './icons/Sparkles';
|
|
7
9
|
|
|
8
10
|
export interface IconComponents {
|
|
11
|
+
Apple: React.ComponentType<AppleProps>;
|
|
9
12
|
BrandInstagram: React.ComponentType<BrandInstagramProps>;
|
|
10
13
|
Image6: React.ComponentType<Image6Props>;
|
|
11
14
|
IxWebcam1: React.ComponentType<IxWebcam1Props>;
|
|
15
|
+
Magicko3DotsMore: React.ComponentType<Magicko3DotsMoreProps>;
|
|
12
16
|
Sparkles: React.ComponentType<SparklesProps>;
|
|
13
17
|
}
|
|
14
18
|
|
|
15
|
-
export type IconName = 'BrandInstagram' | 'Image6' | 'IxWebcam1' | 'Sparkles';
|
|
19
|
+
export type IconName = 'Apple' | 'BrandInstagram' | 'Image6' | 'IxWebcam1' | 'Magicko3DotsMore' | 'Sparkles';
|