Files
web/app/components/snackbar/Error.vue
2026-06-05 08:47:22 +07:00

21 lines
401 B
Vue

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