Gathering detailed insights and metrics for @tabler/icons-vue
Gathering detailed insights and metrics for @tabler/icons-vue
Gathering detailed insights and metrics for @tabler/icons-vue
Gathering detailed insights and metrics for @tabler/icons-vue
@vicons/tabler
Vue3 SVG icon components integrated from [`tabler`](https://github.com/tabler/tabler-icons)
vue-tabler-icons
   ![NPM
@kalimahapps/vue-icons
70,000+ SVG icons of popular icon sets that you can add seamlessly to vue projects
@iconify-prerendered/vue-tabler
Tabler Icons components for Vue. Designed for ease of use and high performance
A set of over 5800 free MIT-licensed high-quality SVG icons for you to use in your web projects.
npm install @tabler/icons-vue
Typescript
Module System
Node Version
NPM Version
JavaScript (57.87%)
TypeScript (17.91%)
SCSS (7.4%)
HTML (6.1%)
Liquid (5.34%)
CSS (3.93%)
Svelte (0.91%)
Vue (0.29%)
Python (0.25%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
19,389 Stars
1,908 Commits
1,015 Forks
104 Watchers
12 Branches
77 Contributors
Updated on Jul 15, 2025
Latest Version
3.34.0
Package Id
@tabler/icons-vue@3.34.0
Unpacked Size
37.81 MB
Size
2.77 MB
File Count
11,905
NPM Version
10.8.2
Node Version
20.18.3
Published on
Jun 02, 2025
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
1
1
Implementation of the Tabler Icons library for Vue 3 applications.
Browse all icons at tabler-icons.io →
If you want to support my project and help me grow it, you can become a sponsor on GitHub or just donate on PayPal :)
yarn add @tabler/icons-vue
or
npm install @tabler/icons-vue
or
pnpm install @tabler/icons-vue
or just download from Github.
All icons are Vue components that contain SVG elements. So any icon can be imported and used as a component. It also helps to use threeshaking, so you only import the icons you use.
1<template> 2 <!-- basic usage --> 3 <IconHome /> 4 5 <!-- set `stroke` color --> 6 <IconHome color="red"/> 7 <IconHome stroke="red"/> 8 9 <!-- set custom `width` and `height` --> 10 <IconHome size="36"/> 11 12 <!-- set `stroke-width` --> 13 <IconHome strokeWidth="2"/> 14 <IconHome stroke-width="2"/> 15</template> 16 17<script> 18// Returns Vue component 19import { IconHome } from '@tabler/icons-vue'; 20 21export default { 22 components: { IconHome } 23}; 24</script>
or with <script setup>
1<script setup> 2// Import Vue component 3import { IconHome } from '@tabler/icons-vue'; 4</script> 5 6<template> 7 <IconHome color="red" size="36" strokeWidth="2"/> 8</template>
You can pass additional attribute stroke-width="1"
alongside the props to adjust the icon.
1<IconHome color="red" size="48" stroke-width="1" />
name | type | default |
---|---|---|
size | Number | 24 |
color | String | currentColor |
strokeWidth | Number | 2 |
For more info on how to contribute please see the contribution guidelines.
Caught a mistake or want to contribute to the documentation? Edit this page on Github
Tabler Icons is licensed under the MIT License.
No vulnerabilities found.
Reason
16 commit(s) and 2 issue activity found in the last 90 days -- score normalized to 10
Reason
no dangerous workflow patterns detected
Reason
license file detected
Details
Reason
no binaries found in the repo
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
Found 6/30 approved changesets -- score normalized to 2
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
security policy file not detected
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
23 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More