DEVELOPMENT.md 434 B

Development

Icons

All icons from Iconify's MDI set can be used with unplugin-icons.

Icons follow the pattern: ~icons/mdi/{icon-name} where {icon-name} matches the MDI icon name (e.g., mdi/home, mdi/account-circle).

<script setup>
import IconSync from '~icons/mdi/sync';
</script>

<template>
  <IconSync />
</template>