Skip to content

Icon

notesB

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-notesB'></i>
react
import { NotesB } from "meistericons-react";

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

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

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

<template>
    <NotesB/>
</template>