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