test-icons-react
v1.0.40
Published
SVG
Downloads
10
Readme
Include popular icons in your React projects easily with react-icons
, which utilizes ES6 imports that allows you to include only the icons that your project is using.
Installation (for standard modern project)
yarn add
# or
npm install
example usage
import { FaBeer } from "";
function Question() {
return (
<h3>
Lets go for a <FaBeer />?
</h3>
);
}