@nghinv/react-native-icons
v1.0.6
Published
A custom vector icons component
Downloads
185
Maintainers
Readme
@nghinv/react-native-icons
Installation
Installing the package
- Use yarn
yarn add @nghinv/react-native-icons
- Use npm
npm install @nghinv/react-native-icons
- Add library react-native-vector-icons
How to use
import React from 'react';
import { Icon } from '@nghinv/react-native-icons';
export default function Example() {
return (
<Icon
size={36}
name='photo'
color='tomato'
type='MaterialIcons'
/>
);
}