SolidJS
The official SolidJS package for Tabler Icons. Every icon is a component with size, color and stroke props.
![]()
Installation
npm install @tabler/icons-solidjsyarn add @tabler/icons-solidjspnpm install @tabler/icons-solidjsbun install @tabler/icons-solidjsor 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 |
