# @tillpos/react-native-unicons

> Unicons - 1000+ vector icons as easy to use vector React Native Components

Latest version **1.0.5** (published 2021-06-07) · Apache-2.0 license · 0 weekly downloads

## Install

```sh
npm install @tillpos/react-native-unicons
pnpm add @tillpos/react-native-unicons
yarn add @tillpos/react-native-unicons
bun add @tillpos/react-native-unicons
```

## Health

**Score 30/100 (F)** — status: abandoned.

Positive: no vulnerabilities; high maintenance score.

Warnings: low downloads; no types; no esm support.

Negative: abandoned.

## Facts

| | |
|---|---|
| Version | 1.0.5 |
| Published | 2021-06-07 |
| First published | 2021-06-07 |
| Weekly downloads | 0 |
| License | Apache-2.0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 1.6 MB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Iconscout |
| Maintainers | mdsiddiq-till, lakshmaji-till, snehithvelma |
| Keywords | react-native, unicons, react-native-unicons, react-native-icons, icons, iconscout, tillpos, vector |

## Links

- npm: https://www.npmjs.com/package/@tillpos/react-native-unicons
- Repository: https://github.com/hitz-group/react-native-unicons
- Homepage: https://iconscout.com/unicons
- Issues: https://github.com/hitz-group/react-native-unicons/issues
- npm.io page: https://npm.io/package/@tillpos/react-native-unicons

## Alternatives

- [@fortawesome/react-fontawesome](https://npm.io/package/@fortawesome/react-fontawesome.md) — 2.2M weekly downloads
- [roboto-fontface](https://npm.io/package/roboto-fontface.md) — 196.0K weekly downloads
- [@react-native-vector-icons/common](https://npm.io/package/@react-native-vector-icons/common.md) — 150.4K weekly downloads
- [@procore/core-icons](https://npm.io/package/@procore/core-icons.md) — 4.6K weekly downloads
- [@react-md/material-icons](https://npm.io/package/@react-md/material-icons.md) — 1.6K weekly downloads

## Recent versions

- 1.0.5 (latest) — 2021-06-07
- 1.0.4 — 2021-06-07

## README

# React Native Unicons

1000+ Pixel-perfect vector icons as React Native Components. These icons are designed by [Iconscout](https://iconscout.com).

## Prerequisites
This library uses [react-native-svg](https://github.com/react-native-community/react-native-svg) to render svg icons. Therefore this library needs to be installed & linked into your project to work.

You can install it by:
```bash
npm install --save react-native-svg
react-native link react-native-svg
```
Facing issues? [Click here](https://github.com/react-native-community/react-native-svg) to link it manually.

## Getting Started
You can easily install [react-native-unicons](https://iconscout.com/unicons) using npm.
```bash
npm install --save @iconscout/react-native-unicons
```
## Usage
### Use individual icons
```js
import UilReact from '@iconscout/react-native-unicons/icons/uil-react'

const App = () => {
  return <UilReact size="140" color="#61DAFB" />
};

export default App;
````

You can customize icons as below:
```html
<Unicons.UilReact size="140" color="#61DAFB" />
```

### Usage as full Package
```js
import * as Unicons from '@iconscout/react-native-unicons';

const App = () => {
  return <Unicons.UilReact />
};

export default App;
````

### More ways
- [React-unicons](https://github.com/Iconscout/react-unicons)
- [Vue-unicons](https://github.com/antonreshetov/vue-unicons) by [Anton Reshetov](https://github.com/antonreshetov)
- [Vector SVGs](https://iconscout.com/unicons)
- [Icon Font](https://github.com/Iconscout/unicons)

## Contributing
We will be happy to have community support for Unicons. Feel free to fork and create pull requests. We have given a small roadmap above so that you can help us build these features.

### Icon Requests
We've created a thread at [Iconscout Community](https://discuss.iconscout.com/new-topic?title=Icon%20Request:%20%3Cicon%3E&body=Hey%20there,%20%3Cicon%3E%20will%20be%20great%20fit%20for%20Unicons.%20I%20would%20love%20to%20use%20it!&category=Unicons&tags=requests) where you can request for new icons. And we'll be happy to design them in upcoming weeks.

## License
Unicons are Open Source icons and licensed under [Apache 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt). You're free to use these icons in your personal and commercial project. We would love to see the attribution in your app's **about** screen, but it's not mandatory.
```html
React Native Unicons by <a href="https://iconscout.com/">Iconscout</a>
```

---
_Source: https://npm.io/package/@tillpos/react-native-unicons · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
