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-title"
|
2025-04-10 14:48:03 +02:00
|
|
|
:class="cn('line-clamp-1 min-h-4 font-medium tracking-tight', props.class)"
|
2025-04-10 13:55:56 +02:00
|
|
|
>
|
2024-12-03 12:30:10 +01:00
|
|
|
<slot />
|
2025-04-10 13:55:56 +02:00
|
|
|
</div>
|
2024-12-03 12:30:10 +01:00
|
|
|
</template>
|