@akinon/icons 0.1.0 → 0.1.1
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/dist/icomoon.d.ts +2 -1
- package/dist/icon.d.ts +1 -1
- package/package.json +3 -3
package/dist/icomoon.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { CSSProperties, JSXElementConstructor, SVGProps } from 'react';
|
|
2
|
+
|
|
2
3
|
type IconSetItem = {
|
|
3
4
|
properties: {
|
|
4
5
|
name: string;
|
|
@@ -25,6 +26,6 @@ export interface IconProps extends SVGProps<SVGElement> {
|
|
|
25
26
|
interface IcomoonProps extends IconProps {
|
|
26
27
|
iconSet: IconSet;
|
|
27
28
|
}
|
|
28
|
-
export declare const Icomoon: ({ iconSet, icon, size, title, disableFill, removeInlineStyle, SvgComponent, PathComponent, ...props }: IcomoonProps) => import(
|
|
29
|
+
export declare const Icomoon: ({ iconSet, icon, size, title, disableFill, removeInlineStyle, SvgComponent, PathComponent, ...props }: IcomoonProps) => import('react').ReactElement<any, string | JSXElementConstructor<any>> | null;
|
|
29
30
|
export {};
|
|
30
31
|
//# sourceMappingURL=icomoon.d.ts.map
|
package/dist/icon.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@akinon/icons",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -16,8 +16,8 @@
|
|
|
16
16
|
"tsconfig": "0.0.0"
|
|
17
17
|
},
|
|
18
18
|
"peerDependencies": {
|
|
19
|
-
"react": "
|
|
20
|
-
"react-dom": "
|
|
19
|
+
"react": "18.x",
|
|
20
|
+
"react-dom": "18.x"
|
|
21
21
|
},
|
|
22
22
|
"clean-package": "../../../clean-package.config.json",
|
|
23
23
|
"types": "dist/index.d.ts",
|