matrix-icons-react
v1.0.2
Published
Impeccably designed and handcrafted icons, showcasing craftsmanship.
Downloads
1
Maintainers
Readme
Matrix Icons React
Matrix Icons React is a React library that provides a collection of high-quality icons for use in React applications. These icons are designed to be visually appealing, scalable, and easily integrable into your projects.
Installation
You can install Matrix Icons React using npm or yarn. To install it with npm, use the following command:
npm install matrix-icons-react
If you prefer using yarn, run the following command:
yarn add matrix-icons-react
Usage
To use Matrix Icons React in your React application, you need to import the desired icon and render it as a component. Here's a simple example:
import React from 'react';
import { IconName } from 'matrix-icons-react';
const App = () => {
return (
<div>
<IconName />
</div>
);
};
export default App;
Replace IconName
with the actual name of the icon you want to use.
Available Icons
To see the list of available icons and their names, you can check the Matrix Icons React repository. There, you'll find a visual reference guide to help you choose the right icon for your needs.
Customise
default color is the currentColor and default height and width is 24px
import React from 'react';
import { HomeSolid } from 'matrix-icons-react';
const App = () => {
return (
<div>
<HomeSolid color='any-color' width='interger' height='interger' />
</div>
);
};
export default App;
License
Matrix Icons React is distributed under the MIT License. You are free to use, modify, and distribute this library for both personal and commercial projects. However, it is appreciated if you provide attribution to the original author.
Contributing
If you find any issues, have suggestions, or want to contribute to Matrix Icons React, please feel free to create a pull request or raise an issue in the GitHub repository. Your contributions are highly welcome!
Author
Matrix Icons React is maintained and developed by Jatinder Singh. Feel free to reach out for any questions or inquiries related to this project.
Thank you for using Matrix Icons React! We hope it enhances your React projects with beautiful and scalable icons.