SheetHeader.vue 336 B

123456789101112131415
  1. <script setup lang="ts">
  2. import type { HTMLAttributes } from "vue"
  3. import { cn } from '@/Packages/Shadcn/Lib/utils'
  4. const props = defineProps<{ class?: HTMLAttributes["class"] }>()
  5. </script>
  6. <template>
  7. <div
  8. data-slot="sheet-header"
  9. :class="cn('flex flex-col gap-1.5 p-4', props.class)"
  10. >
  11. <slot />
  12. </div>
  13. </template>