2023-07-10 19:54:13 +02:00
|
|
|
<template>
|
|
|
|
<div class="root bg-red-100 dark:bg-red-900 dark:bg-opacity-25 border border-red-200 dark:border-red-500 rounded-lg px-4 py-3 mb-4">
|
2023-07-12 15:51:05 +02:00
|
|
|
<div class="mb-1.5 text-sm font-sans text-red-700 dark:text-red-300">
|
|
|
|
<GIcon :icon="'fire'" class="mr-1" />{{ realLabel }}
|
|
|
|
</div>
|
2023-07-10 19:54:13 +02:00
|
|
|
<slot></slot>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script setup lang="ts">
|
2023-07-12 15:51:05 +02:00
|
|
|
const { t } = useI18n();
|
2023-07-10 19:54:13 +02:00
|
|
|
|
2023-07-12 15:51:05 +02:00
|
|
|
const props = defineProps<{
|
|
|
|
label?: string;
|
|
|
|
}>();
|
|
|
|
|
|
|
|
const realLabel = computed(() => props.label ? props.label : t('_content.danger'));
|
2023-07-10 19:54:13 +02:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
.root > ::v-deep(*:last-child) {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
</style>
|