LoginSignup
1
1

More than 3 years have passed since last update.

react font-awsome with React

Last updated at Posted at 2019-09-23
  • install
npm i --save @fortawesome/react-fontawesome @fortawesome/fontawesome-svg-core @fortawesome/free-solid-svg-icons @fortawesome/free-brands-svg-icons @fortawesome/free-regular-svg-icons
  • 表示
import&表示
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
import { faCoffee } from '@fortawesome/free-solid-svg-icons'


 <FontAwesomeIcon icon={faCoffee} />

ここからが肝

欲しいアイコンをどう探すか?

例だとfaCoffeeとかいている

- アイコンの探す場所は下記

試しに<i class="fas fa-home"></i>これを見てみる

faCoffeefa-coffeeなんじゃないかと思って

faHomeでやって見たら、、、、表示された。

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1