developer-icons 4.3.2 → 4.3.4
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/AnthropicBasicDarkIcon.d.ts +3 -0
- package/dist/icons/AnthropicBasicLightIcon.d.ts +3 -0
- package/dist/icons/AnthropicIcon.d.ts +3 -0
- package/dist/icons/CIcon.d.ts +3 -0
- package/dist/icons/ClaudeAIIcon.d.ts +3 -0
- package/dist/icons/FlaskDarkIcon.d.ts +3 -0
- package/dist/icons/FlaskLightIcon.d.ts +3 -0
- package/dist/icons/GitHubDarkIcon.d.ts +3 -0
- package/dist/icons/GitHubLightIcon.d.ts +3 -0
- package/dist/icons/RustDarkIcon.d.ts +3 -0
- package/dist/icons/RustLightIcon.d.ts +3 -0
- package/dist/icons/TensorflowIcon.d.ts +3 -0
- package/dist/icons/index.d.ts +12 -3
- package/dist/main.js +871 -787
- package/dist/utils.d.ts +1 -1
- package/package.json +2 -2
- package/dist/icons/FlaskIcon.d.ts +0 -3
- package/dist/icons/GitHubIcon.d.ts +0 -3
- package/dist/icons/RustIcon.d.ts +0 -3
package/dist/icons/index.d.ts
CHANGED
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
export * from './AdobeXDIcon.tsx';
|
|
2
|
+
export * from './AnthropicIcon.tsx';
|
|
3
|
+
export * from './AnthropicBasicLightIcon.tsx';
|
|
4
|
+
export * from './AnthropicBasicDarkIcon.tsx';
|
|
5
|
+
export * from './ClaudeAIIcon.tsx';
|
|
2
6
|
export * from './ApacheIcon.tsx';
|
|
3
7
|
export * from './AppwriteIcon.tsx';
|
|
4
8
|
export * from './ARCIcon.tsx';
|
|
@@ -23,6 +27,7 @@ export * from './Bootstrap5Icon.tsx';
|
|
|
23
27
|
export * from './BraveIcon.tsx';
|
|
24
28
|
export * from './BulmaUIIcon.tsx';
|
|
25
29
|
export * from './BunJsIcon.tsx';
|
|
30
|
+
export * from './CIcon.tsx';
|
|
26
31
|
export * from './CSharpIcon.tsx';
|
|
27
32
|
export * from './CPlusPlusIcon.tsx';
|
|
28
33
|
export * from './CakePHPIcon.tsx';
|
|
@@ -71,13 +76,15 @@ export * from './FaunaDBIcon.tsx';
|
|
|
71
76
|
export * from './FigmaIcon.tsx';
|
|
72
77
|
export * from './FirebaseIcon.tsx';
|
|
73
78
|
export * from './FirefoxIcon.tsx';
|
|
74
|
-
export * from './
|
|
79
|
+
export * from './FlaskDarkIcon.tsx';
|
|
80
|
+
export * from './FlaskLightIcon.tsx';
|
|
75
81
|
export * from './FlutterIcon.tsx';
|
|
76
82
|
export * from './FlyIoIcon.tsx';
|
|
77
83
|
export * from './FramerIcon.tsx';
|
|
78
84
|
export * from './GatsbyIcon.tsx';
|
|
79
85
|
export * from './GitIcon.tsx';
|
|
80
|
-
export * from './
|
|
86
|
+
export * from './GitHubDarkIcon.tsx';
|
|
87
|
+
export * from './GitHubLightIcon.tsx';
|
|
81
88
|
export * from './GitHubCopilotIcon.tsx';
|
|
82
89
|
export * from './GitLabIcon.tsx';
|
|
83
90
|
export * from './GmailIcon.tsx';
|
|
@@ -198,7 +205,8 @@ export * from './RenderIcon.tsx';
|
|
|
198
205
|
export * from './ReSendIcon.tsx';
|
|
199
206
|
export * from './RollupIcon.tsx';
|
|
200
207
|
export * from './RubyIcon.tsx';
|
|
201
|
-
export * from './
|
|
208
|
+
export * from './RustDarkIcon.tsx';
|
|
209
|
+
export * from './RustLightIcon.tsx';
|
|
202
210
|
export * from './SafariIcon.tsx';
|
|
203
211
|
export * from './SassIcon.tsx';
|
|
204
212
|
export * from './ScalaIcon.tsx';
|
|
@@ -223,6 +231,7 @@ export * from './SwaggerIcon.tsx';
|
|
|
223
231
|
export * from './SwiftIcon.tsx';
|
|
224
232
|
export * from './TailwindCSSIcon.tsx';
|
|
225
233
|
export * from './TelegramIcon.tsx';
|
|
234
|
+
export * from './TensorflowIcon.tsx';
|
|
226
235
|
export * from './ThreadsDarkIcon.tsx';
|
|
227
236
|
export * from './ThreadsLightIcon.tsx';
|
|
228
237
|
export * from './ThreeJsIcon.tsx';
|