2024-12-03 12:30:10 +01:00
|
|
|
<script setup lang="ts">
|
|
|
|
|
import type { HTMLAttributes } from "vue";
|
2025-06-26 22:39:02 +02:00
|
|
|
import { cn } from "@/lib/utils";
|
2024-12-03 12:30:10 +01:00
|
|
|
|
|
|
|
|
const props = defineProps<{
|
|
|
|
|
class?: HTMLAttributes["class"];
|
|
|
|
|
}>();
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
2025-04-10 13:55:56 +02:00
|
|
|
<div
|
|
|
|
|
data-slot="alert-description"
|
2025-11-21 12:16:00 +01:00
|
|
|
:class="cn('text-muted-foreground col-start-2 grid justify-items-start gap-1 text-sm [&_p]:leading-relaxed', props.class)"
|
2025-04-10 13:55:56 +02:00
|
|
|
>
|
2024-12-03 12:30:10 +01:00
|
|
|
<slot />
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|