artode-icons 0.1.0

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/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 Artode Contributors
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,73 @@
1
+ # Artode Icons
2
+
3
+ A premium collection of canvas-based, animated icons designed with a Swiss International Style aesthetic. These icons feature a unique "interference wave" animation effect on hover, perfect for adding a touch of sophisticated dynamism to your React applications.
4
+
5
+ ## Features
6
+
7
+ - **Canvas-based Rendering**: High-performance rendering using HTML5 Canvas.
8
+ - **Interference Wave Animation**: A custom physics-inspired wave effect that activates on hover.
9
+ - **Swiss Design Aesthetic**: Minimalist, geometric, and clean.
10
+ - **Customizable**: Control size, color, stroke/fill styles, and hover states.
11
+ - **TypeScript Support**: Fully typed for seamless integration.
12
+
13
+ ## Installation
14
+
15
+ ```bash
16
+ npm install artode-icons
17
+ # or
18
+ yarn add artode-icons
19
+ # or
20
+ pnpm add artode-icons
21
+ ```
22
+ *(Note: Ensure you have configured the registry or installed from the source as this package is currently private/local)*
23
+
24
+ ## Usage
25
+
26
+ Import the icons directly from the package:
27
+
28
+ ```tsx
29
+ import { AppleIcon, ReactIcon } from 'artode-icons/icons';
30
+
31
+ export default function MyComponent() {
32
+ return (
33
+ <div className="flex gap-4">
34
+ <AppleIcon size={48} />
35
+ <ReactIcon size={48} color="#61DAFB" />
36
+ {/* Outlined version */}
37
+ <ReactIcon size={48} drawType="stroke" />
38
+ </div>
39
+ );
40
+ }
41
+ ```
42
+
43
+ ## Props
44
+
45
+ All icons accept the following props:
46
+
47
+ | Prop | Type | Default | Description |
48
+ |------|------|---------|-------------|
49
+ | `size` | `number` | `32` | The width and height of the icon in pixels. |
50
+ | `color` | `string` | `'#D80018'` | The fill or stroke color of the icon. Default is Swiss Red. |
51
+ | `drawType` | `'fill' \| 'stroke'` | `'fill'` | Whether to fill the shape or draw its outline. |
52
+ | `className` | `string` | `undefined` | Additional CSS classes to apply to the canvas element. |
53
+ | `forceHover` | `boolean` | `false` | If true, the wave animation will play continuously without hover. |
54
+
55
+ ## Development
56
+
57
+ To run the development server and view the icon gallery:
58
+
59
+ ```bash
60
+ npm run dev
61
+ ```
62
+
63
+ ## Building
64
+
65
+ To build the project:
66
+
67
+ ```bash
68
+ npm run build
69
+ ```
70
+
71
+ ## License
72
+
73
+ [MIT](LICENSE)
@@ -0,0 +1,272 @@
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
2
+ import React from 'react';
3
+
4
+ interface ArtodeIconProps {
5
+ /** SVG Path string for the icon shape */
6
+ path: string;
7
+ /** Size of the canvas/icon in pixels */
8
+ size?: number;
9
+ /** Override the primary Swiss Red color */
10
+ color?: string;
11
+ /** ClassName for additional styling */
12
+ className?: string;
13
+ /** Force hover state for animation control */
14
+ forceHover?: boolean;
15
+ /** Draw either the stroke or the fill of the SVG path */
16
+ drawType?: 'fill' | 'stroke';
17
+ }
18
+ declare const ArtodeIcon: React.FC<ArtodeIconProps>;
19
+
20
+ declare const AngularIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
21
+ drawType?: "fill" | "stroke";
22
+ }) => react_jsx_runtime.JSX.Element;
23
+
24
+ declare const AppleIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
25
+ drawType?: "fill" | "stroke";
26
+ }) => react_jsx_runtime.JSX.Element;
27
+
28
+ declare const AstroIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
29
+ drawType?: "fill" | "stroke";
30
+ }) => react_jsx_runtime.JSX.Element;
31
+
32
+ declare const AWSIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
33
+ drawType?: "fill" | "stroke";
34
+ }) => react_jsx_runtime.JSX.Element;
35
+
36
+ declare const AzureIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
37
+ drawType?: "fill" | "stroke";
38
+ }) => react_jsx_runtime.JSX.Element;
39
+
40
+ declare const BehanceIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
41
+ drawType?: "fill" | "stroke";
42
+ }) => react_jsx_runtime.JSX.Element;
43
+
44
+ declare const BunIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
45
+ drawType?: "fill" | "stroke";
46
+ }) => react_jsx_runtime.JSX.Element;
47
+
48
+ declare const CPlusPlusIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
49
+ drawType?: "fill" | "stroke";
50
+ }) => react_jsx_runtime.JSX.Element;
51
+
52
+ declare const CSharpIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
53
+ drawType?: "fill" | "stroke";
54
+ }) => react_jsx_runtime.JSX.Element;
55
+
56
+ declare const DiscordIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
57
+ drawType?: "fill" | "stroke";
58
+ }) => react_jsx_runtime.JSX.Element;
59
+
60
+ declare const DjangoIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
61
+ drawType?: "fill" | "stroke";
62
+ }) => react_jsx_runtime.JSX.Element;
63
+
64
+ declare const DockerIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
65
+ drawType?: "fill" | "stroke";
66
+ }) => react_jsx_runtime.JSX.Element;
67
+
68
+ declare const FigmaIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
69
+ drawType?: "fill" | "stroke";
70
+ }) => react_jsx_runtime.JSX.Element;
71
+
72
+ declare const FirebaseIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
73
+ drawType?: "fill" | "stroke";
74
+ }) => react_jsx_runtime.JSX.Element;
75
+
76
+ declare const FlutterIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
77
+ drawType?: "fill" | "stroke";
78
+ }) => react_jsx_runtime.JSX.Element;
79
+
80
+ declare const GCPIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
81
+ drawType?: "fill" | "stroke";
82
+ }) => react_jsx_runtime.JSX.Element;
83
+
84
+ declare const GitIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
85
+ drawType?: "fill" | "stroke";
86
+ }) => react_jsx_runtime.JSX.Element;
87
+
88
+ declare const GitHubIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
89
+ drawType?: "fill" | "stroke";
90
+ }) => react_jsx_runtime.JSX.Element;
91
+
92
+ declare const GitLabIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
93
+ drawType?: "fill" | "stroke";
94
+ }) => react_jsx_runtime.JSX.Element;
95
+
96
+ declare const GoIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
97
+ drawType?: "fill" | "stroke";
98
+ }) => react_jsx_runtime.JSX.Element;
99
+
100
+ declare const GoogleIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
101
+ drawType?: "fill" | "stroke";
102
+ }) => react_jsx_runtime.JSX.Element;
103
+
104
+ declare const GraphQLIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
105
+ drawType?: "fill" | "stroke";
106
+ }) => react_jsx_runtime.JSX.Element;
107
+
108
+ declare const InstagramIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
109
+ drawType?: "fill" | "stroke";
110
+ }) => react_jsx_runtime.JSX.Element;
111
+
112
+ declare const IntelliJIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
113
+ drawType?: "fill" | "stroke";
114
+ }) => react_jsx_runtime.JSX.Element;
115
+
116
+ declare const JavaIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
117
+ drawType?: "fill" | "stroke";
118
+ }) => react_jsx_runtime.JSX.Element;
119
+
120
+ declare const JavaScriptIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
121
+ drawType?: "fill" | "stroke";
122
+ }) => react_jsx_runtime.JSX.Element;
123
+
124
+ declare const KotlinIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
125
+ drawType?: "fill" | "stroke";
126
+ }) => react_jsx_runtime.JSX.Element;
127
+
128
+ declare const KubernetesIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
129
+ drawType?: "fill" | "stroke";
130
+ }) => react_jsx_runtime.JSX.Element;
131
+
132
+ declare const LaravelIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
133
+ drawType?: "fill" | "stroke";
134
+ }) => react_jsx_runtime.JSX.Element;
135
+
136
+ declare const LinuxIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
137
+ drawType?: "fill" | "stroke";
138
+ }) => react_jsx_runtime.JSX.Element;
139
+
140
+ declare const MediumIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
141
+ drawType?: "fill" | "stroke";
142
+ }) => react_jsx_runtime.JSX.Element;
143
+
144
+ declare const MongoDBIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
145
+ drawType?: "fill" | "stroke";
146
+ }) => react_jsx_runtime.JSX.Element;
147
+
148
+ declare const MySQLIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
149
+ drawType?: "fill" | "stroke";
150
+ }) => react_jsx_runtime.JSX.Element;
151
+
152
+ declare const NextjsIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
153
+ drawType?: "fill" | "stroke";
154
+ }) => react_jsx_runtime.JSX.Element;
155
+
156
+ declare const NodejsIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
157
+ drawType?: "fill" | "stroke";
158
+ }) => react_jsx_runtime.JSX.Element;
159
+
160
+ declare const npmIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
161
+ drawType?: "fill" | "stroke";
162
+ }) => react_jsx_runtime.JSX.Element;
163
+
164
+ declare const PHPIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
165
+ drawType?: "fill" | "stroke";
166
+ }) => react_jsx_runtime.JSX.Element;
167
+
168
+ declare const PinterestIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
169
+ drawType?: "fill" | "stroke";
170
+ }) => react_jsx_runtime.JSX.Element;
171
+
172
+ declare const PNPMIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
173
+ drawType?: "fill" | "stroke";
174
+ }) => react_jsx_runtime.JSX.Element;
175
+
176
+ declare const PostgreSQLIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
177
+ drawType?: "fill" | "stroke";
178
+ }) => react_jsx_runtime.JSX.Element;
179
+
180
+ declare const PostmanIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
181
+ drawType?: "fill" | "stroke";
182
+ }) => react_jsx_runtime.JSX.Element;
183
+
184
+ declare const PythonIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
185
+ drawType?: "fill" | "stroke";
186
+ }) => react_jsx_runtime.JSX.Element;
187
+
188
+ declare const ReactIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
189
+ drawType?: "fill" | "stroke";
190
+ }) => react_jsx_runtime.JSX.Element;
191
+
192
+ declare const RedditIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
193
+ drawType?: "fill" | "stroke";
194
+ }) => react_jsx_runtime.JSX.Element;
195
+
196
+ declare const RedisIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
197
+ drawType?: "fill" | "stroke";
198
+ }) => react_jsx_runtime.JSX.Element;
199
+
200
+ declare const RubyIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
201
+ drawType?: "fill" | "stroke";
202
+ }) => react_jsx_runtime.JSX.Element;
203
+
204
+ declare const RustIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
205
+ drawType?: "fill" | "stroke";
206
+ }) => react_jsx_runtime.JSX.Element;
207
+
208
+ declare const SpringIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
209
+ drawType?: "fill" | "stroke";
210
+ }) => react_jsx_runtime.JSX.Element;
211
+
212
+ declare const SQLiteIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
213
+ drawType?: "fill" | "stroke";
214
+ }) => react_jsx_runtime.JSX.Element;
215
+
216
+ declare const SupabaseIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
217
+ drawType?: "fill" | "stroke";
218
+ }) => react_jsx_runtime.JSX.Element;
219
+
220
+ declare const SvelteIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
221
+ drawType?: "fill" | "stroke";
222
+ }) => react_jsx_runtime.JSX.Element;
223
+
224
+ declare const SwiftIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
225
+ drawType?: "fill" | "stroke";
226
+ }) => react_jsx_runtime.JSX.Element;
227
+
228
+ declare const TailwindIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
229
+ drawType?: "fill" | "stroke";
230
+ }) => react_jsx_runtime.JSX.Element;
231
+
232
+ declare const TelegramIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
233
+ drawType?: "fill" | "stroke";
234
+ }) => react_jsx_runtime.JSX.Element;
235
+
236
+ declare const TikTokIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
237
+ drawType?: "fill" | "stroke";
238
+ }) => react_jsx_runtime.JSX.Element;
239
+
240
+ declare const TwitchIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
241
+ drawType?: "fill" | "stroke";
242
+ }) => react_jsx_runtime.JSX.Element;
243
+
244
+ declare const TwitterIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
245
+ drawType?: "fill" | "stroke";
246
+ }) => react_jsx_runtime.JSX.Element;
247
+
248
+ declare const TypeScriptIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
249
+ drawType?: "fill" | "stroke";
250
+ }) => react_jsx_runtime.JSX.Element;
251
+
252
+ declare const VercelIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
253
+ drawType?: "fill" | "stroke";
254
+ }) => react_jsx_runtime.JSX.Element;
255
+
256
+ declare const VuejsIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
257
+ drawType?: "fill" | "stroke";
258
+ }) => react_jsx_runtime.JSX.Element;
259
+
260
+ declare const WhatsAppIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
261
+ drawType?: "fill" | "stroke";
262
+ }) => react_jsx_runtime.JSX.Element;
263
+
264
+ declare const XIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
265
+ drawType?: "fill" | "stroke";
266
+ }) => react_jsx_runtime.JSX.Element;
267
+
268
+ declare const YouTubeIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
269
+ drawType?: "fill" | "stroke";
270
+ }) => react_jsx_runtime.JSX.Element;
271
+
272
+ export { AWSIcon, AngularIcon, AppleIcon, ArtodeIcon, type ArtodeIconProps, AstroIcon, AzureIcon, BehanceIcon, BunIcon, CPlusPlusIcon, CSharpIcon, DiscordIcon, DjangoIcon, DockerIcon, FigmaIcon, FirebaseIcon, FlutterIcon, GCPIcon, GitHubIcon, GitIcon, GitLabIcon, GoIcon, GoogleIcon, GraphQLIcon, InstagramIcon, IntelliJIcon, JavaIcon, JavaScriptIcon, KotlinIcon, KubernetesIcon, LaravelIcon, LinuxIcon, MediumIcon, MongoDBIcon, MySQLIcon, NextjsIcon, NodejsIcon, PHPIcon, PNPMIcon, PinterestIcon, PostgreSQLIcon, PostmanIcon, PythonIcon, ReactIcon, RedditIcon, RedisIcon, RubyIcon, RustIcon, SQLiteIcon, SpringIcon, SupabaseIcon, SvelteIcon, SwiftIcon, TailwindIcon, TelegramIcon, TikTokIcon, TwitchIcon, TwitterIcon, TypeScriptIcon, VercelIcon, VuejsIcon, WhatsAppIcon, XIcon, YouTubeIcon, npmIcon };
@@ -0,0 +1,272 @@
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
2
+ import React from 'react';
3
+
4
+ interface ArtodeIconProps {
5
+ /** SVG Path string for the icon shape */
6
+ path: string;
7
+ /** Size of the canvas/icon in pixels */
8
+ size?: number;
9
+ /** Override the primary Swiss Red color */
10
+ color?: string;
11
+ /** ClassName for additional styling */
12
+ className?: string;
13
+ /** Force hover state for animation control */
14
+ forceHover?: boolean;
15
+ /** Draw either the stroke or the fill of the SVG path */
16
+ drawType?: 'fill' | 'stroke';
17
+ }
18
+ declare const ArtodeIcon: React.FC<ArtodeIconProps>;
19
+
20
+ declare const AngularIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
21
+ drawType?: "fill" | "stroke";
22
+ }) => react_jsx_runtime.JSX.Element;
23
+
24
+ declare const AppleIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
25
+ drawType?: "fill" | "stroke";
26
+ }) => react_jsx_runtime.JSX.Element;
27
+
28
+ declare const AstroIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
29
+ drawType?: "fill" | "stroke";
30
+ }) => react_jsx_runtime.JSX.Element;
31
+
32
+ declare const AWSIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
33
+ drawType?: "fill" | "stroke";
34
+ }) => react_jsx_runtime.JSX.Element;
35
+
36
+ declare const AzureIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
37
+ drawType?: "fill" | "stroke";
38
+ }) => react_jsx_runtime.JSX.Element;
39
+
40
+ declare const BehanceIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
41
+ drawType?: "fill" | "stroke";
42
+ }) => react_jsx_runtime.JSX.Element;
43
+
44
+ declare const BunIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
45
+ drawType?: "fill" | "stroke";
46
+ }) => react_jsx_runtime.JSX.Element;
47
+
48
+ declare const CPlusPlusIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
49
+ drawType?: "fill" | "stroke";
50
+ }) => react_jsx_runtime.JSX.Element;
51
+
52
+ declare const CSharpIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
53
+ drawType?: "fill" | "stroke";
54
+ }) => react_jsx_runtime.JSX.Element;
55
+
56
+ declare const DiscordIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
57
+ drawType?: "fill" | "stroke";
58
+ }) => react_jsx_runtime.JSX.Element;
59
+
60
+ declare const DjangoIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
61
+ drawType?: "fill" | "stroke";
62
+ }) => react_jsx_runtime.JSX.Element;
63
+
64
+ declare const DockerIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
65
+ drawType?: "fill" | "stroke";
66
+ }) => react_jsx_runtime.JSX.Element;
67
+
68
+ declare const FigmaIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
69
+ drawType?: "fill" | "stroke";
70
+ }) => react_jsx_runtime.JSX.Element;
71
+
72
+ declare const FirebaseIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
73
+ drawType?: "fill" | "stroke";
74
+ }) => react_jsx_runtime.JSX.Element;
75
+
76
+ declare const FlutterIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
77
+ drawType?: "fill" | "stroke";
78
+ }) => react_jsx_runtime.JSX.Element;
79
+
80
+ declare const GCPIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
81
+ drawType?: "fill" | "stroke";
82
+ }) => react_jsx_runtime.JSX.Element;
83
+
84
+ declare const GitIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
85
+ drawType?: "fill" | "stroke";
86
+ }) => react_jsx_runtime.JSX.Element;
87
+
88
+ declare const GitHubIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
89
+ drawType?: "fill" | "stroke";
90
+ }) => react_jsx_runtime.JSX.Element;
91
+
92
+ declare const GitLabIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
93
+ drawType?: "fill" | "stroke";
94
+ }) => react_jsx_runtime.JSX.Element;
95
+
96
+ declare const GoIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
97
+ drawType?: "fill" | "stroke";
98
+ }) => react_jsx_runtime.JSX.Element;
99
+
100
+ declare const GoogleIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
101
+ drawType?: "fill" | "stroke";
102
+ }) => react_jsx_runtime.JSX.Element;
103
+
104
+ declare const GraphQLIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
105
+ drawType?: "fill" | "stroke";
106
+ }) => react_jsx_runtime.JSX.Element;
107
+
108
+ declare const InstagramIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
109
+ drawType?: "fill" | "stroke";
110
+ }) => react_jsx_runtime.JSX.Element;
111
+
112
+ declare const IntelliJIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
113
+ drawType?: "fill" | "stroke";
114
+ }) => react_jsx_runtime.JSX.Element;
115
+
116
+ declare const JavaIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
117
+ drawType?: "fill" | "stroke";
118
+ }) => react_jsx_runtime.JSX.Element;
119
+
120
+ declare const JavaScriptIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
121
+ drawType?: "fill" | "stroke";
122
+ }) => react_jsx_runtime.JSX.Element;
123
+
124
+ declare const KotlinIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
125
+ drawType?: "fill" | "stroke";
126
+ }) => react_jsx_runtime.JSX.Element;
127
+
128
+ declare const KubernetesIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
129
+ drawType?: "fill" | "stroke";
130
+ }) => react_jsx_runtime.JSX.Element;
131
+
132
+ declare const LaravelIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
133
+ drawType?: "fill" | "stroke";
134
+ }) => react_jsx_runtime.JSX.Element;
135
+
136
+ declare const LinuxIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
137
+ drawType?: "fill" | "stroke";
138
+ }) => react_jsx_runtime.JSX.Element;
139
+
140
+ declare const MediumIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
141
+ drawType?: "fill" | "stroke";
142
+ }) => react_jsx_runtime.JSX.Element;
143
+
144
+ declare const MongoDBIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
145
+ drawType?: "fill" | "stroke";
146
+ }) => react_jsx_runtime.JSX.Element;
147
+
148
+ declare const MySQLIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
149
+ drawType?: "fill" | "stroke";
150
+ }) => react_jsx_runtime.JSX.Element;
151
+
152
+ declare const NextjsIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
153
+ drawType?: "fill" | "stroke";
154
+ }) => react_jsx_runtime.JSX.Element;
155
+
156
+ declare const NodejsIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
157
+ drawType?: "fill" | "stroke";
158
+ }) => react_jsx_runtime.JSX.Element;
159
+
160
+ declare const npmIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
161
+ drawType?: "fill" | "stroke";
162
+ }) => react_jsx_runtime.JSX.Element;
163
+
164
+ declare const PHPIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
165
+ drawType?: "fill" | "stroke";
166
+ }) => react_jsx_runtime.JSX.Element;
167
+
168
+ declare const PinterestIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
169
+ drawType?: "fill" | "stroke";
170
+ }) => react_jsx_runtime.JSX.Element;
171
+
172
+ declare const PNPMIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
173
+ drawType?: "fill" | "stroke";
174
+ }) => react_jsx_runtime.JSX.Element;
175
+
176
+ declare const PostgreSQLIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
177
+ drawType?: "fill" | "stroke";
178
+ }) => react_jsx_runtime.JSX.Element;
179
+
180
+ declare const PostmanIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
181
+ drawType?: "fill" | "stroke";
182
+ }) => react_jsx_runtime.JSX.Element;
183
+
184
+ declare const PythonIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
185
+ drawType?: "fill" | "stroke";
186
+ }) => react_jsx_runtime.JSX.Element;
187
+
188
+ declare const ReactIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
189
+ drawType?: "fill" | "stroke";
190
+ }) => react_jsx_runtime.JSX.Element;
191
+
192
+ declare const RedditIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
193
+ drawType?: "fill" | "stroke";
194
+ }) => react_jsx_runtime.JSX.Element;
195
+
196
+ declare const RedisIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
197
+ drawType?: "fill" | "stroke";
198
+ }) => react_jsx_runtime.JSX.Element;
199
+
200
+ declare const RubyIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
201
+ drawType?: "fill" | "stroke";
202
+ }) => react_jsx_runtime.JSX.Element;
203
+
204
+ declare const RustIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
205
+ drawType?: "fill" | "stroke";
206
+ }) => react_jsx_runtime.JSX.Element;
207
+
208
+ declare const SpringIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
209
+ drawType?: "fill" | "stroke";
210
+ }) => react_jsx_runtime.JSX.Element;
211
+
212
+ declare const SQLiteIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
213
+ drawType?: "fill" | "stroke";
214
+ }) => react_jsx_runtime.JSX.Element;
215
+
216
+ declare const SupabaseIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
217
+ drawType?: "fill" | "stroke";
218
+ }) => react_jsx_runtime.JSX.Element;
219
+
220
+ declare const SvelteIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
221
+ drawType?: "fill" | "stroke";
222
+ }) => react_jsx_runtime.JSX.Element;
223
+
224
+ declare const SwiftIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
225
+ drawType?: "fill" | "stroke";
226
+ }) => react_jsx_runtime.JSX.Element;
227
+
228
+ declare const TailwindIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
229
+ drawType?: "fill" | "stroke";
230
+ }) => react_jsx_runtime.JSX.Element;
231
+
232
+ declare const TelegramIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
233
+ drawType?: "fill" | "stroke";
234
+ }) => react_jsx_runtime.JSX.Element;
235
+
236
+ declare const TikTokIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
237
+ drawType?: "fill" | "stroke";
238
+ }) => react_jsx_runtime.JSX.Element;
239
+
240
+ declare const TwitchIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
241
+ drawType?: "fill" | "stroke";
242
+ }) => react_jsx_runtime.JSX.Element;
243
+
244
+ declare const TwitterIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
245
+ drawType?: "fill" | "stroke";
246
+ }) => react_jsx_runtime.JSX.Element;
247
+
248
+ declare const TypeScriptIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
249
+ drawType?: "fill" | "stroke";
250
+ }) => react_jsx_runtime.JSX.Element;
251
+
252
+ declare const VercelIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
253
+ drawType?: "fill" | "stroke";
254
+ }) => react_jsx_runtime.JSX.Element;
255
+
256
+ declare const VuejsIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
257
+ drawType?: "fill" | "stroke";
258
+ }) => react_jsx_runtime.JSX.Element;
259
+
260
+ declare const WhatsAppIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
261
+ drawType?: "fill" | "stroke";
262
+ }) => react_jsx_runtime.JSX.Element;
263
+
264
+ declare const XIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
265
+ drawType?: "fill" | "stroke";
266
+ }) => react_jsx_runtime.JSX.Element;
267
+
268
+ declare const YouTubeIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
269
+ drawType?: "fill" | "stroke";
270
+ }) => react_jsx_runtime.JSX.Element;
271
+
272
+ export { AWSIcon, AngularIcon, AppleIcon, ArtodeIcon, type ArtodeIconProps, AstroIcon, AzureIcon, BehanceIcon, BunIcon, CPlusPlusIcon, CSharpIcon, DiscordIcon, DjangoIcon, DockerIcon, FigmaIcon, FirebaseIcon, FlutterIcon, GCPIcon, GitHubIcon, GitIcon, GitLabIcon, GoIcon, GoogleIcon, GraphQLIcon, InstagramIcon, IntelliJIcon, JavaIcon, JavaScriptIcon, KotlinIcon, KubernetesIcon, LaravelIcon, LinuxIcon, MediumIcon, MongoDBIcon, MySQLIcon, NextjsIcon, NodejsIcon, PHPIcon, PNPMIcon, PinterestIcon, PostgreSQLIcon, PostmanIcon, PythonIcon, ReactIcon, RedditIcon, RedisIcon, RubyIcon, RustIcon, SQLiteIcon, SpringIcon, SupabaseIcon, SvelteIcon, SwiftIcon, TailwindIcon, TelegramIcon, TikTokIcon, TwitchIcon, TwitterIcon, TypeScriptIcon, VercelIcon, VuejsIcon, WhatsAppIcon, XIcon, YouTubeIcon, npmIcon };