Installation
React Native Package

React Native Package Installation

To get started with the HugeIcons React Native package, you need to install it from npm or yarn.

Installation

First, you have to activate your license and get your npm token, check the activation guide for more information.

After that you can install the @hugeicons/react-native package:

npm i @hugeicons/react-native

Example

Here's a quick example of how to use an icon in a React Native component:

import React from 'react';
import { Home01Icon } from '@hugeicons/react-native';
 
function App() {
  return (
    <View>
      <Home01Icon />
    </View>
  );
}
 
export default App;