@svg-animated-icons/vue
v0.1.2
Published
Animated SVG icon Vue 3 components.
Readme
@svg-animated-icons/vue
Animated SVG icon Vue 3 components.
Install
npm install @svg-animated-icons/vueUsage
<script setup lang="ts">
import { ArrowDownIcon } from "@svg-animated-icons/vue";
</script>
<template>
<ArrowDownIcon />
</template>Each component animates on hover by default. Pass disable-hover to opt out:
<ArrowDownIcon disable-hover />Vue's class fallthrough merges any class you pass onto the root SVG:
<ArrowDownIcon class="text-blue-500" />