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