react-native react-native-vector-icons: How to use font awesome icons
Always search for the icon name here: FontAwesome and here: Material-icons to be sure that you are using the correct name. Then simply you can use the code as:
import Icon from 'react-native-vector-icons/FontAwesome';
<Icon name="rocket" size={30} color="#900" /> // Here use the correct
name from the first link above.
For more info refer this
Use
import Icon from 'react-native-vector-icons/FontAwesome';
<Icon name="rss" size={30} color="#900" />