@nghinv/react-native-icons

A custom vector icons component

Usage no npm install needed!

<script type="module">
  import nghinvReactNativeIcons from 'https://cdn.skypack.dev/@nghinv/react-native-icons';
</script>

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

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'
    />
  );
}