import { Dialog as DialogPrimitive } from '@base-ui/react/dialog'; import { XIcon } from '@phosphor-icons/react'; import type * as React from 'react'; import { Button } from '@/components/ui/button'; import { cn } from '@/lib/utils'; function Dialog({ ...props }: React.ComponentProps) { return ; } function DialogPortal({ ...props }: React.ComponentProps) { return ; } function DialogOverlay({ className, ...props }: React.ComponentProps) { return ( ); } function DialogContent({ className, children, showCloseButton = true, ...props }: React.ComponentProps & { showCloseButton?: boolean; }) { return ( {children} {showCloseButton && ( } > Close )} ); } function DialogHeader({ className, ...props }: React.ComponentProps<'div'>) { return
; } function DialogFooter({ className, ...props }: React.ComponentProps<'div'>) { return
; } function DialogTitle({ className, ...props }: React.ComponentProps) { return ( ); } function DialogDescription({ className, ...props }: React.ComponentProps) { return ( ); } function DialogClose({ ...props }: React.ComponentProps) { return ; } export { Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle };