Discover / Design
Tabler Icons
by tablerJavaScript
Free, high-quality SVG icons for web projects.
Maturity: stable because 6y old, v3.46.0 released 6d ago. Derived from release and commit history, not a rating.
- Stars
- 21k
- Forks
- 1.2k
- Downloads / mo
- —
- Last commit
- 2026-07-28
- License
- MIT
- Open issues
- 113
Market and trust evidence
Edition not yet matchedNo exact skills.sh identity match is available for this repository. Repository adoption and freshness remain visible above; install momentum is not inferred.
Trust analysis is a screening signal, not a security warranty. Read the ranking and trust methodology.
In practice
Written by AI from this repository’s README · high confidenceProjects need one consistent icon set that can be recoloured and resized without licensing complications.
Use it when
When you need a large, consistent icon set usable as SVG files, a sprite, or React, Vue and Angular components.
Not the right pick when
Framework components live in separate packages, so installing the base package alone gives you raw SVG files.
Capabilities
- thousands of icons split into outline and filled versions
- every icon on a 24x24 grid with a 2px stroke
- usable as img, background-image, inline SVG or an SVG sprite
- size, colour and stroke-width adjustable with CSS
- React components through @tabler/icons-react
- Vue and Angular component packages
Cost: Free and open source
Install
Derived from the published package name in the repository, not from a model.
Video walkthroughs
Third-party YouTube uploads matched to this tool by title, channel and repository name on 2026-08-03. Not made, reviewed or endorsed by SkillPilot. View counts and publish months are as of the match date and the month is approximate. Nothing loads from YouTube until you press play.
What the repository ships
Detected from the actual files in the repository root.
Latest release v3.46.0
Published 2026-07-28
<img width="584" src="https://github.com/user-attachments/assets/a34ef72e-1f74-479e-87db-1e7a9c212405" />
18 new icons:
outline/play-bugoutline/play-bugsoutline/remote-controloutline/rocking-chairoutline/run-sprintoutline/sparkles-2-offoutline/tabsoutline/tags-chevron-downoutline/tags-chevron-leftoutline/tags-chevron-rightoutline/tags-chevron-upoutline/thinking-highoutline/thinking-lowoutline/thinking-mediumoutline/treasure-chestoutline/twigoutline/vaultoutline/yarn
Fixed icons: outline/credits, outline/currency-tether, outline/device-3d-camera, outline/device-screen, outline/home-lock, outline/map-lock, outline/notdef, outline/queue-pop-in, outline/server-bolt, outline/server, outline/sparkles-2, outline/transform-point-bottom-left, outline/transform-point-bottom-right, outline/transform-point-top-left, outline/transform-point-top-right
Tags
README
Tabler Icons
<p align="center">
<a href="https://tabler.io/icons?ref=tabler-icons-readme"><img src="https://raw.githubusercontent.com/tabler/tabler-icons/main/.github/packages/og-core.png" alt="Tabler Icons" width="838"></a>
</p>
<p align="center">
A set of <!--icons-count-->6184<!--/icons-count--> free MIT-licensed high-quality SVG icons for you to use in your web projects. Each icon is designed on a 24x24 grid and a 2px stroke.
<p>
<p align="center">
<a href="https://tabler.io/icons"><strong>Browse at tabler.io/icons →</strong></a>
</p>
Sponsors
If you want to support our project and help me grow it, you can become a sponsor on GitHub or just donate on PayPal :)
<a href="https://github.com/sponsors/codecalm">
<img src="https://cdn.jsdelivr.net/gh/tabler/sponsors@latest/sponsors.svg" alt="Tabler sponsors">
</a>
Testing
<p align="center">Browser testing via:</p>
<p align="center">
<a href="https://www.testmuai.com/?utm_medium=sponsor&utm_source=tabler" target="_blank">
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://github.com/user-attachments/assets/f0967860-31ad-4078-850b-40b0abc95582" />
<source media="(prefers-color-scheme: light)" srcset="https://github.com/user-attachments/assets/55ac290a-6729-44aa-bbc3-4c5e909facbf" />
<img src="https://github.com/user-attachments/assets/86bcbe29-eb8d-4273-a381-5ce17d4ca92d" alt="TestMu AI" width="296">
</picture>
</a>
</p>
Preview
Outline version (<!--icons-count-outline-->5130<!--/icons-count-outline--> icons)
<p align="center">
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/tabler/tabler-icons/main/.github/preview/icons-outline-dark.png">
<source media="(prefers-color-scheme: light)" srcset="https://raw.githubusercontent.com/tabler/tabler-icons/main/.github/preview/icons-outline.png">
<img src="https://raw.githubusercontent.com/tabler/tabler-icons/main/.github/preview/icons-outline.png" alt="Tabler Icons preview" width="838">
</picture>
</p>
Filled version (<!--icons-count-filled-->1054<!--/icons-count-filled--> icons)
<p align="center">
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/tabler/tabler-icons/main/.github/preview/icons-filled-dark.png">
<source media="(prefers-color-scheme: light)" srcset="https://raw.githubusercontent.com/tabler/tabler-icons/main/.github/preview/icons-filled.png">
<img src="https://raw.githubusercontent.com/tabler/tabler-icons/main/.github/preview/icons-filled.png" alt="Tabler Icons preview" width="838">
</picture>
</p>
Installation
npm install @tabler/icons --save
or just download from GitHub.
Usage
All icons are built with SVG, so you can place them as <img>, background-image and inline in HTML code.
HTML image
If you load an icon as an image, you can modify its size using CSS.
<img src="path/to/icon.svg" alt="icon title" />
Inline HTML
You can paste the content of the icon file into your HTML code to display it on the page.
<a href="">
<svg
xmlns="http://www.w3.org/2000/svg"
class="icon icon-tabler icon-tabler-disabled"
width="24"
height="24"
viewBox="0 0 24 24"
stroke-width="1.25"
stroke="currentColor"
fill="none"
stroke-linecap="round"
stroke-linejoin="round"
>
...
</svg>
Click me
</a>
Thanks to that, you can change the size, color and the stroke-width of the icons with CSS code.
.icon-tabler {
color: red;
width: 32px;
height: 32px;
stroke-width: 1.25;
}
SVG sprite
Add an icon to be displayed on your page with the following markup (activity in the above example can be replaced with any valid icon name):
<svg width="24" height="24">
<use xlink:href="path/to/tabler-sprite.svg#tabler-activity" />
</svg>
React
React components available through @tabler/icons-react package.
import { IconAward } from '@tabler/icons-react';
const MyComponent = () => {
return <IconAward
size={36} // set custom `width` and `height`
color="red" // set `stroke` color
stroke={3} // set `stroke-width`
strokeLinejoin="miter" // override other SVG props
/>
}
@tabler/icons-react exports its own type declarations for usage with React and Typescript.
For more details, see the documentation.
Vue
Vue components available through @tabler/icons-vue package.
<template>
<!-- basic usage -->
<IconHome />
<!-- set `stroke` color -->
<IconHome color="red"/>
<IconHome stroke="red"/>
<!-- set custom `width` and `height` -->
<IconHome size="36"/>
<!-- set `stroke-width` -->
<IconHome strokeWidth="2"/>
<IconHome stroke-width="2"/>
</template>
<script>
// Returns Vue component
import { IconHome } from '@tabler/icons-vue';
export default {
components: { IconHome }
};
</script>
or with <script setup>
<script setup>
// Import Vue component
import { IconHome } from '@tabler/icons-vue';
</script>
<template>
<IconHome color="red" size="36" strokeWidth="2"/>
</template>
For more details, see the documentation.
Angular
Angular components available through angular-tabler-icons package.
Install the package, then create icons module:
import { NgModule } from '@angular/core';
import { TablerIconsModule } from 'angular-tabler-icons';
import { IconCamera, IconHeart, IconBrandGithub } from 'angular-tabler-icons/icons';
// Select some icons (use an object, not an array)
const icons = {
IconCamera,
IconHeart,
IconBrandGithub
};
@NgModule({
imports: [
TablerIconsModule.pick(icons)
],
exports: [
TablerIconsModule
]
})
export class IconsModule { }
After importing the _IconsModule_ in your feature or shared module, use the icons as follows:
<i-tabler name="camera"></i-tabler>
<i-tabler name="heart" style="color: red;"></i-tabler>
<i-tabler name="brand-github" class="someclass"></i-tabler>
angular-tabler-icons exports its own type declarations for usage with Typescript.
For more usage documentation refer to the official documentation.
Svelte 4 and below
Svelte components available through @tabler/icons-svelte package.
<script lang="ts">
import { IconHeart } from '@tabler/icons-svelte';
</script>
<main>
<IconHeart size={48} stroke={1} />
<IconHeart size="32" stroke="1.5" />
<IconHeart color="crimson" class="p-1" size="96" stroke="2" />
</main>
Svelte 5
Svelte 5 components available through @tabler/icons-svelte-runes package.
<script lang="ts">
import { IconHeart } from '@tabler/icons-svelte-runes';
</script>
<main>
<IconHeart size={48} stroke={1} />
<IconHeart size="32" stroke={1.5} />
<IconHeart color="crimson" class="p-1" size="96" stroke="2" />
</main>
CDN
All files included in @tabler/icons npm package are available over a CDN.
React icons
<script src="https://cdn.jsdelivr.net/npm/@tabler/icons@latest/icons-react/dist/index.umd.min.js"></script>
Iconfont
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@tabler/icons-webfont@latest/tabler-icons.min.css">
To load a specific version replace latest with the desired version number.
<script src="https://cdn.jsdelivr.net/npm/@tabler/icons@1.74.0/icons-react/dist/index.umd.min.js"></script>
HTML
<i class="ti ti-brand-tabler"></i>
CSS
content: 'ec8f';
Compiling fonts
To compile fonts first install fontforge.
When compiling the font it will look for a json file compile-options.json in root folder (same folder as the package.json) In this file you can define extra options:
The default settings if you have not defined the file will be:
{
"includeIcons": [],
"fontForge": "fontforge",
"strokeWidth": null
}
The fontforge executable needs to be in the path or you can set the path to the downloaded fontforge executable in the configuration file. If you installed in on a mac in your application directory it will be /Applications/FontForge.app/Contents/MacOS/FontForge. You can set this value in the compile-options.json file.
{
"fontForge": "/Applications/FontForge.app/Contents/MacOS/FontForge"
}
To compile the fonts run:
npm run build-iconfont
By default the stroke width is 2. You can change the stroke width in the compile-options.json
{
"strokeWidth": 1.5,
}
To reduce the font file size you can choose to compile a sub set of icons. When you leave the array empty it will compile all the fonts. To compile only two icons you can set for example the following option in the compile-options.json:
{
"includeIcons": ["alert-octagon", "alert-triangle"]
}
Optional property includeCategories - an array or string of icon categories to include, category names are case-insensitive.
{
"includeCategories": ["Devices", "System"]
}
or
{
"includeCategories": "Devices System"
}
Optional property excludeIcons - an array of icon names using to exclude some category icons:
{
"includeCategories": ["system"],
"excludeIcons": ["adjustments"]
}
Complex solution:
{
"includeIcons": ["alert-octagon", "alert-triangle"],
"includeCategories": ["devices", "system"],
"excludeIcons": ["adjustments"]
}
Jetpack Compose
For Android or Desktop you can use compose-icons to use icons in your projects. (see docs)
Multiple strokes
All icons in this repository have been created with the value of the stroke-width property, so if you change the value, you can get different icon variants that will fit in well with your design.
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/tabler/tabler-icons/main/.github/icons-stroke-dark.png">
<source media="(prefers-color-scheme: light)" srcset="https://raw.githubusercontent.com/tabler/tabler-icons/main/.github/icons-stroke.png">
<img src="https://raw.githubusercontent.com/tabler/tabler-icons/main/.github/icons-stroke.png" alt="Tabler Icons preview" width="838">
</picture>
License
Tabler Icons is licensed under the MIT License.
Sponsor Tabler
<a href="https://github.com/sponsors/codecalm" target="_blank"><img src="https://github.com/tabler/tabler/raw/dev/src/static/sponsor-banner-readme.png?raw=true" alt="Sponsor Tabler" /></a>