Gathering detailed insights and metrics for vue-tabler-icons
Gathering detailed insights and metrics for vue-tabler-icons
Gathering detailed insights and metrics for vue-tabler-icons
Gathering detailed insights and metrics for vue-tabler-icons
@vicons/tabler
Vue3 SVG icon components integrated from [`tabler`](https://github.com/tabler/tabler-icons)
@tabler/icons-vue
A set of free MIT-licensed high-quality SVG icons for you to use in your web projects.
@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
Fully customizable free SVG icons made as Vue components.
npm install vue-tabler-icons
Typescript
Module System
Node Version
NPM Version
JavaScript (41.81%)
Vue (40.04%)
Shell (11.18%)
HTML (3.79%)
TypeScript (3.18%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
151 Stars
125 Commits
13 Forks
2 Watchers
3 Branches
6 Contributors
Updated on Jun 04, 2025
Latest Version
2.21.0
Package Id
vue-tabler-icons@2.21.0
Unpacked Size
37.01 MB
Size
2.29 MB
File Count
4,223
NPM Version
6.14.18
Node Version
14.21.3
Published on
May 26, 2023
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
</p>
1yarn add vue-tabler-icons 2 3# or 4 5npm i vue-tabler-icons
Version 2.x is Vue 3 only, if you use Vue 2 then install any 1.x version
1yarn add vue-tabler-icons@^1.0
v1.x is no longer a priority so updates may be delayed or discontinued.
1<script> 2 // MyComponent.vue 3 import { BoldIcon } from "vue-tabler-icons"; 4 5 export default { 6 components: { BoldIcon }, 7 }; 8</script> 9 10<template> 11 <bold-icon /> 12</template>
You may install a Vue plugin that automatically adds all components to the Vue instance.
Note: this usage is not recommended as it cannot be tree-shaken.
1import Vue from "vue"; 2import VueTablerIcons from "vue-tabler-icons"; 3 4Vue.use(VueTablerIcons);
Now you can use icons without importing them:
1<template> 2 <trash-icon /> 3</template>
If you prefer CDN, then use this URL https://unpkg.com/vue-tabler-icons/dist/vue-tabler-icons.umd.js
The library doesn't automatically registers itself so you need to do it manually:
1<script> 2 Vue.use(VueTablerIcons); 3</script>
Component names use the same names as defined in the original library with some rules applied:
Icon
added to the end of the nameFor example:
arrows-diagonal-2
will become ArrowsDiagonal2Icon
.
Following icon names are replaced to match JavaScript variable name pattern:
Original | New |
---|---|
2fa.svg | TwoFactorAuthIcon |
3d-cube-sphere.svg | ThreedCubeSphereIcon |
3d-cube-sphere-off.svg | ThreedCubeSphereIconOff |
3d-rotate.svg | ThreedRotateIcon |
123.svg | OneTwoThreeRotateIcon |
360-view.svg | Deg360ViewIcon |
360.svg | Deg360Icon |
All components define size
property that you can use to control the icon's size:
1<bold-icon size="48" />
Will render 48x48 icon.
All other attributes are directly bound to the underlying SVG image.
Attributes height
and width
have higher precedence over size
property.
All icons use currentColor
as their color. You can colorize your icons as you do that for text.
1<bold-icon style="color: red" /> <bold-icon class="text-red" />
Any custom attribute that set on the component will be applied directly to the SVG asset.
For example, if you want to set stroke-width
attribute just set it as usually:
1<bold-icon stroke-width="1" />
Clone repo:
1git clone https://github.com/alex-oleshkevich/vue-feather-icons.git
Install deps:
1yarn install
Run build
1yarn build
Icon component will be in icons
directory.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
no dangerous workflow patterns detected
Reason
license file detected
Details
Reason
Found 2/16 approved changesets -- score normalized to 1
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
22 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