# tabler-icons-react

> Tabler Icons for React

Latest version **1.56.0** (published 2022-12-06) · MIT license · 0 weekly downloads

## Install

```sh
npm install tabler-icons-react
pnpm add tabler-icons-react
yarn add tabler-icons-react
bun add tabler-icons-react
```

## Health

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

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

Warnings: low downloads.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.56.0 |
| Published | 2022-12-06 |
| First published | 2020-04-01 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 0 |
| Unpacked size | 8.1 MB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 201 |
| Author | Konrad Kalemba |
| Maintainers | konradkalemba |
| Keywords | react, icons |

## Links

- npm: https://www.npmjs.com/package/tabler-icons-react
- Repository: https://github.com/konradkalemba/tabler-icons-react
- Homepage: https://tabler-icons-react.vercel.app
- Issues: https://github.com/konradkalemba/tabler-icons-react/issues
- npm.io page: https://npm.io/package/tabler-icons-react

## 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.56.0 (latest) — 2022-12-06
- 1.55.0 — 2022-09-16
- 1.54.0 — 2022-07-26
- 1.53.0 — 2022-07-16
- 1.52.0 — 2022-06-29
- 1.51.0 — 2022-06-22
- 1.50.0 — 2022-06-20
- 1.49.0 — 2022-06-15
- 1.48.1 — 2022-05-31
- 1.48.0-dev.2 — 2022-05-30
- 1.48.0-dev.1 — 2022-05-30
- 1.48.0-dev — 2022-05-30
- 1.48.0 — 2022-05-10
- 1.47.0 — 2022-04-28
- 1.46.0 — 2022-04-21
- … 48 more at https://npm.io/package/tabler-icons-react/versions

## README

# tabler-icons-react

[![npm version](https://img.shields.io/npm/v/tabler-icons-react.svg)](https://www.npmjs.com/package/tabler-icons-react)
[![npm downloads](https://img.shields.io/npm/dm/tabler-icons-react.svg)](https://www.npmjs.com/package/tabler-icons-react)

A library of React components for [Tabler Icons](https://github.com/tabler/tabler-icons) — a set of over free 700 open-sourced MIT-licensed icons. 

## Usage

The package is available via npm and can be installed using `npm` or `yarn`:

```sh
# npm
npm install tabler-icons-react

# yarn
yarn add tabler-icons-react
```

After installing the package you can import Tabler Icons as React components as follows:

```jsx
import { Activity } from 'tabler-icons-react';
```

## Example

```jsx
import React from 'react';
import { Activity } from 'tabler-icons-react';

export default function Example() {
  return (
    <div>
      <Activity size={48} color="red" />
    </div>
  );
}
```

## Docs

Every icon component accepts following props:

| Prop  | Default        |
|-------|----------------:|
| `size`  |             `24` |
| `color` | `'currentColor'` |

## License

This project is MIT licensed.

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