Skip to content

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 --save
vue
npm i meistericons-vue --save
vue3
npm i meistericons-vue-latest --save

Usage

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>