# Preact

> The official Preact package for Tabler Icons. Every icon is a tree-shakable component with size, color and stroke props.

Add Tabler Icons to Preact apps with the official tree-shakable package. Import any of over 5000 lightweight SVG icons as components.

Source: https://docs.tabler.io/icons/libraries/preact

---

![Tabler Icons for Preact](/img/icons/package-preact.png)

## Installation

```shell
npm install @tabler/icons-preact
yarn add @tabler/icons-preact
pnpm install @tabler/icons-preact
bun install @tabler/icons-preact
```

or just [download from Github](https://github.com/tabler/tabler-icons/releases).

## How to use

It's built with ESmodules so it's completely tree-shakable. Each icon can be imported as a component.

```js
import { IconArrowDown } from '@tabler/icons-preact';

const App = () => {
  return <IconArrowDown />;
};

export default App;
```

You can pass additional props to adjust the icon.

```js
<IconArrowDown color="red" size={48} />
```

### Props

All icon components accept these props to control the size, color, and stroke width of the rendered SVG:

| name     | type     | default      |
| -------- | -------- | ------------ |
| `size`   | _Number_ | 24           |
| `color`  | _String_ | currentColor |
| `stroke` | _Number_ | 2            |
