icons-skill
v1.0.9
Published
icons package
Downloads
17
Maintainers
Readme
Skill Icons
Skill Icons is a React component library that provides a collection of skill icons for developers to showcase their expertise in a visually appealing way. This library utilizes the icons-skill
package for easy integration of icons in your applications.
Demo
Table of Contents
Installation
To install the Skill Icons library, use npm or yarn:
npm install skill-icons
or
yarn add skill-icons
Usage
You can use the Icon component in your React application by importing it from the skill-icons package:
import Icon from "icons-skill";
const MyComponent = () => {
return (
<div>
<Icon name="react-light" size={48} />
<Icon name="nodejs-light" size={48} />
<Icon name="JavaScript" size={48} />
<Icon name="css" size={48} />
</div>
);
};
Example
Here is a simple example of how to integrate the Icon component within your application:
import React from 'react';
import Icon from "icons-skill";
const ExamplePage = () => {
return (
<div className="flex items-center space-x-4">
<Icon name="react-light" size={48} />
<Icon name="nodejs-light" size={48} />
<Icon name="JavaScript" size={48} />
<Icon name="css" size={48} />
</div>
);
};
export default ExamplePage;
Contributing
Contributions are welcome! If you have suggestions or improvements, please fork the repository and submit a pull request.
License
This project is licensed under the MIT License. See the LICENSE file for more information.
Author
Vijay J. - A passionate developer focused on creating innovative solutions.
Instructions to Create the README File
- Create a new file named
README.md
in the root directory of your project. - Copy and paste the above content into the
README.md
file. - Replace the link in the Author section with your actual link if necessary.
- Customize the content to match your project specifics, including installation instructions, usage examples, or additional sections relevant to your project.
Additional Suggestions
- You can also add sections for FAQ, Troubleshooting, or Changelog if needed.
- Consider adding screenshots or GIFs to demonstrate how the icons look within your application for better visibility.
Feel free to modify it further to suit your needs! If you have any specific sections or details you want to add, let me know!