| 1234567891011121314151617181920 |
- <script setup lang="ts">
- import type { HTMLAttributes } from "vue"
- import { cn } from '@/Packages/Shadcn/Lib/utils'
- defineProps<{
- class?: HTMLAttributes["class"]
- }>()
- </script>
- <template>
- <div
- data-slot="empty-header"
- :class="cn(
- 'flex max-w-sm flex-col items-center gap-2 text-center',
- $attrs.class ?? '',
- )"
- >
- <slot />
- </div>
- </template>
|