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