| 1234567891011121314151617 |
- <script setup lang="ts">
- import type { HTMLAttributes } from "vue"
- import { cn } from '@/Packages/Shadcn/Lib/utils'
- const props = defineProps<{
- class?: HTMLAttributes["class"]
- }>()
- </script>
- <template>
- <div
- data-slot="alert-description"
- :class="cn('text-muted-foreground col-start-2 grid justify-items-start gap-1 text-sm [&_p]:leading-relaxed', props.class)"
- >
- <slot />
- </div>
- </template>
|