Skip to content

Icon

star-wand

Installation

css
 <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/meistericons@latest/fonts/mni.css">
react
npm i meistericons-react --save
vue
npm i meistericons-vue --save
vue3
npm i meistericons-vue-latest --save

Usage

css
<i class='mni-star-wand'></i>
react
import { StarWand } from "meistericons-react";

export default () => {
  return <StarWand />;
};
vue
import { StarWand } from "meistericons-vue";

export default {
  name:'StarWand',
  components: {StarWand}
}
</script>

<template>
  <StarWand/>
</template>
vue3
<script>
import { StarWand } from "meistericons-vue-latest";
</script>

<template>
    <StarWand/>
</template>