Icon 
sound
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-sound'></i>react
import { Sound } from "meistericons-react";
export default () => {
  return <Sound />;
};vue
import { Sound } from "meistericons-vue";
export default {
  name:'Sound',
  components: {Sound}
}
</script>
<template>
  <Sound/>
</template>vue3
<script>
import { Sound } from "meistericons-vue-latest";
</script>
<template>
    <Sound/>
</template>