react-native-vector-iconsのインストール
2つのコマンドを叩くだけです。
// --saveはオプションです $ npm install react-native-vector-icons --save // linkする $ react native link react-native-vector-icons
実際にコードの配置
以下のようにモジュールを取り込み、自由に使えます。
import Icon from 'react-native-vector-icons/FontAwesome'; <Icon name="hogehoge" />