Files
claude-nuxt/app/components/ui/CardHeader.vue
2026-02-22 22:04:22 +09:00

16 lines
254 B
Vue

<script setup lang="ts">
import { cn } from '~/lib/utils'
interface Props {
class?: string
}
const props = defineProps<Props>()
</script>
<template>
<div :class="cn('flex flex-col space-y-1.5 p-6', props.class)">
<slot />
</div>
</template>