Icon 
octagon
Installation 
css
 <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/meistericons@latest/fonts/mni.css">react
npm i meistericons-react --savevue
npm i meistericons-vue --savevue3
npm i meistericons-vue-latest --saveUsage 
css
<i class='mni-octagon'></i>react
import { Octagon } from "meistericons-react";
export default () => {
  return <Octagon />;
};vue
import { Octagon } from "meistericons-vue";
export default {
  name:'Octagon',
  components: {Octagon}
}
</script>
<template>
  <Octagon/>
</template>vue3
<script>
import { Octagon } from "meistericons-vue-latest";
</script>
<template>
    <Octagon/>
</template>