Skip to content

A Simple and Definitive Open-Source Icons Vue Library for Iconoir.

License

Notifications You must be signed in to change notification settings

iyashpal/iconoir-vue

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

42 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Vue Iconoir Icons

NPM Version NPM Monthly Downloads NPM License

Iconoir is an open-source library with 1k+ unique SVG icons. No premium icons, no email sign-up, no newsletters. You can browse the full suite of icons at iconoir.com.

iconoir-vue is an open source package that exports these icons as Vue.js components that can be used in all of your Vue projects.

Installation

yarn add iconoir-vue

or

npm i iconoir-vue

Usage

Example usage:

// Composition API

<script setup>
    import { Github } from 'iconoir-vue/regular'
    import { AdobePhotoshop  } from 'iconoir-vue/solid'
</script>

<template>
    <div>
        <Github class="w-5 h-5" />
        <AdobePhotoshop class="w-5 h-5" />
    </div>
</template>
// Option API

<script>
    import { Github } from 'iconoir-vue/regular'
    import { AdobePhotoshop  } from 'iconoir-vue/solid'
    export default {
        components : {
            Github,
            AdobePhotoshop,
        } 
    }
</script>

<template>
    <div>
        <Github class="w-5 h-5" />
        <AdobePhotoshop class="w-5 h-5" />
    </div>
</template>

About

A Simple and Definitive Open-Source Icons Vue Library for Iconoir.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published