Files
OCS_service/app/components/ui/dialog/DialogHeader.vue
T
2026-05-22 16:27:35 +08:00

18 lines
319 B
Vue

<script setup lang="ts">
import type { HTMLAttributes } from 'vue'
import { cn } from '@/lib/utils'
const props = defineProps<{
class?: HTMLAttributes['class']
}>()
</script>
<template>
<div
data-slot="dialog-header"
:class="cn('gap-1.5 flex flex-col', props.class)"
>
<slot />
</div>
</template>