"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 = DialogPrimitive.Overlay.displayName; const DialogContent = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(({ className, children, ...props }, ref) => ( {children} )); DialogContent.displayName = DialogPrimitive.Content.displayName; function DialogHeader({ className, ...props }: React.HTMLAttributes) { return (
); } function DialogFooter({ className, ...props }: React.HTMLAttributes) { return (
); } function DialogTitle({ className, ...props }: React.ComponentPropsWithoutRef) { return ( ); } function DialogDescription({ className, ...props }: React.ComponentPropsWithoutRef) { return ( ); } export { Dialog, DialogTrigger, DialogContent, DialogHeader, DialogFooter, DialogTitle, DialogDescription, DialogClose, };