Skip to content

Getting Started

✨ Features

  • Tree-shaking. Only the icons you use will be included in your bundle
  • Easy to use. No need for import statement if used through resolvers with vite.
  • 60,000+ icons from popular icon sets
  • Stylable. You can change color and size of the icons
  • Built for vue3
  • Optimized with SVGO

💽 Installation

PNPM

bash
pnpm add @kalimahapps/vue-icons

NPM

bash
npm install @kalimahapps/vue-icons

🔧 Usage

vue
<template>
	<div class="button">
    	<BsCalendar4Range /> Select Date
	</div>
</template>

<script setup>
import { BsCalendar4Range } from '@kalimahapps/vue-icons';
</script>