SolidJS

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

Tabler Icons for SolidJS

Installation

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.

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.

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

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

export default App;

You can pass additional props to adjust the icon.

<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