Icons
Less than 1 minute
Icons
SVG icons based on Material Symbols with Weight 400, Grade 0, Size 24.
Quick Start
<script setup>
import { SearchIcon } from '@bcc-code/icons-vue'
</script>
<template>
<SearchIcon class="h-6 w-6 text-blue-500" />
</template>Installation
npm install @bcc-code/icons-vueUsage
Icons use PascalCase naming with an Icon suffix.
| Icon | Import |
|---|---|
| Search | SearchIcon |
| Home | HomeIcon |
| Menu | MenuIcon |
| Settings | SettingsIcon |
Sizing and Color
Style icons with Tailwind utility classes:
<!-- Small, gray icon -->
<SearchIcon class="h-4 w-4 text-neutral-500" />
<!-- Medium, primary color -->
<SearchIcon class="h-6 w-6 text-primary" />
<!-- Large, custom color -->
<SearchIcon class="h-8 w-8 text-blue-600" />Browse Available Icons
Raw SVG (Non-Vue Projects)
For projects without Vue, use the base icons package:
npm install @bcc-code/iconsImport SVG files directly or copy from Figma.

