developer-icons 4.2.0 → 4.2.2
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 +2 -0
- package/dist/icons/ExpressJsDarkIcon.d.ts +3 -0
- package/dist/icons/ExpressJsLightIcon.d.ts +3 -0
- package/dist/icons/NotionIcon.d.ts +3 -0
- package/dist/icons/VercelDarkIcon.d.ts +3 -0
- package/dist/icons/VercelDarkWordmark.d.ts +3 -0
- package/dist/icons/VercelLightIcon.d.ts +3 -0
- package/dist/icons/VercelLightWordmark.d.ts +3 -0
- package/dist/icons/index.d.ts +7 -0
- package/dist/main.js +612 -562
- package/dist/utils.d.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
@@ -2,6 +2,8 @@
|
|
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
|
+

|
6
|
+
|
5
7
|
## Features
|
6
8
|
|
7
9
|
- ⚡**Highly optimized:** Icons are optimized for performance and size. They are designed to be as small as possible while maintaining the quality.
|
package/dist/icons/index.d.ts
CHANGED
@@ -63,6 +63,8 @@ export * from './EmberIcon.tsx';
|
|
63
63
|
export * from './ErlangIcon.tsx';
|
64
64
|
export * from './EsbuildIcon.tsx';
|
65
65
|
export * from './ESLintIcon.tsx';
|
66
|
+
export * from './ExpressJsDarkIcon.tsx';
|
67
|
+
export * from './ExpressJsLightIcon.tsx';
|
66
68
|
export * from './FacebookIcon.tsx';
|
67
69
|
export * from './FaunaDBIcon.tsx';
|
68
70
|
export * from './FigmaIcon.tsx';
|
@@ -149,6 +151,7 @@ export * from './NextJsIcon.tsx';
|
|
149
151
|
export * from './NextJsWordmark.tsx';
|
150
152
|
export * from './NimIcon.tsx';
|
151
153
|
export * from './NodeJsIcon.tsx';
|
154
|
+
export * from './NotionIcon.tsx';
|
152
155
|
export * from './NPMIcon.tsx';
|
153
156
|
export * from './NPMWordmark.tsx';
|
154
157
|
export * from './NuxtJsIcon.tsx';
|
@@ -229,6 +232,10 @@ export * from './TwitterIcon.tsx';
|
|
229
232
|
export * from './TypeScriptIcon.tsx';
|
230
233
|
export * from './UbuntuIcon.tsx';
|
231
234
|
export * from './UnJsIcon.tsx';
|
235
|
+
export * from './VercelDarkWordmark.tsx';
|
236
|
+
export * from './VercelDarkIcon.tsx';
|
237
|
+
export * from './VercelLightWordmark.tsx';
|
238
|
+
export * from './VercelLightIcon.tsx';
|
232
239
|
export * from './VimIcon.tsx';
|
233
240
|
export * from './VisualBasicIcon.tsx';
|
234
241
|
export * from './VisualStudioCodeIcon.tsx';
|