LoginSignup
0
0

More than 3 years have passed since last update.

RailsのReactでfont-awesomeを導入

Posted at

すぐ忘れるので個人用メモです。

詳しくはこのサイトを見てもらったほうが早いです。↓
FortAwesome/react-fontawesome-github

yarnでのインストール

$ yarn add @fortawesome/fontawesome-svg-core
$ yarn add @fortawesome/free-solid-svg-icons
$ yarn add @fortawesome/react-fontawesome

import ReactDOM from 'react-dom'
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' #1
import { faCoffee } from '@fortawesome/free-solid-svg-icons' #2

const element = <FontAwesomeIcon icon={faCoffee} /> #3

ReactDOM.render(element, document.body)

コンポーネントに#1〜3を追加するとコーヒーのアイコンが出ます。

0
0
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
0
0