Initial Release
I'm excited to announce the first release of @maxle5/mdi-vue3! This package is designed to simplify the integration of Material Design Icons in Vue applications by providing a collection of Vue single-file components that make working with Material Design Icons seamless and efficient.
Features
- Treeshaking: Includes only the icons you use in your application, optimizing performance and reducing bundle size.
- Weekly Updates: Icons are sourced weekly from @mdi/js via automated github actions, providing comprehensive and up-to-date icon coverage.
- Typescript: Includes typescript definitions
Installation
To install the package, use the following command:
npm install @maxle5/mdi-vue
Usage
<script setup>
import { MdiMenu } from '@maxle5/mdi-vue3'
</script>
<template>
<mdi-menu :size="48" />
</template>