vue-iconoir
v5.0.0
Published
Unofficial iconoir vue library.
Downloads
2
Readme
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