# SolidJS

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

Add Tabler Icons to SolidJS apps with the official tree-shakable package. Import over 5000 high-quality SVG icons as components.

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

---

![Tabler Icons for SolidJS](/img/icons/package-solidjs.png)

## Installation

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

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

## How to use

Each icon is a component, and the package ships as ES modules, so only the icons you import end up in the bundle.

```js
import { IconArrowRight } from '@tabler/icons-solidjs';

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

export default App;
```

You can pass additional props to adjust the icon.

```js
<IconArrowRight 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            |
