Easy Eva Icons
Eva Icons is a pack of more than 480 beautifully crafted Open Source icons for common actions and items.
React
First, install @easy-eva-icons/react
from npm:
[npm]
npm i @easy-eva-icons/react
[yarn]
yarn add @easy-eva-icons/react
Then each icon can be imported individually as a React component:
import { Archive } from '@easy-eva-icons/react';
function MyComponent() {
return (
<div>
<Archive />
</div>
);
}
Outline versions of icons are available under {IconName}Outline
name:
import { ArchiveOutline } from '@easy-eva-icons/react';
function MyComponent() {
return (
<div>
<ArchiveOutline />
</div>
);
}
Icons accepts common SVG properties.
Roadmap
License
This library is MIT licensed.