Want to use Icons like Font Awesome in Gatsby? For anyone visiting this page in late 2018+, I would highly recommend using react-icons.
Here is an example:
1 2 3 4 5 6 7 | import { FaBeer } from 'react-icons/fa'; class Question extends React.Component { render() { return <h3> Lets go for a <FaBeer />? </h3> } } |
If you like this question & answer and want to contribute, then write your question & answer and email to freewebmentor[@]gmail.com. Your question and answer will appear on FreeWebMentor.com and help other developers.