web-ridge / react-native-paper-tabs

Smooth and fast cross platform Material Design Tabs for React Native Paper
https://reactnativepapertabs.com
MIT License
190 stars 34 forks source link

Importing the icon source from an .svg file in a TabScreen #18

Closed eddrichjanzzen closed 2 years ago

eddrichjanzzen commented 2 years ago

Hi, Is there a way to specify the icon source from an existing .svg file in a <TabScreen>?

For example:

    <TabScreen
      label={"This is a Test Label"}
      icon={"path to svg file"}
    >
samarmeena commented 2 years ago

use native method to import icon from svg, below syntax is example to achieve that

 <TabScreen label="home" icon={() => <Icon icon="next" />}>