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

; } function DialogDescription({ className, ...props }: React.HTMLAttributes) { return

; } export { Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle, DialogTrigger };