@nation-a/icons 0.0.5 → 0.0.6

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.
@@ -0,0 +1,7 @@
1
+ import { SVGProps } from 'react';
2
+ type Props = SVGProps<SVGSVGElement> & {
3
+ size?: number;
4
+ color?: string;
5
+ };
6
+ declare function HateOutlineIcon({ size, color, ...props }: Props): import("react/jsx-runtime").JSX.Element;
7
+ export default HateOutlineIcon;
@@ -53,6 +53,7 @@ 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';
56
57
  export { default as HomeFillIcon } from './HomeFillIcon';
57
58
  export { default as HomeOutlineIcon } from './HomeOutlineIcon';
58
59
  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.5",
3
+ "version": "0.0.6",
4
4
  "main": "./dist/index.cjs.js",
5
5
  "module": "./dist/index.es.js",
6
6
  "types": "./dist/types/index.d.ts",
@@ -24,6 +24,14 @@
24
24
  "react": ">=18.0.0 <20.0.0",
25
25
  "react-dom": ">=18.0.0 <20.0.0"
26
26
  },
27
+ "peerDependenciesMeta": {
28
+ "react": {
29
+ "optional": true
30
+ },
31
+ "react-dom": {
32
+ "optional": true
33
+ }
34
+ },
27
35
  "scripts": {
28
36
  "clean": "rm -rf src/components",
29
37
  "gen:icons": "tsx src/scripts/generate-icons.ts",