npx create-expo-app MyProject
cd MyProject
npm i --save @fortawesome/react-native-fontawesome @fortawesome/fontawesome-svg-core react-native-svg
npm i --save @fortawesome/free-solid-svg-icons
npm i --save @fortawesome/free-brands-svg-icons
npm i --save @fortawesome/free-regular-svg-icons
expo install react-native-svg
import FontAwesome, { SolidIcons, RegularIcons, BrandIcons } from 'react-native-fontawesome'; ...render() { return ( <View> <FontAwesome icon={SolidIcons.smile} /> <FontAwesome icon={RegularIcons.smileWink} /> <FontAwesome icon={BrandIcons.github} /> </View> );},