Icon

yarn add react-native-vector-icons
# or
# npm i --save react-native-vector-iconsConfiguration
Example
Last updated

yarn add react-native-vector-icons
# or
# npm i --save react-native-vector-iconsLast updated
// react-native.config.js
module.exports = {
assets: ['react-native-vector-icons']
};yarn react-native linkimport React from 'react';
import { View } from 'react-native';
import { Icon } from 'monalisa-ui';
const Example = () => (
<View>
<Icon name="pluscircleo" type="AntDesign" size={30} />
<Icon name="add-user" type="Entypo" size={30} />
<Icon name="arrow-down" type="EvilIcons" size={30} />
<Icon name="activity" type="Feather" size={30} />
<Icon name="glass" type="FontAwesome" size={30} />
<Icon name="accusoft" type="FontAwesome5" size={30} />
</View>
);
export default Example;import React from 'react';
import { Icon } from 'monalisa-ui';
const Example = () => (
<Icon
android="chevron-left"
ios="chevron-small-left"
type="Entypo"
size={30}
/>
);
export default Example;