1.1.0 • Published 2 years ago

@icon-garden/vue-next v1.1.0

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

The simplest SVG icon library, the reference comes from IconPark. The difference is that this library only supports single-color icons, but it may be more suitable for icons in your project

Install

yarn add @icon-garden/vue-next

# use npm
npm install @icon-garden/vue-next -S

Usage

<template>
  <AddBaseFilled color="#b0b1b8" size="20"  />
</template>
<script>
import { AddBaseFilled } from '@icon-garden/vue-next';

export default {
    components: {
        AddBaseFilled
    }
}
</script>

you can also install icons globally.

import { install } from '@icon-garden/vue-next';
import { createApp } from 'vue';

const app = createApp({});

// Install
install(app);
0.1.0

2 years ago

1.1.0

2 years ago

1.0.0

2 years ago

0.0.0

2 years ago