Icons

react-icons.github.io

npm install react-icons --save

Usage

import { FaBeer } from 'react-icons/fa';
class Question extends React.Component {
  render() {
    return <h3> Lets go for a <FaBeer />? </h3>
  }
}
Was this page helpful?