mirror of
https://github.com/status-im/react-native-fast-image.git
synced 2025-02-24 20:28:21 +00:00
17 lines
363 B
JavaScript
17 lines
363 B
JavaScript
import React from 'react'
|
|
import Base from 'react-native-vector-icons/Ionicons'
|
|
|
|
const Icon = ({ size, name, focusedName, focused, tintColor }) => (
|
|
<Base
|
|
name={focused ? focusedName : name}
|
|
size={size}
|
|
style={{ width: size, height: size }}
|
|
color={tintColor}
|
|
/>
|
|
)
|
|
|
|
Icon.defaultProps = {
|
|
size: 26,
|
|
}
|
|
|
|
export default Icon |