developer-icons 4.2.1 → 4.2.3
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/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/UpworkBasicIcon.d.ts +3 -0
- package/dist/icons/UpworkIcon.d.ts +3 -0
- package/dist/icons/UpworkWordmark.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 +10 -0
- package/dist/main.js +642 -568
- package/dist/utils.d.ts +1 -1
- package/package.json +1 -1
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,13 @@ 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 './UpworkIcon.tsx';
|
236
|
+
export * from './UpworkBasicIcon.tsx';
|
237
|
+
export * from './UpworkWordmark.tsx';
|
238
|
+
export * from './VercelDarkWordmark.tsx';
|
239
|
+
export * from './VercelDarkIcon.tsx';
|
240
|
+
export * from './VercelLightWordmark.tsx';
|
241
|
+
export * from './VercelLightIcon.tsx';
|
232
242
|
export * from './VimIcon.tsx';
|
233
243
|
export * from './VisualBasicIcon.tsx';
|
234
244
|
export * from './VisualStudioCodeIcon.tsx';
|