21 lines
402 B
Vue
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>
|