React native implementation for the popular RemixIcon open source library.
Using yarn
yarn add react-native-remix-iconUsing npm
npm install react-native-remix-iconThis library relies on the react-native-svg package to render svg icons. Install the react-native-svg package,
yarn add react-native-svgor
npm install react-native-svgimport Icon from "react-native-remix-icon";<Icon name="home-fill" size="48" color="red" fallback={null}>| Prop | Default | Description | 
|---|---|---|
| name | remixicon-fill | Name of the icon. Explore the remixicon library for all valid icon names | 
| size | 24 | Size of the icon | 
| color | black | Color of the icon | 
| fallback | <Text>Invalid Icon Name</Text> | Fallback component when invalid name is provided. nullvalue will not display anything | 
The version of react-native-remix-icon is aligned with the original RemixIcon package. For example, version 4.5.0 of react-native-remix-icon contains all the icons from version 4.5.0 of the RemixIcon library.

