developer-icons 4.0.1 → 4.1.1
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +19 -15
- package/dist/icons/BingIcon.d.ts +3 -0
- package/dist/icons/BraveIcon.d.ts +3 -0
- package/dist/icons/GoogleIcon.d.ts +3 -0
- package/dist/icons/GoogleWordmark.d.ts +3 -0
- package/dist/icons/TorIcon.d.ts +3 -0
- package/dist/icons/VivaldiIcon.d.ts +3 -0
- package/dist/icons/index.d.ts +6 -0
- package/dist/main.js +715 -635
- package/dist/utils.d.ts +1 -1
- package/package.json +2 -1
package/README.md
CHANGED
@@ -1,39 +1,41 @@
|
|
1
1
|
# Developer Icons
|
2
2
|
|
3
|
-
|
3
|
+
Welcome to **`developer-icons`**, a collection of high-quality, customizable tech icons designed for developers and designers. With full TypeScript support, these icons are perfect for use in any React or Next.js project. Alternatively, download the icons in image formats for your design needs directly from our [official website](https://xandemon.github.io/developer-icons/ "Homepage | Developer Icons").
|
4
4
|
|
5
5
|
## Features
|
6
6
|
|
7
|
-
-
|
8
|
-
-
|
9
|
-
-
|
10
|
-
-
|
11
|
-
-
|
12
|
-
-
|
7
|
+
- ⚡**Highly optimized:** Icons are optimized for performance and size. They are designed to be as small as possible while maintaining the quality.
|
8
|
+
- 🎨**Customizable:** Cusomizations are available for all icons. You can change the size, color, stroke width, and much more.
|
9
|
+
- 🔍**Perfectly scalable:** Icons are designed to be properly scaled to any size without compromising the quality.
|
10
|
+
- 🔄**Consistent icons:** No more dealing with inconsistent styles and designs. All icons are designed with a pre-defined set of rules.
|
11
|
+
- 🌗**Various variants:** Icons come with their own set of families such as light and dark mode, wordmark, and other variants.
|
12
|
+
- ⭐**Free & open-source:** Completely free and open-source with license. No need to worry about privately hidden malicious code and be a contributor yourself.
|
13
|
+
|
14
|
+
Explore more and start using `developer-icons` today to enhance your projects with stunning, customizable icons!
|
13
15
|
|
14
16
|
## Installation
|
15
17
|
|
16
|
-
To
|
18
|
+
To add the icons to your project, run one of the following commands:
|
17
19
|
|
18
|
-
```
|
20
|
+
```bash
|
19
21
|
npm i developer-icons
|
20
22
|
```
|
21
23
|
|
22
24
|
or
|
23
25
|
|
24
|
-
```
|
26
|
+
```bash
|
25
27
|
yarn add developer-icons
|
26
28
|
```
|
27
29
|
|
28
30
|
or
|
29
31
|
|
30
|
-
```
|
32
|
+
```bash
|
31
33
|
pnpm add developer-icons
|
32
34
|
```
|
33
35
|
|
34
36
|
## Usage
|
35
37
|
|
36
|
-
Import named icon components from the `developer-icons` package and use
|
38
|
+
Import named icon components from the `developer-icons` package and use them just like any other React component, with props/attributes similar to those of an SVG:
|
37
39
|
|
38
40
|
```javascript
|
39
41
|
import { HtmlIcon, JavascriptIcon } from "developer-icons";
|
@@ -49,12 +51,14 @@ export const YourReactComponent = () => {
|
|
49
51
|
};
|
50
52
|
```
|
51
53
|
|
52
|
-
|
54
|
+
In this example, we import `HtmlIcon` and `JavascriptIcon` from the `developer-icons` package and use them within a React component. You can customize the icons by adjusting their `size`, `color`, `style`, and other properties.
|
53
55
|
|
54
|
-
|
56
|
+
## Contributing
|
55
57
|
|
56
|
-
|
58
|
+
We welcome contributions of all kinds, whether you're looking to add new icons, improve existing ones, or enhance the overall project. To get started, refer to our [Contributing Guidelines](https://xandemon.github.io/developer-icons/docs/contributing).
|
57
59
|
|
58
60
|
## License
|
59
61
|
|
60
62
|
Licensed under MIT License and copyrights reserved.
|
63
|
+
|
64
|
+
For complete documentation, visit our [official documentation](https://xandemon.github.io/developer-icons/docs).
|
package/dist/icons/index.d.ts
CHANGED
@@ -13,11 +13,13 @@ export * from './AzureIcon.tsx';
|
|
13
13
|
export * from './BabelIcon.tsx';
|
14
14
|
export * from './BackboneJsIcon.tsx';
|
15
15
|
export * from './BashIcon.tsx';
|
16
|
+
export * from './BingIcon.tsx';
|
16
17
|
export * from './BitbucketIcon.tsx';
|
17
18
|
export * from './BitnamiIcon.tsx';
|
18
19
|
export * from './BlueprintJsIcon.tsx';
|
19
20
|
export * from './Bootstrap4Icon.tsx';
|
20
21
|
export * from './Bootstrap5Icon.tsx';
|
22
|
+
export * from './BraveIcon.tsx';
|
21
23
|
export * from './BulmaUIIcon.tsx';
|
22
24
|
export * from './BunJsIcon.tsx';
|
23
25
|
export * from './CSharpIcon.tsx';
|
@@ -75,6 +77,8 @@ export * from './GitHubIcon.tsx';
|
|
75
77
|
export * from './GitLabIcon.tsx';
|
76
78
|
export * from './GmailIcon.tsx';
|
77
79
|
export * from './GoIcon.tsx';
|
80
|
+
export * from './GoogleIcon.tsx';
|
81
|
+
export * from './GoogleWordmark.tsx';
|
78
82
|
export * from './GoogleCloudIcon.tsx';
|
79
83
|
export * from './GrafanaIcon.tsx';
|
80
84
|
export * from './GrafbaseIcon.tsx';
|
@@ -206,6 +210,7 @@ export * from './SwiftIcon.tsx';
|
|
206
210
|
export * from './TailwindCSSIcon.tsx';
|
207
211
|
export * from './ThreeJsIcon.tsx';
|
208
212
|
export * from './TinyHTTPIcon.tsx';
|
213
|
+
export * from './TorIcon.tsx';
|
209
214
|
export * from './TRPCIcon.tsx';
|
210
215
|
export * from './TypeScriptIcon.tsx';
|
211
216
|
export * from './UbuntuIcon.tsx';
|
@@ -214,6 +219,7 @@ export * from './VimIcon.tsx';
|
|
214
219
|
export * from './VisualBasicIcon.tsx';
|
215
220
|
export * from './ViteJSIcon.tsx';
|
216
221
|
export * from './VitestIcon.tsx';
|
222
|
+
export * from './VivaldiIcon.tsx';
|
217
223
|
export * from './VisualStudioCodeIcon.tsx';
|
218
224
|
export * from './VueJsIcon.tsx';
|
219
225
|
export * from './WebAssemblyIcon.tsx';
|