vue-particles-icons
v2.1.1
Published
A set of SVG Icons from Presslabs to use with VueJS components
Readme
VueJS Particles icons
yarn add vue-particles-iconsUsage
Import individual icon
<template>
<add-icon></add-icon>
</template>
<script>
import { AddIcon } from 'vue-particles-icons'
export default {
components: { AddIcon }
}
</script>or as single component with name attribute
<template>
<particle name="add"></particle>
</template>
<script>
import { Particle } from 'vue-particles-icons'
export default {
components: { Particle }
}
</script>Development
Build icons:
yarn buildBuild demo:
yarn demoView/modify demo:
yarn dev