Ionicons 5 for React Native
npm install @elevyg/react-native-ioniconsUse the latest Ionicons (5.5.2) in your React Native project :tada:.
![]()
Each icon has an outline, filled, and sharp variant.
#### Outline
#### Filled
#### Sharp
npm install @michaelbnd/react-native-ionicons
npm install react-native-svg
npx pod-install
`Usage
`javascript
import React from 'react';
import {View} from 'react-native';
import {Icon} from '@michaelbnd/react-native-ionicons';export default function App() {
return (
);
}
`
Jest
Add the lines below in your package.json inside the "jest" key if you are testing your project with Jest.
`
"transformIgnorePatterns": [
"/node_modules/(?!react-native)/.+"
]
``