18 lines
326 B
Vue
18 lines
326 B
Vue
<script setup lang="ts">
|
|
import type { HTMLAttributes } from "vue"
|
|
import { cn } from "@/lib/utils"
|
|
|
|
const props = defineProps<{
|
|
class?: HTMLAttributes["class"]
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<p
|
|
data-slot="card-description"
|
|
:class="cn('text-muted-foreground text-sm', props.class)"
|
|
>
|
|
<slot />
|
|
</p>
|
|
</template>
|