@central-icons-react/all 0.0.32 → 0.0.33

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.
Files changed (2) hide show
  1. package/README.md +12 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -65,6 +65,18 @@ function MyComponent() {
65
65
  }
66
66
  ```
67
67
 
68
+ If you want to have a bit cleaner imports (and you are just using one icon type), you can use import aliases
69
+
70
+ `npm install central-icons@npm:@central-icons-react/round-filled-radius-0-stroke-1`
71
+
72
+ ```jsx
73
+ import { IconHome } from "central-icons/IconHome";
74
+
75
+ function MyComponent() {
76
+ return <IconHome />;
77
+ }
78
+ ```
79
+
68
80
  ## Icon Properties
69
81
 
70
82
  All icons accept the following properties:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@central-icons-react/all",
3
- "version": "0.0.32",
3
+ "version": "0.0.33",
4
4
  "license": "SEE LICENSE IN LICENSE.md",
5
5
  "homepage": "https://iconists.co/central",
6
6
  "sideEffects": false,