@forefront-ux/react-eva-icons
v3.0.0
Published
React Component for Eva Icons with ARIA support
Downloads
11
Readme
react-eva-icons
React-Eva-Icons make it easier to use Eva Icons in your React component.
Getting Started
Installation
NPM/YARN
Install the package in your project directory with npm or yarn:
// with npm
npm install @forefront-ux/react-eva-icons
// with yarn
yarn add @forefront-ux/react-eva-icons
CDN
<link rel="stylesheet" type="text/css" href="https://unpkg.com/@forefront-ux/[email protected]/index.css" />
<script src="https://unpkg.com/@forefront-ux/[email protected]/index.js"></script>
Usage
import React from 'react';
import ReactDOM from 'react-dom';
import { Github } from '@forefront-ux/react-eva-icons';
import '@forefront-ux/react-eva-icons/index.css'; // if you use CDN installation, ignore this line.
function App() {
return (
<Github />
);
};
ReactDOM.render(<App />, document.querySelector('#app'));
Yes, it's really all you need to get started as you can see in this live and interactive demo:
Documentation
Not ready yet.
Contributing
We'd greatly appreciate any contribution you make.
Changelog
Recently Updated? Please read the changelog.
Thanks
React-Eva-Icons is only made possible thanks to these great projects that inspired us:
- Eva Icons - A pack of more than 480 beautifully crafted Open Source icons. SVG, Sketch, Web Font and Animations support.
- Material-UI
- React-Icons
License
This project is licensed under the MIT License - see the LICENSE file for details