animated-line-icons
v0.1.0
Published
402 animated SVG icon components for Vue 3 with motion-v animations
Maintainers
Readme
icons-vue
Vue 3 single-file component versions of the animated icons from icons-react.
Structure
src/icons/*.vue: generated Vue icon componentssrc/index.ts: barrel exportssrc/runtime.ts: shared Motion/Vue runtime helpersscripts/generate-from-react.mjs: regenerates the Vue components from the React sources
Usage
import { RotateCWIcon, WifiLowIcon } from "./src";<template>
<RotateCWIcon :size="32" class="text-emerald-500" />
</template>Regenerate
cd icons-vue
npm run generateNotes
- Components are generated from the React source in
../icons-react/icons. - The generated
.vuefiles use Vue SFCs with TSX render functions. - Runtime animation behavior is adapted to
motion-v.
