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

16 lines
278 B
Vue

<script setup lang="ts">
import { cn } from '~/lib/utils'
interface Props {
class?: string
}
const props = defineProps<Props>()
</script>
<template>
<div :class="cn('rounded-xl border bg-card text-card-foreground shadow', props.class)">
<slot />
</div>
</template>