DaPotatoMan / vue-next-heroicons

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Vue Next HeroIcons

A set of free Hero Icons library made for Vue 3

npm version npm bundle size vulnerabilities npm downloads

Install

# npm
npm install vue-next-heroicons

# yarn
yarn add vue-next-heroicons

Usage

// Outline
import { AcademicCap, Annonation, ... } from 'vue-next-heroicons/outline'

// Solid
import { AcademicCap, Annonation, ... } from 'vue-next-heroicons/solid'

Global usage

import { HeroIcons, Outline } from 'vue-next-heroicons'

HeroIcons.register(Outline, true);
createApp(...).use(HeroIcons).mount(...);

Sizing

You can set a custom size using the size prop.
By default, icon size is 1.5x.


For multiple based sizing, pass the desired multiple followed by an x.

<AcademicCap size="1.5x" />

For pixel based sizing, pass an integer

<AcademicCap :size="24" />

Credits

Hero Icons © Tailwind Labs, Released under the MIT License.

Author

vue-next-heroicons © dapotatoman, Released under the MIT License.

About

License:MIT License


Languages

Language:JavaScript 90.5%Language:Vue 9.5%