developer-icons 1.1.0 → 2.0.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/README.md +2 -4
- package/dist/defaultAttributes.d.ts +7 -0
- package/dist/icon.d.ts +6 -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 +4 -2
- package/dist/main.js +293 -539
- package/dist/utils/mergeClassNames.d.ts +1 -0
- package/package.json +1 -1
- package/dist/createDeveloperIcon.d.ts +0 -3
package/README.md
CHANGED
@@ -1,13 +1,11 @@
|
|
1
1
|
# Developer Icons
|
2
2
|
|
3
|
-
## About
|
4
|
-
|
5
3
|
`Developer Icons` is a collection of ready-to-use high-quality vector icons for developers and designers. Fully customizable options with props, className, inline styles, etc. and completely typescript-supported components.
|
6
4
|
|
7
5
|
## Features
|
8
6
|
|
9
7
|
- **High-Quality Icons**: A curated set of icons suitable for various development projects.
|
10
|
-
- **Easy to Use**: Icons are organized and can be easily integrated into projects.
|
8
|
+
- **Easy to Use**: Icons are organized and can be easily integrated into projects as react components.
|
11
9
|
- **Open Source**: Freely available for personal and commercial use, adhering to specified licenses.
|
12
10
|
|
13
11
|
## Installation
|
@@ -38,7 +36,7 @@ Import named icon components from the `developer-icons` package and use it as an
|
|
38
36
|
import { HtmlIcon, JavascriptIcon } from "developer-icons";
|
39
37
|
|
40
38
|
//inside your React component JSX
|
41
|
-
export const
|
39
|
+
export const YourReactComponent = () => {
|
42
40
|
return (
|
43
41
|
<div>
|
44
42
|
<HtmlIcon className="html-icon" />
|
package/dist/icon.d.ts
ADDED
@@ -1,2 +1,3 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
import { DeveloperIconProps } from '../main';
|
2
|
+
|
3
|
+
export declare const CanvaIcon: (props: DeveloperIconProps) => import('react').FunctionComponentElement<DeveloperIconProps>;
|
@@ -1,2 +1,3 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
import { DeveloperIconProps } from '../main';
|
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 '../main';
|
2
|
+
|
3
|
+
export declare const CssIcon: (props: DeveloperIconProps) => import('react').FunctionComponentElement<DeveloperIconProps>;
|
@@ -1,2 +1,3 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
import { DeveloperIconProps } from '../main';
|
2
|
+
|
3
|
+
export declare const DiscordIcon: (props: DeveloperIconProps) => import('react').FunctionComponentElement<DeveloperIconProps>;
|
@@ -1,2 +1,3 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
import { DeveloperIconProps } from '../main';
|
2
|
+
|
3
|
+
export declare const FigmaIcon: (props: DeveloperIconProps) => import('react').FunctionComponentElement<DeveloperIconProps>;
|
@@ -1,2 +1,3 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
import { DeveloperIconProps } from '../main';
|
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 '../main';
|
2
|
+
|
3
|
+
export declare const GitIcon: (props: DeveloperIconProps) => import('react').FunctionComponentElement<DeveloperIconProps>;
|
@@ -1,2 +1,3 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
import { DeveloperIconProps } from '../main';
|
2
|
+
|
3
|
+
export declare const GithubIcon: (props: DeveloperIconProps) => import('react').FunctionComponentElement<DeveloperIconProps>;
|
@@ -1,2 +1,3 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
import { DeveloperIconProps } from '../main';
|
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 '../main';
|
2
|
+
|
3
|
+
export declare const HtmlIcon: (props: DeveloperIconProps) => import('react').FunctionComponentElement<DeveloperIconProps>;
|
@@ -1,2 +1,3 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
import { DeveloperIconProps } from '../main';
|
2
|
+
|
3
|
+
export declare const InstagramIcon: (props: DeveloperIconProps) => import('react').FunctionComponentElement<DeveloperIconProps>;
|
@@ -1,2 +1,3 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
import { DeveloperIconProps } from '../main';
|
2
|
+
|
3
|
+
export declare const JavascriptIcon: (props: DeveloperIconProps) => import('react').FunctionComponentElement<DeveloperIconProps>;
|
@@ -1,2 +1,3 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
import { DeveloperIconProps } from '../main';
|
2
|
+
|
3
|
+
export declare const LinkedinIcon: (props: DeveloperIconProps) => import('react').FunctionComponentElement<DeveloperIconProps>;
|
@@ -1,2 +1,3 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
import { DeveloperIconProps } from '../main';
|
2
|
+
|
3
|
+
export declare const MongodbIcon: (props: DeveloperIconProps) => import('react').FunctionComponentElement<DeveloperIconProps>;
|
@@ -1,2 +1,3 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
import { DeveloperIconProps } from '../main';
|
2
|
+
|
3
|
+
export declare const NextjsIcon: (props: DeveloperIconProps) => import('react').FunctionComponentElement<DeveloperIconProps>;
|
@@ -1,2 +1,3 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
import { DeveloperIconProps } from '../main';
|
2
|
+
|
3
|
+
export declare const NotionIcon: (props: DeveloperIconProps) => import('react').FunctionComponentElement<DeveloperIconProps>;
|
@@ -1,2 +1,3 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
import { DeveloperIconProps } from '../main';
|
2
|
+
|
3
|
+
export declare const OpenaiIcon: (props: DeveloperIconProps) => import('react').FunctionComponentElement<DeveloperIconProps>;
|
@@ -1,2 +1,3 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
import { DeveloperIconProps } from '../main';
|
2
|
+
|
3
|
+
export declare const PostmanIcon: (props: DeveloperIconProps) => import('react').FunctionComponentElement<DeveloperIconProps>;
|
@@ -1,2 +1,3 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
import { DeveloperIconProps } from '../main';
|
2
|
+
|
3
|
+
export declare const ReactIcon: (props: DeveloperIconProps) => import('react').FunctionComponentElement<DeveloperIconProps>;
|
@@ -1,2 +1,3 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
import { DeveloperIconProps } from '../main';
|
2
|
+
|
3
|
+
export declare const ReactNativeIcon: (props: DeveloperIconProps) => import('react').FunctionComponentElement<DeveloperIconProps>;
|
@@ -1,2 +1,3 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
import { DeveloperIconProps } from '../main';
|
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 '../main';
|
2
|
+
|
3
|
+
export declare const SassIcon: (props: DeveloperIconProps) => import('react').FunctionComponentElement<DeveloperIconProps>;
|
@@ -1,2 +1,3 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
import { DeveloperIconProps } from '../main';
|
2
|
+
|
3
|
+
export declare const TailwindCssIcon: (props: DeveloperIconProps) => import('react').FunctionComponentElement<DeveloperIconProps>;
|
@@ -1,2 +1,3 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
import { DeveloperIconProps } from '../main';
|
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 '../main';
|
2
|
+
|
3
|
+
export declare const ViteIcon: (props: DeveloperIconProps) => import('react').FunctionComponentElement<DeveloperIconProps>;
|
@@ -1,2 +1,3 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
import { DeveloperIconProps } from '../main';
|
2
|
+
|
3
|
+
export declare const VsCodeIcon: (props: DeveloperIconProps) => import('react').FunctionComponentElement<DeveloperIconProps>;
|
@@ -1,2 +1,3 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
import { DeveloperIconProps } from '../main';
|
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
|
-
export * from './createDeveloperIcon';
|
3
|
-
export * from './utils/capitalizeFirstLetter';
|
4
2
|
export { default as IconsData } from './icons/icons.data';
|
3
|
+
export * from './utils/capitalizeFirstLetter';
|
4
|
+
export * from './utils/mergeClassNames';
|
5
|
+
export { default as DefaultAttributes } from './defaultAttributes';
|
6
|
+
export * from './icon';
|