@nation-a/icons 0.0.2 → 0.0.4
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/index.cjs.js +6 -6
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +159 -184
- package/dist/index.es.js.map +1 -1
- package/dist/types/index.d.ts +0 -1
- package/package.json +3 -7
- package/dist/types/HateOutlineIcon.d.ts +0 -10
package/dist/types/index.d.ts
CHANGED
|
@@ -53,7 +53,6 @@ export { default as GameCircleFillIcon } from './GameCircleFillIcon';
|
|
|
53
53
|
export { default as GroupCircleFillIcon } from './GroupCircleFillIcon';
|
|
54
54
|
export { default as GroupFillIcon } from './GroupFillIcon';
|
|
55
55
|
export { default as HateFillIcon } from './HateFillIcon';
|
|
56
|
-
export { default as HateOutlineIcon } from './HateOutlineIcon';
|
|
57
56
|
export { default as HomeFillIcon } from './HomeFillIcon';
|
|
58
57
|
export { default as HomeOutlineIcon } from './HomeOutlineIcon';
|
|
59
58
|
export { default as InvisibleOutlineIcon } from './InvisibleOutlineIcon';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nation-a/icons",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4",
|
|
4
4
|
"main": "./dist/index.cjs.js",
|
|
5
5
|
"module": "./dist/index.es.js",
|
|
6
6
|
"types": "./dist/types/index.d.ts",
|
|
@@ -10,10 +10,6 @@
|
|
|
10
10
|
"publishConfig": {
|
|
11
11
|
"access": "public"
|
|
12
12
|
},
|
|
13
|
-
"dependencies": {
|
|
14
|
-
"react": "^18.2.0",
|
|
15
|
-
"react-dom": "^18.2.0"
|
|
16
|
-
},
|
|
17
13
|
"devDependencies": {
|
|
18
14
|
"@types/node": "^18.0.0",
|
|
19
15
|
"@types/react": "^18.2.0",
|
|
@@ -25,8 +21,8 @@
|
|
|
25
21
|
"vite-plugin-dts": "^4.5.0"
|
|
26
22
|
},
|
|
27
23
|
"peerDependencies": {
|
|
28
|
-
"react": "
|
|
29
|
-
"react-dom": "
|
|
24
|
+
"react": ">=18.0.0 <20.0.0",
|
|
25
|
+
"react-dom": ">=18.0.0 <20.0.0"
|
|
30
26
|
},
|
|
31
27
|
"scripts": {
|
|
32
28
|
"clean": "rm -rf src/components",
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* DO NOT EDIT - automatically generated by script
|
|
3
|
-
*/
|
|
4
|
-
import * as React from 'react';
|
|
5
|
-
type Props = React.SVGProps<SVGSVGElement> & {
|
|
6
|
-
size?: number;
|
|
7
|
-
color?: string;
|
|
8
|
-
};
|
|
9
|
-
declare function HateOutlineIcon({ size, color, ...props }: Props): import("react/jsx-runtime").JSX.Element;
|
|
10
|
-
export default HateOutlineIcon;
|