Hi!, we need to use more than one icon family, is this supported?
@nschurmann One way of doing this is wrapping the Icon with StyleProvider and passing theme with different iconFamily variable. Check this for customization. And the other way is importing different icons from react-native-vector-icons and use them.
@shivrajkumar is there anyway to use more than one iconFamily? It would be great to be able to use the same icon styles but with icons from different icon families. Maybe a iconFamily prop on the
I wish there was a way to use other icon families within nativebase but for others trying to do the same thing, this is what I ended up putting together to get around it:
import IconFA from "react-native-vector-icons/FontAwesome";
<IconFA name="balance-scale" style={{fontSize: 16}} />
Most helpful comment
I wish there was a way to use other icon families within nativebase but for others trying to do the same thing, this is what I ended up putting together to get around it: