@central-icons-react/round-filled-radius-3-stroke-1 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.
- package/README.md +13 -0
- package/package.json +1 -1
package/README.md
CHANGED
@@ -57,6 +57,19 @@ function MyComponent() {
|
|
57
57
|
}
|
58
58
|
```
|
59
59
|
|
60
|
+
If you want to have a bit cleaner imports (and you are just using one icon type), you can use import aliases
|
61
|
+
(Requires npm at least v6.9.0 or yarn)
|
62
|
+
|
63
|
+
`npm install central-icons@npm:@central-icons-react/round-filled-radius-3-stroke-1`
|
64
|
+
|
65
|
+
```jsx
|
66
|
+
import { IconHome } from "central-icons/IconHome";
|
67
|
+
|
68
|
+
function MyComponent() {
|
69
|
+
return <IconHome />;
|
70
|
+
}
|
71
|
+
```
|
72
|
+
|
60
73
|
## Icon Properties
|
61
74
|
|
62
75
|
All icons accept the following properties:
|