artode-icons 0.1.1 → 0.1.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/index.d.mts +16 -1
- package/dist/index.d.ts +16 -1
- package/dist/index.js +335 -143
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +334 -143
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -14,6 +14,17 @@ interface ArtodeIconProps {
|
|
|
14
14
|
forceHover?: boolean;
|
|
15
15
|
/** Draw either the stroke or the fill of the SVG path */
|
|
16
16
|
drawType?: 'fill' | 'stroke';
|
|
17
|
+
/** Enable interactive particle mode */
|
|
18
|
+
interactive?: boolean;
|
|
19
|
+
/** Enable global mouse tracking for interactive mode */
|
|
20
|
+
globalMouse?: boolean;
|
|
21
|
+
/** Custom canvas size for interactive mode (width, height) */
|
|
22
|
+
customCanvasSize?: {
|
|
23
|
+
width: number;
|
|
24
|
+
height: number;
|
|
25
|
+
};
|
|
26
|
+
/** Custom viewBox size of the SVG path. Defaults to 24. */
|
|
27
|
+
viewBoxSize?: number;
|
|
17
28
|
}
|
|
18
29
|
declare const ArtodeIcon: React.FC<ArtodeIconProps>;
|
|
19
30
|
|
|
@@ -261,6 +272,10 @@ declare const WhatsAppIcon: ({ className, size, drawType, ...props }: Omit<Artod
|
|
|
261
272
|
drawType?: "fill" | "stroke";
|
|
262
273
|
}) => react_jsx_runtime.JSX.Element;
|
|
263
274
|
|
|
275
|
+
declare const LinkedInIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
|
|
276
|
+
drawType?: "fill" | "stroke";
|
|
277
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
278
|
+
|
|
264
279
|
declare const XIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
|
|
265
280
|
drawType?: "fill" | "stroke";
|
|
266
281
|
}) => react_jsx_runtime.JSX.Element;
|
|
@@ -269,4 +284,4 @@ declare const YouTubeIcon: ({ className, size, drawType, ...props }: Omit<Artode
|
|
|
269
284
|
drawType?: "fill" | "stroke";
|
|
270
285
|
}) => react_jsx_runtime.JSX.Element;
|
|
271
286
|
|
|
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 };
|
|
287
|
+
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, LinkedInIcon, 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 };
|
package/dist/index.d.ts
CHANGED
|
@@ -14,6 +14,17 @@ interface ArtodeIconProps {
|
|
|
14
14
|
forceHover?: boolean;
|
|
15
15
|
/** Draw either the stroke or the fill of the SVG path */
|
|
16
16
|
drawType?: 'fill' | 'stroke';
|
|
17
|
+
/** Enable interactive particle mode */
|
|
18
|
+
interactive?: boolean;
|
|
19
|
+
/** Enable global mouse tracking for interactive mode */
|
|
20
|
+
globalMouse?: boolean;
|
|
21
|
+
/** Custom canvas size for interactive mode (width, height) */
|
|
22
|
+
customCanvasSize?: {
|
|
23
|
+
width: number;
|
|
24
|
+
height: number;
|
|
25
|
+
};
|
|
26
|
+
/** Custom viewBox size of the SVG path. Defaults to 24. */
|
|
27
|
+
viewBoxSize?: number;
|
|
17
28
|
}
|
|
18
29
|
declare const ArtodeIcon: React.FC<ArtodeIconProps>;
|
|
19
30
|
|
|
@@ -261,6 +272,10 @@ declare const WhatsAppIcon: ({ className, size, drawType, ...props }: Omit<Artod
|
|
|
261
272
|
drawType?: "fill" | "stroke";
|
|
262
273
|
}) => react_jsx_runtime.JSX.Element;
|
|
263
274
|
|
|
275
|
+
declare const LinkedInIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
|
|
276
|
+
drawType?: "fill" | "stroke";
|
|
277
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
278
|
+
|
|
264
279
|
declare const XIcon: ({ className, size, drawType, ...props }: Omit<ArtodeIconProps, "path" | "drawType"> & {
|
|
265
280
|
drawType?: "fill" | "stroke";
|
|
266
281
|
}) => react_jsx_runtime.JSX.Element;
|
|
@@ -269,4 +284,4 @@ declare const YouTubeIcon: ({ className, size, drawType, ...props }: Omit<Artode
|
|
|
269
284
|
drawType?: "fill" | "stroke";
|
|
270
285
|
}) => react_jsx_runtime.JSX.Element;
|
|
271
286
|
|
|
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 };
|
|
287
|
+
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, LinkedInIcon, 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 };
|