# gate-rn-icons

> Ant Design Icons for React Native

Latest version **1.0.6** (published 2021-05-20) · MIT license · 0 weekly downloads

## Install

```sh
npm install gate-rn-icons
pnpm add gate-rn-icons
yarn add gate-rn-icons
bun add gate-rn-icons
```

## Health

**Score 45/100 (D)** — status: abandoned.

Positive: has types; esm support; no vulnerabilities; high maintenance score; high quality score.

Warnings: low downloads.

Negative: abandoned.

## Facts

| | |
|---|---|
| Version | 1.0.6 |
| Published | 2021-05-20 |
| First published | 2021-05-17 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 0 |
| Unpacked size | 239.7 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1091 |
| Maintainers | jeffrey_liu |

## Links

- npm: https://www.npmjs.com/package/gate-rn-icons
- Repository: https://github.com/ant-design/ant-design-icons/tree/master/packages/icons-react-native
- npm.io page: https://npm.io/package/gate-rn-icons

## Recent versions

- 1.0.6 (latest) — 2021-05-20
- 1.0.5 — 2021-05-20
- 1.0.4 — 2021-05-20
- 1.0.3 — 2021-05-17
- 1.0.2 — 2021-05-17
- 1.0.1 — 2021-05-17

## README

<h1 align="center">
Ant Design Icons for React Native
</h1>

<div align="center">

[![NPM version](https://img.shields.io/npm/v/@ant-design/icons-react-native.svg?style=flat)](https://npmjs.org/package/@ant-design/icons-react-native)
[![NPM downloads](http://img.shields.io/npm/dm/@ant-design/icons-react-native.svg?style=flat)](https://npmjs.org/package/@ant-design/icons-react-native)

</div>

## Install

```bash
yarn add @ant-design/icons-react-native
```

## Linking

```bash
react-native link @ant-design/icons-react-native
```

will copy fonts to `ios` and `android` assets folder.

After linking succeeded you need run your app from `xcode` or `android studio` or start it from terminal `react-native run-ios` or `react-native run-android`

## Basic Usage

```tsx
import { IconFill, IconOutline } from "@ant-design/icons-react-native";
```

After that, you can use antd icons in your React components as simply as this:

```jsx
<IconFill name="account-book" />
<IconOutline name="account-book" />
```

## Component Interface

```ts
interface IconFillProps extends TextProps {
  name: FillGlyphMapType;
  size?: number;
  color?: string;
}
```

---
_Source: https://npm.io/package/gate-rn-icons · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
