Files
web/app/components/snackbar/Error.vue
2026-05-21 08:50:16 +07:00

21 lines
414 B
Vue

<template>
<div class="is-flex is-align-items-center is-gap-1">
<div style="width: 18px; height: 18px">
<Icon
name="material-symbols:cancel-rounded"
:size="18"
class="has-text-danger-80"
/>
</div>
<p
v-html="content"
class="control is-expanded"
></p>
</div>
</template>
<script setup>
const props = defineProps({
content: String,
});
</script>