magick-icons 0.1.26 → 0.1.28
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/BrandInstagram.tsx +30 -0
- package/icons/EnglishC.tsx +13 -0
- package/index.d.mts +14 -31
- package/index.d.ts +14 -31
- package/index.js +6 -126
- package/index.js.map +1 -1
- package/index.mjs +6 -119
- package/index.mjs.map +1 -1
- package/index.ts +19 -8
- package/package.json +1 -1
- package/types.ts +3 -17
package/index.ts
CHANGED
|
@@ -1,9 +1,20 @@
|
|
|
1
1
|
// Auto-generated file - do not edit manually
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
2
|
+
/**
|
|
3
|
+
* @packageDocumentation
|
|
4
|
+
* Magick Icons - SVG icon components for React
|
|
5
|
+
*
|
|
6
|
+
* @example
|
|
7
|
+
* ```tsx
|
|
8
|
+
* import { BrandInstagram } from 'magick-icons';
|
|
9
|
+
*
|
|
10
|
+
* function MyComponent() {
|
|
11
|
+
* return <BrandInstagram size={24} className="text-blue-500" />;
|
|
12
|
+
* }
|
|
13
|
+
* ```
|
|
14
|
+
*/
|
|
15
|
+
|
|
16
|
+
/**
|
|
17
|
+
* BrandInstagram icon component and its props type
|
|
18
|
+
* @see {@link BrandInstagramProps} for available props
|
|
19
|
+
*/
|
|
20
|
+
export { BrandInstagram, type BrandInstagramProps } from './icons/BrandInstagram';
|
package/package.json
CHANGED
package/types.ts
CHANGED
|
@@ -1,23 +1,9 @@
|
|
|
1
1
|
// Auto-generated file - do not edit manually
|
|
2
2
|
import type * as React from 'react';
|
|
3
|
-
import type {
|
|
4
|
-
import type { ChatMinimize1Props } from './icons/ChatMinimize1';
|
|
5
|
-
import type { EnglishCProps } from './icons/EnglishC';
|
|
6
|
-
import type { Image10Props } from './icons/Image10';
|
|
7
|
-
import type { Image6Props } from './icons/Image6';
|
|
8
|
-
import type { Image8Props } from './icons/Image8';
|
|
9
|
-
import type { Magicko3DotsMoreProps } from './icons/Magicko3DotsMore';
|
|
10
|
-
import type { PepiconsPopSpeakerHigh1Props } from './icons/PepiconsPopSpeakerHigh1';
|
|
3
|
+
import type { BrandInstagramProps } from './icons/BrandInstagram';
|
|
11
4
|
|
|
12
5
|
export interface IconComponents {
|
|
13
|
-
|
|
14
|
-
ChatMinimize1: React.ComponentType<ChatMinimize1Props>;
|
|
15
|
-
EnglishC: React.ComponentType<EnglishCProps>;
|
|
16
|
-
Image10: React.ComponentType<Image10Props>;
|
|
17
|
-
Image6: React.ComponentType<Image6Props>;
|
|
18
|
-
Image8: React.ComponentType<Image8Props>;
|
|
19
|
-
Magicko3DotsMore: React.ComponentType<Magicko3DotsMoreProps>;
|
|
20
|
-
PepiconsPopSpeakerHigh1: React.ComponentType<PepiconsPopSpeakerHigh1Props>;
|
|
6
|
+
BrandInstagram: React.ComponentType<BrandInstagramProps>;
|
|
21
7
|
}
|
|
22
8
|
|
|
23
|
-
export type IconName = '
|
|
9
|
+
export type IconName = 'BrandInstagram';
|