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

16 lines
264 B
Vue

<script setup lang="ts">
import { cn } from '~/lib/utils'
interface Props {
class?: string
}
const props = defineProps<Props>()
</script>
<template>
<h3 :class="cn('font-semibold leading-none tracking-tight', props.class)">
<slot />
</h3>
</template>