Font Awesome 5 use social/brand icons in React Font Awesome 5 use social/brand icons in React reactjs reactjs

Font Awesome 5 use social/brand icons in React


Try:

<FontAwesomeIcon icon={['fab', 'facebook-f']} />

Note that font awesome now has different icon sets. The solid set (fas) is the default. The facebook icon is in the brands set (fab).


import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"import { faFacebook } from "@fortawesome/free-brands-svg-icons"const icon = <FontAwesomeIcon icon={faFacebook} />

I found the spelling/casing of the brand icons on FontAwesome's GitHub


Note that you must run the commands that you ran first:

npm i --save @fortawesome/fontawesome-svg-core npm i --save @fortawesome/free-brands-svg-icons npm i --save @fortawesome/react-fontawesome

I'd tried to import without installing first - and of course that didn't work.