Files
web/app/components/snackbar/Success.vue
2026-05-25 17:12:18 +07:00

21 lines
402 B
Vue

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