import * as DialogPrimitive from '@radix-ui/react-dialog';
import { motion } from 'framer-motion';
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;
function DialogOverlay({ className, ref, ...props }) {
return (
);
}
function DialogContent({ className, children, ref, ...props }) {
return (
{children}
Close
);
}
function DialogHeader({ className, ...props }) {
return (
);
}
function DialogFooter({ className, ...props }) {
return (
);
}
function DialogTitle({ className, ref, ...props }) {
return (
);
}
function DialogDescription({ className, ref, ...props }) {
return (
);
}
export {
Dialog,
DialogTrigger,
DialogPortal,
DialogOverlay,
DialogClose,
DialogContent,
DialogHeader,
DialogFooter,
DialogTitle,
DialogDescription,
};