npm install react-iconSimple component for icons in your React app.
Installation
------------
```
npm install --save react-icon
Usage
-----
`js
const React = require('react');
const Icon = require('react-icon');
const StarCounter = React.createClass({
render() {
return (
module.exports = StarCounter;
`
By default component uses fa as class prefix (fa fa-star).
This behavior customizable:
`js
const Icon = require('react-icon');
Icon.setDefaultFontPrefix('glyphicon') // glyphicon glyphicon-star
``
License
-------
