1.1.1 • Published 4 months ago

@mrkpatchaa/react-native-ionicons v1.1.1

Weekly downloads
-
License
ISC
Repository
github
Last release
4 months ago

React Native Ionicons

Use the latest Ionicons (v6+) in your React Native project :tada:.

Based on this fantastic work https://github.com/michaelbnd/react-native-ionicons

About Ionicons

Ionicons is a completely open-source icon set with 1,300+ icons.

Each icon has an outline, filled, and sharp variant.

Outline

Filled

Sharp

Install

npm install @mrkpatchaa/react-native-ionicons
npm install react-native-svg
npx pod-install

Usage

import React from 'react';
import {View} from 'react-native';
import {Icon} from '@mrkpatchaa/react-native-ionicons';

export default function App() {
  return (
    <View style={{flex: 1, alignItems: 'center', justifyContent: 'center', flexDirection: 'row'}}>
      <Icon name="rocket-outline" size={64} color="#000" />
      <Icon name="rocket" size={64} color="#000" />
      <Icon name="rocket-sharp" size={64} color="#000" />
    </View>
  );
}

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)/.+"
]
1.1.1

4 months ago

2.0.0

9 months ago

1.1.0

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago