Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pepsighan/mdue
5,400+ Material Design Icons for Vue 3 from the Community
https://github.com/pepsighan/mdue
icons material-design vue vue3
Last synced: about 2 months ago
JSON representation
5,400+ Material Design Icons for Vue 3 from the Community
- Host: GitHub
- URL: https://github.com/pepsighan/mdue
- Owner: pepsighan
- License: mit
- Created: 2020-08-07T05:14:52.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-04-23T20:39:33.000Z (over 2 years ago)
- Last Synced: 2024-10-14T06:40:33.970Z (2 months ago)
- Topics: icons, material-design, vue, vue3
- Language: TypeScript
- Homepage: https://materialdesignicons.com
- Size: 1.22 MB
- Stars: 28
- Watchers: 3
- Forks: 4
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# mdue
![npm version](https://badgen.net/npm/v/mdue) ![types](https://badgen.net/npm/types/mdue) ![license](https://badgen.net/npm/license/mdue)
Material Design Icons for Vue 3. This library has over 5,400+ icons thanks to the amazing people at [Material Design Icons](https://github.com/Templarian/MaterialDesign). The icons were generated as Vue components using their library `@mdi/util`.
## Features
- SVG based icons.
- Supports Vue 3.
- Treeshaking supported.
- Supports typescript.
- Stylable using CSS (inherits color and font size).## Installation
```sh
$ npm install mdue --save
# or
$ yarn add mdue
```## Example
Using the icons from `mdue` is very easy. Just import the icons into your app and use them. Only the icons that you use will be bundled with the app.
```html
import { AbTesting } from 'mdue';
export default {
name: 'App',
components: {
AbTesting,
},
};```
A more full-fledged example in the [examples](./example) directory. You may clone the repo and try the icons out.
## Contributing
If you want to contribute to this project, you may easily create issues and send PRs. Please take note that your code contributions will be applicable under MIT license unless specified otherwise.