Font Awesome 5 use social/brand icons in React

后端 未结 5 1570
南笙
南笙 2021-02-18 17:59

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 @         


        
5条回答
  •  南旧
    南旧 (楼主)
    2021-02-18 18:42

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

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

提交回复
热议问题