developer-icons 1.0.0 → 1.0.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/README.md +39 -1
- package/package.json +1 -1
package/README.md
CHANGED
@@ -1 +1,39 @@
|
|
1
|
-
#
|
1
|
+
# Developer Icons
|
2
|
+
|
3
|
+
## About
|
4
|
+
|
5
|
+
`Developer Icons` is a collection of ready-to-use high-quality vector icons for developers and designers.
|
6
|
+
|
7
|
+
## Features
|
8
|
+
|
9
|
+
- **High-Quality Icons**: A curated set of icons suitable for various development projects.
|
10
|
+
- **Easy to Use**: Icons are organized and can be easily integrated into projects.
|
11
|
+
- **Open Source**: Freely available for personal and commercial use, adhering to specified licenses.
|
12
|
+
|
13
|
+
## Installation
|
14
|
+
|
15
|
+
To use the icons in your project, run the following command:
|
16
|
+
|
17
|
+
```bash
|
18
|
+
npm i developer-icons
|
19
|
+
```
|
20
|
+
|
21
|
+
## Usage
|
22
|
+
|
23
|
+
Import named icon components from the `developer-icons` package and use it as any other component with props similar to that of an svg:
|
24
|
+
|
25
|
+
```javascript
|
26
|
+
import {HtmlIcon, JavascriptIcon} from "developer-icons";
|
27
|
+
|
28
|
+
//inside your React component JSX
|
29
|
+
<HtmlIcon className="html-icon" />
|
30
|
+
<JavascriptIcon height={52} width={52} />
|
31
|
+
```
|
32
|
+
|
33
|
+
## Contributing
|
34
|
+
|
35
|
+
Contributions are welcome! If you have an icon to add or an improvement to suggest, please open a pull request or an issue.
|
36
|
+
|
37
|
+
## Acknowledgments
|
38
|
+
|
39
|
+
Thanks to all the contributors who have helped in creating and maintaining this icon collection.
|
package/package.json
CHANGED