UNPKG

react-native-chatify

Version:

React native chat easy to use and integrate

17 lines (12 loc) 401 B
import React from 'react'; import MaterialCommunityIcons from 'react-native-vector-icons/MaterialCommunityIcons'; const IconMap = { MaterialCommunityIcons, }; const Icon = ({type = 'FontAwesome', name, size, color, customStyles}) => { const IconComponent = IconMap[type]; return ( <IconComponent name={name} style={customStyles} size={size} color={color} /> ); }; export default Icon;