Teren-app/resources/js/Components/ui/alert/AlertDescription.vue
2026-01-02 12:32:20 +01:00

17 lines
255 B
Vue

<script setup>
import { cn } from "@/lib/utils";
const props = defineProps({
class: {
type: String,
default: "",
},
});
</script>
<template>
<div :class="cn('text-sm [&_p]:leading-relaxed', props.class)">
<slot />
</div>
</template>