5.0.0 • Published 3 years ago

vue-iconoir v5.0.0

Weekly downloads
-
License
ISC
Repository
github
Last release
3 years ago

iconoir vue

Basic Usage

You can download any icon of the pack directly from https://iconoir.com or get them from this repository.

Additionally, the icons are available via the iconoir NPM package:

yarn add iconoir-vue
# or
npm i iconoir-vue

Example usage:

// Composition API
<template>
    <div>
        <GithubIcon class="w-5 h-5" />
    </div>
</template>

<script setup>
    import { GithubIcon } from 'iconoir-vue'
</script>
// Option API
<template>
    <div>
        <GithubIcon class="w-5 h-5" />
    </div>
</template>

<script>
    import { GithubIcon } from 'iconoir-vue'
    export default {
        components : {
            GithubIcon
        } 
    }
</script>

Source

You can find the main official repository here.

License

MIT License