# yqx-icons

> Yqx Icons for React Native

Latest version **1.0.0** (published 2021-11-20) · MIT license · 0 weekly downloads

## Install

```sh
npm install yqx-icons
pnpm add yqx-icons
yarn add yqx-icons
bun add yqx-icons
```

## Health

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

Positive: esm support; no vulnerabilities.

Warnings: low downloads; no types.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.0 |
| Published | 2021-11-20 |
| First published | 2021-11-20 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | ESM + CommonJS |
| Dependencies | 0 |
| Unpacked size | 235 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Maintainers | yuqixuan |

## Links

- npm: https://www.npmjs.com/package/yqx-icons
- Repository: https://gitee.com/yqxuan/yqx-icons
- npm.io page: https://npm.io/package/yqx-icons

## Recent versions

- 1.0.0 (latest) — 2021-11-20

## README

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

## Install

```bash
yarn add yqx-icons
```

## Linking

```bash
react-native link yqx-icons
```

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 "yqx-icon";
```

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/yqx-icons · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
