magick-icons 0.1.30 → 0.1.31
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/Image6.tsx +36 -0
- package/index.js +73 -55
- package/index.js.map +1 -1
- package/index.mjs +73 -56
- 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
|
@@ -19,6 +19,12 @@
|
|
|
19
19
|
*/
|
|
20
20
|
export { BrandInstagram, type BrandInstagramProps } from './icons/BrandInstagram';
|
|
21
21
|
|
|
22
|
+
/**
|
|
23
|
+
* Image6 icon component and its props type
|
|
24
|
+
* @see {@link Image6Props} for available props
|
|
25
|
+
*/
|
|
26
|
+
export { Image6, type Image6Props } from './icons/Image6';
|
|
27
|
+
|
|
22
28
|
/**
|
|
23
29
|
* IxWebcam1 icon component and its props type
|
|
24
30
|
* @see {@link IxWebcam1Props} for available props
|
package/package.json
CHANGED
package/types.ts
CHANGED
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
// Auto-generated file - do not edit manually
|
|
2
2
|
import type * as React from 'react';
|
|
3
3
|
import type { BrandInstagramProps } from './icons/BrandInstagram';
|
|
4
|
+
import type { Image6Props } from './icons/Image6';
|
|
4
5
|
import type { IxWebcam1Props } from './icons/IxWebcam1';
|
|
5
6
|
import type { SparklesProps } from './icons/Sparkles';
|
|
6
7
|
|
|
7
8
|
export interface IconComponents {
|
|
8
9
|
BrandInstagram: React.ComponentType<BrandInstagramProps>;
|
|
10
|
+
Image6: React.ComponentType<Image6Props>;
|
|
9
11
|
IxWebcam1: React.ComponentType<IxWebcam1Props>;
|
|
10
12
|
Sparkles: React.ComponentType<SparklesProps>;
|
|
11
13
|
}
|
|
12
14
|
|
|
13
|
-
export type IconName = 'BrandInstagram' | 'IxWebcam1' | 'Sparkles';
|
|
15
|
+
export type IconName = 'BrandInstagram' | 'Image6' | 'IxWebcam1' | 'Sparkles';
|