web/app/components/ui/dialog/DialogHeader.vue
Yoga Pangestu f9172d1431 feat: add dialog component suite for enhanced UI interactions
- Introduced a comprehensive set of dialog components: Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogScrollContent, DialogTitle, and DialogTrigger.
- Each component is designed to facilitate various dialog functionalities, including customizable props and slots for flexible content management.
- Integrated utility functions for class management to ensure consistent styling across components.
2026-07-24 10:53:58 +07:00

18 lines
342 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('flex flex-col gap-2 text-center sm:text-left', props.class)"
>
<slot />
</div>
</template>