developer-icons 1.1.0 → 1.2.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/dist/createDeveloperIcon.d.ts +6 -2
- package/dist/defaultAttributes.d.ts +7 -0
- package/dist/icons/CanvaIcon.d.ts +3 -2
- package/dist/icons/ChatgptIcon.d.ts +3 -2
- package/dist/icons/CssIcon.d.ts +3 -2
- package/dist/icons/DiscordIcon.d.ts +3 -2
- package/dist/icons/FigmaIcon.d.ts +3 -2
- package/dist/icons/FirebaseIcon.d.ts +3 -2
- package/dist/icons/GitIcon.d.ts +3 -2
- package/dist/icons/GithubIcon.d.ts +3 -2
- package/dist/icons/GmailIcon.d.ts +3 -2
- package/dist/icons/HtmlIcon.d.ts +3 -2
- package/dist/icons/InstagramIcon.d.ts +3 -2
- package/dist/icons/JavascriptIcon.d.ts +3 -2
- package/dist/icons/LinkedinIcon.d.ts +3 -2
- package/dist/icons/MongodbIcon.d.ts +3 -2
- package/dist/icons/NextjsIcon.d.ts +3 -2
- package/dist/icons/NotionIcon.d.ts +3 -2
- package/dist/icons/OpenaiIcon.d.ts +3 -2
- package/dist/icons/PostmanIcon.d.ts +3 -2
- package/dist/icons/ReactIcon.d.ts +3 -2
- package/dist/icons/ReactNativeIcon.d.ts +3 -2
- package/dist/icons/ReduxIcon.d.ts +3 -2
- package/dist/icons/SassIcon.d.ts +3 -2
- package/dist/icons/TailwindCssIcon.d.ts +3 -2
- package/dist/icons/TypescriptIcon.d.ts +3 -2
- package/dist/icons/ViteIcon.d.ts +3 -2
- package/dist/icons/VsCodeIcon.d.ts +3 -2
- package/dist/icons/WordpressIcon.d.ts +3 -2
- package/dist/main.d.ts +2 -0
- package/dist/main.js +407 -175
- package/dist/utils/mergeClassNames.d.ts +1 -0
- package/package.json +1 -1
@@ -1,3 +1,7 @@
|
|
1
|
-
|
1
|
+
import { SVGProps } from 'react';
|
2
|
+
|
3
|
+
export interface DeveloperIconProps extends Partial<SVGProps<SVGElement>> {
|
4
|
+
size?: number;
|
5
|
+
}
|
2
6
|
export declare const createDeveloperIcon: (iconName: string, iconContent: string) => string;
|
3
|
-
export declare const Icon: (
|
7
|
+
export declare const Icon: ({ size, className, color, ...rest }: DeveloperIconProps) => import('react').ReactSVGElement;
|
@@ -1,2 +1,3 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
import { DeveloperIconProps } from '../createDeveloperIcon';
|
2
|
+
|
3
|
+
export declare const CanvaIcon: (props: DeveloperIconProps) => import('react').FunctionComponentElement<DeveloperIconProps>;
|
@@ -1,2 +1,3 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
import { DeveloperIconProps } from '../createDeveloperIcon';
|
2
|
+
|
3
|
+
export declare const ChatgptIcon: (props: DeveloperIconProps) => import('react').FunctionComponentElement<DeveloperIconProps>;
|
package/dist/icons/CssIcon.d.ts
CHANGED
@@ -1,2 +1,3 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
import { DeveloperIconProps } from '../createDeveloperIcon';
|
2
|
+
|
3
|
+
export declare const CssIcon: (props: DeveloperIconProps) => import('react').FunctionComponentElement<DeveloperIconProps>;
|
@@ -1,2 +1,3 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
import { DeveloperIconProps } from '../createDeveloperIcon';
|
2
|
+
|
3
|
+
export declare const DiscordIcon: (props: DeveloperIconProps) => import('react').FunctionComponentElement<DeveloperIconProps>;
|
@@ -1,2 +1,3 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
import { DeveloperIconProps } from '../createDeveloperIcon';
|
2
|
+
|
3
|
+
export declare const FigmaIcon: (props: DeveloperIconProps) => import('react').FunctionComponentElement<DeveloperIconProps>;
|
@@ -1,2 +1,3 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
import { DeveloperIconProps } from '../createDeveloperIcon';
|
2
|
+
|
3
|
+
export declare const FirebaseIcon: (props: DeveloperIconProps) => import('react').FunctionComponentElement<DeveloperIconProps>;
|
package/dist/icons/GitIcon.d.ts
CHANGED
@@ -1,2 +1,3 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
import { DeveloperIconProps } from '../createDeveloperIcon';
|
2
|
+
|
3
|
+
export declare const GitIcon: (props: DeveloperIconProps) => import('react').FunctionComponentElement<DeveloperIconProps>;
|
@@ -1,2 +1,3 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
import { DeveloperIconProps } from '../createDeveloperIcon';
|
2
|
+
|
3
|
+
export declare const GithubIcon: (props: DeveloperIconProps) => import('react').FunctionComponentElement<DeveloperIconProps>;
|
@@ -1,2 +1,3 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
import { DeveloperIconProps } from '../createDeveloperIcon';
|
2
|
+
|
3
|
+
export declare const GmailIcon: (props: DeveloperIconProps) => import('react').FunctionComponentElement<DeveloperIconProps>;
|
package/dist/icons/HtmlIcon.d.ts
CHANGED
@@ -1,2 +1,3 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
import { DeveloperIconProps } from '../createDeveloperIcon';
|
2
|
+
|
3
|
+
export declare const HtmlIcon: (props: DeveloperIconProps) => import('react').FunctionComponentElement<DeveloperIconProps>;
|
@@ -1,2 +1,3 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
import { DeveloperIconProps } from '../createDeveloperIcon';
|
2
|
+
|
3
|
+
export declare const InstagramIcon: (props: DeveloperIconProps) => import('react').FunctionComponentElement<DeveloperIconProps>;
|
@@ -1,2 +1,3 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
import { DeveloperIconProps } from '../createDeveloperIcon';
|
2
|
+
|
3
|
+
export declare const JavascriptIcon: (props: DeveloperIconProps) => import('react').FunctionComponentElement<DeveloperIconProps>;
|
@@ -1,2 +1,3 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
import { DeveloperIconProps } from '../createDeveloperIcon';
|
2
|
+
|
3
|
+
export declare const LinkedinIcon: (props: DeveloperIconProps) => import('react').FunctionComponentElement<DeveloperIconProps>;
|
@@ -1,2 +1,3 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
import { DeveloperIconProps } from '../createDeveloperIcon';
|
2
|
+
|
3
|
+
export declare const MongodbIcon: (props: DeveloperIconProps) => import('react').FunctionComponentElement<DeveloperIconProps>;
|
@@ -1,2 +1,3 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
import { DeveloperIconProps } from '../createDeveloperIcon';
|
2
|
+
|
3
|
+
export declare const NextjsIcon: (props: DeveloperIconProps) => import('react').FunctionComponentElement<DeveloperIconProps>;
|
@@ -1,2 +1,3 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
import { DeveloperIconProps } from '../createDeveloperIcon';
|
2
|
+
|
3
|
+
export declare const NotionIcon: (props: DeveloperIconProps) => import('react').FunctionComponentElement<DeveloperIconProps>;
|
@@ -1,2 +1,3 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
import { DeveloperIconProps } from '../createDeveloperIcon';
|
2
|
+
|
3
|
+
export declare const OpenaiIcon: (props: DeveloperIconProps) => import('react').FunctionComponentElement<DeveloperIconProps>;
|
@@ -1,2 +1,3 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
import { DeveloperIconProps } from '../createDeveloperIcon';
|
2
|
+
|
3
|
+
export declare const PostmanIcon: (props: DeveloperIconProps) => import('react').FunctionComponentElement<DeveloperIconProps>;
|
@@ -1,2 +1,3 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
import { DeveloperIconProps } from '../createDeveloperIcon';
|
2
|
+
|
3
|
+
export declare const ReactIcon: (props: DeveloperIconProps) => import('react').FunctionComponentElement<DeveloperIconProps>;
|
@@ -1,2 +1,3 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
import { DeveloperIconProps } from '../createDeveloperIcon';
|
2
|
+
|
3
|
+
export declare const ReactNativeIcon: (props: DeveloperIconProps) => import('react').FunctionComponentElement<DeveloperIconProps>;
|
@@ -1,2 +1,3 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
import { DeveloperIconProps } from '../createDeveloperIcon';
|
2
|
+
|
3
|
+
export declare const ReduxIcon: (props: DeveloperIconProps) => import('react').FunctionComponentElement<DeveloperIconProps>;
|
package/dist/icons/SassIcon.d.ts
CHANGED
@@ -1,2 +1,3 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
import { DeveloperIconProps } from '../createDeveloperIcon';
|
2
|
+
|
3
|
+
export declare const SassIcon: (props: DeveloperIconProps) => import('react').FunctionComponentElement<DeveloperIconProps>;
|
@@ -1,2 +1,3 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
import { DeveloperIconProps } from '../createDeveloperIcon';
|
2
|
+
|
3
|
+
export declare const TailwindCssIcon: (props: DeveloperIconProps) => import('react').FunctionComponentElement<DeveloperIconProps>;
|
@@ -1,2 +1,3 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
import { DeveloperIconProps } from '../createDeveloperIcon';
|
2
|
+
|
3
|
+
export declare const TypescriptIcon: (props: DeveloperIconProps) => import('react').FunctionComponentElement<DeveloperIconProps>;
|
package/dist/icons/ViteIcon.d.ts
CHANGED
@@ -1,2 +1,3 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
import { DeveloperIconProps } from '../createDeveloperIcon';
|
2
|
+
|
3
|
+
export declare const ViteIcon: (props: DeveloperIconProps) => import('react').FunctionComponentElement<DeveloperIconProps>;
|
@@ -1,2 +1,3 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
import { DeveloperIconProps } from '../createDeveloperIcon';
|
2
|
+
|
3
|
+
export declare const VsCodeIcon: (props: DeveloperIconProps) => import('react').FunctionComponentElement<DeveloperIconProps>;
|
@@ -1,2 +1,3 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
import { DeveloperIconProps } from '../createDeveloperIcon';
|
2
|
+
|
3
|
+
export declare const WordpressIcon: (props: DeveloperIconProps) => import('react').FunctionComponentElement<DeveloperIconProps>;
|
package/dist/main.d.ts
CHANGED
@@ -1,4 +1,6 @@
|
|
1
1
|
export * from './icons';
|
2
2
|
export * from './createDeveloperIcon';
|
3
3
|
export * from './utils/capitalizeFirstLetter';
|
4
|
+
export * from './utils/mergeClassNames';
|
5
|
+
export { default as DefaultAttributes } from './defaultAttributes';
|
4
6
|
export { default as IconsData } from './icons/icons.data';
|