| 1234567891011121314151617181920 |
- <script setup lang="ts">
- import type { HTMLAttributes } from "vue"
- import { cn } from '@/Packages/Shadcn/Lib/utils'
- const props = defineProps<{
- class?: HTMLAttributes["class"]
- }>()
- </script>
- <template>
- <div
- data-slot="empty"
- :class="cn(
- 'flex min-w-0 flex-1 flex-col items-center justify-center gap-6 text-balance rounded-lg border-dashed p-6 text-center md:p-12',
- props.class,
- )"
- >
- <slot />
- </div>
- </template>
|