developer-icons 4.1.0 → 4.1.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 +1 -1
- 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
@@ -8,7 +8,7 @@ Welcome to **`developer-icons`**, a collection of high-quality, customizable tec
|
|
8
8
|
- 🎨**Customizable:** Cusomizations are available for all icons. You can change the size, color, stroke width, and much more.
|
9
9
|
- 🔍**Perfectly scalable:** Icons are designed to be properly scaled to any size without compromising the quality.
|
10
10
|
- 🔄**Consistent icons:** No more dealing with inconsistent styles and designs. All icons are designed with a pre-defined set of rules.
|
11
|
-
- 🌗**Various
|
11
|
+
- 🌗**Various variants:** Icons come with their own set of families such as light and dark mode, wordmark, and other variants.
|
12
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
13
|
|
14
14
|
Explore more and start using `developer-icons` today to enhance your projects with stunning, customizable icons!
|
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';
|