veza/apps/web/src/components/ui/dialog/DialogHeader.tsx
senke 8a3da49fbd style(ui): elevate Dialog to SaaS Premium
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-07 15:08:52 +01:00

18 lines
347 B
TypeScript

import { cn } from '@/lib/utils';
import type { DialogHeaderProps } from './types';
export function DialogHeader({
children,
className,
}: DialogHeaderProps) {
return (
<div
className={cn(
'flex items-center justify-between p-8 border-b border-border',
className,
)}
>
{children}
</div>
);
}