I was trying to use the Eva Icons in UI Kitten but ended up getting this error, digging my head on this problem for a while, new to React and Reavt-Native, will be glad if someone could help me (:
render()
const FacebookIcon = (props) => (
<Icon name='facebook' {...props} />
);
return(
<Input
value={this.state.id}
label="FB ID"
size="medium"
placeholder="Enter your fb_id"
onChangeText={(enteredText) => this.setState({ fbId: enteredText })}
accessoryLeft={FacebookIcon}
/>
)