| 1234567891011121314151617 |
- <script setup lang="ts">
- import type { HTMLAttributes } from "vue"
- import { cn } from '@/Packages/Shadcn/Lib/utils'
- const props = defineProps<{
- class?: HTMLAttributes["class"]
- }>()
- </script>
- <template>
- <h3
- data-slot="card-title"
- :class="cn('leading-none font-semibold', props.class)"
- >
- <slot />
- </h3>
- </template>
|