The Font Awesome documentation shows only how to add regular/solid fonts to React. How about social icons?
First I grabbed the packages:
npm i --save @
Firstly
npm i --save @fortawesome/fontawesome-svg-core
npm i --save @fortawesome/free-brands-svg-icons
npm i --save @fortawesome/react-fontawesome
Then import in your project
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
import { faFacebookF , } from '@fortawesome/free-brands-svg-icons';
Use this