rn-icon-component-helper
v1.0.3
Published
Cross-platform icon for React Native which supports keyword icon component, custom icon, etc
Downloads
5
Maintainers
Readme
rn-icon-component-helper
A cross-platform (iOS, Android) icon for React Native.
Features:
- Cross-platform (iOS, Android)
- Default styling works well
- Extensively customisable styling and rendering
- Use everything icon in react-native-vector-icons
Installation
Use Npm to install package: npm install rn-icon-component-helper
Use Yarn to install package: yarn add rn-icon-component-helper
NOTED
: Dont forget install and link react-native-vector-icons.
Props
name
: Set name icon (All name in react-native-vector-icons). Defaults to mobile.type
: Set type icon (All type in react-native-vector-icons). Default to type entypo.size
: Set size icon (Number). Default to 12color
: Set color icon (Color code).style
: Set style icon.buttonStyle
: Styling for custom button (TouchableOpacityProps).
Basic Usage
import Icon from 'rn-icon-component-helper';
<Icon name='play-circle-outline' type='MaterialIcons' size={size} color={color} />