Newer
Older
import React from 'react'
import PropTypes from 'prop-types'
import { StyleSheet } from 'react-native'
import Icon from 'react-native-vector-icons/Entypo'
const AppIcon = ({ color, name }) => {
const style = [styles.icon, { color }]
return <Icon name={name} style={style}/>
}
AppIcon.propTypes = {
name: PropTypes.string.isRequired
}
AppIcon.defaultProps = {