Making icons selectable in React Native instead of sending them with props
I have svg icons These are <A/>, <B/>, <C/>. I want to use these icons in <MyButton>. This is how I am using it now. MyButton.js function MyButton(props) { return ( <TouchableOpacity> {props.icon} <Text>{props.title}</Text> </TouchableOpacity> ); } App.js import A…