frontend/components/ui/card/CardDescription.vue

15 lines
292 B
Vue
Raw Normal View History

2024-11-30 02:19:32 +01:00
<script setup lang="ts">
import { cn } from "@/lib/utils";
import type { HTMLAttributes } from "vue";
const props = defineProps<{
class?: HTMLAttributes["class"];
}>();
</script>
<template>
<p :class="cn('text-sm text-muted-foreground', props.class)">
<slot />
</p>
</template>