magick-icons 0.1.23 → 0.1.25
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/ChatMinimize1.tsx +19 -0
- package/index.d.mts +16 -1
- package/index.d.ts +16 -1
- package/index.js +17 -29
- package/index.js.map +1 -1
- package/index.mjs +15 -26
- package/index.mjs.map +1 -1
- package/index.ts +1 -2
- package/package.json +1 -1
- package/types.ts +3 -5
package/index.ts
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
// Auto-generated file - do not edit manually
|
|
2
2
|
export { Apple, type AppleProps } from './icons/Apple';
|
|
3
|
+
export { ChatMinimize1, type ChatMinimize1Props } from './icons/ChatMinimize1';
|
|
3
4
|
export { EnglishC, type EnglishCProps } from './icons/EnglishC';
|
|
4
|
-
export { IconContainer19, type IconContainer19Props } from './icons/IconContainer19';
|
|
5
5
|
export { Image10, type Image10Props } from './icons/Image10';
|
|
6
6
|
export { Image8, type Image8Props } from './icons/Image8';
|
|
7
7
|
export { Magicko3DotsMore, type Magicko3DotsMoreProps } from './icons/Magicko3DotsMore';
|
|
8
|
-
export { Vector13, type Vector13Props } from './icons/Vector13';
|
package/package.json
CHANGED
package/types.ts
CHANGED
|
@@ -1,21 +1,19 @@
|
|
|
1
1
|
// Auto-generated file - do not edit manually
|
|
2
2
|
import type * as React from 'react';
|
|
3
3
|
import type { AppleProps } from './icons/Apple';
|
|
4
|
+
import type { ChatMinimize1Props } from './icons/ChatMinimize1';
|
|
4
5
|
import type { EnglishCProps } from './icons/EnglishC';
|
|
5
|
-
import type { IconContainer19Props } from './icons/IconContainer19';
|
|
6
6
|
import type { Image10Props } from './icons/Image10';
|
|
7
7
|
import type { Image8Props } from './icons/Image8';
|
|
8
8
|
import type { Magicko3DotsMoreProps } from './icons/Magicko3DotsMore';
|
|
9
|
-
import type { Vector13Props } from './icons/Vector13';
|
|
10
9
|
|
|
11
10
|
export interface IconComponents {
|
|
12
11
|
Apple: React.ComponentType<AppleProps>;
|
|
12
|
+
ChatMinimize1: React.ComponentType<ChatMinimize1Props>;
|
|
13
13
|
EnglishC: React.ComponentType<EnglishCProps>;
|
|
14
|
-
IconContainer19: React.ComponentType<IconContainer19Props>;
|
|
15
14
|
Image10: React.ComponentType<Image10Props>;
|
|
16
15
|
Image8: React.ComponentType<Image8Props>;
|
|
17
16
|
Magicko3DotsMore: React.ComponentType<Magicko3DotsMoreProps>;
|
|
18
|
-
Vector13: React.ComponentType<Vector13Props>;
|
|
19
17
|
}
|
|
20
18
|
|
|
21
|
-
export type IconName = 'Apple' | '
|
|
19
|
+
export type IconName = 'Apple' | 'ChatMinimize1' | 'EnglishC' | 'Image10' | 'Image8' | 'Magicko3DotsMore';
|