import * as DialogPrimitive from "@radix-ui/react-dialog"; import { X } from "lucide-react"; import { forwardRef, type ComponentPropsWithoutRef, type ElementRef } from "react"; import { cn } from "@/lib/utils"; const Dialog = DialogPrimitive.Root; const DialogTrigger = DialogPrimitive.Trigger; const DialogPortal = DialogPrimitive.Portal; const DialogClose = DialogPrimitive.Close; const DialogOverlay = forwardRef< ElementRef, ComponentPropsWithoutRef >(({ className, ...props }, ref) => ( )); DialogOverlay.displayName = DialogPrimitive.Overlay.displayName; const DialogContent = forwardRef< ElementRef, ComponentPropsWithoutRef >(({ className, children, ...props }, ref) => ( {children} )); DialogContent.displayName = DialogPrimitive.Content.displayName; function DialogHeader({ className, ...props }: ComponentPropsWithoutRef<"div">) { return
; } function DialogBody({ className, ...props }: ComponentPropsWithoutRef<"div">) { return
; } const DialogTitle = forwardRef< ElementRef, ComponentPropsWithoutRef >(({ className, ...props }, ref) => ( )); DialogTitle.displayName = DialogPrimitive.Title.displayName; const DialogDescription = forwardRef< ElementRef, ComponentPropsWithoutRef >(({ className, ...props }, ref) => ( )); DialogDescription.displayName = DialogPrimitive.Description.displayName; export { Dialog, DialogBody, DialogClose, DialogContent, DialogDescription, DialogHeader, DialogTitle, DialogTrigger, };