Package Exports
- vue-unicons
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (vue-unicons) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme

1000+ Pixel-perfect svg unicons for your next project as Vue components
Demo
https://antonreshetov.github.io/vue-unicons
Developed with love for developers
A simple way to add the necessary icons and install them.

Install
NPM
Installing with npm is recommended and it works seamlessly with webpack.
npm i vue-unicons
Download
You can download latest version from the Github: Download
Quick start
Global
To use in your project:
- Import vue-unicons
- Grab the icons you want and add then into Unicon library
- Install Unicon into Vue
main.js
import Vue from 'vue'
import App from './App.vue'
import Unicon from 'vue-unicons'
import { uniLayerGroupMonochrome, uniCarWash } from 'vue-unicons/src/icons'
Unicon.add([uniLayerGroupMonochrome, uniCarWash])
Vue.use(Unicon)
new Vue({
render: h => h(App)
}).$mount('#app')
App.vue
Use the name of icon without the uni prefix, icon style and in the kebab-case :
uniCarWash
->car-wash
uniLayerGroupMonochrome
->layer-group
<template>
<div>
<unicon name="car-wash" fill="limegreen"></unicon>
<unicon name="layer-group" fill="royalblue" icon-style="monochrome></unicon>
</div>
</template>
Add custom icons
No icons you need? No problem, you can add custom svg icons.
custom-icons.js
// Always use a prefix to avoid coincidence with existing icons.
export const myCustomIcon = {
name: 'my-custom-icon',
path: '<path d="M16.327 10.775a.312.312 0 0...</path>' // Copy everything inside the svg tag of the icon you want and past there
}
For correct positioning of svg icon please make sure that the icon to be added has
viewBox="0 0 X X"
main.js
import Vue from 'vue'
import App from './App.vue'
import Unicon from 'vue-unicons'
import { uniConstructor, uniCarWash } from 'vue-unicons/src/icons'
import { myCustomIcon } from './custom-icons'
Unicon.add([uniConstructor, uniCarWash, myCustomIcon])
Vue.use(Unicon)
new Vue({
render: h => h(App)
}).$mount('#app')
App.vue
<template>
<div>
<unicon name="constructor" fill="royalblue"></unicon>
<unicon name="car-wash" fill="limegreen"></unicon>
<unicon name="my-custom-icon" fill="royalblue" />
</div>
</template>
Props
Name | Description | Type | Accepted values | Default value |
---|---|---|---|---|
name |
Icon name | string |
- | - |
width |
Width of icon | string |
- | - |
height |
Height of icon | string |
- | - |
fill |
Fill color of icon | string |
HEX or color name | - |
icon-style |
Icon style | string |
line / monochrome | line |
Events
Name | Description | Payload |
---|---|---|
click |
Triggered when icon was clicked | - |
License
Vue Unicons licensed under MIT.
Unicons licensed under Apache 2.0