import * as DialogPrimitive from '@radix-ui/react-dialog';
import { cn } from '@/lib/utils';
function Dialog({ ...props }) {
return ;
}
function DialogTrigger({ ...props }) {
return ;
}
function DialogPortal({ ...props }) {
return ;
}
function DialogClose({ ...props }) {
return ;
}
function DialogOverlay({ className, ...props }) {
return (
);
}
function DialogContent({ className, children, ...props }) {
return (
{children}
);
}
function DialogHeader({ className, ...props }) {
return (
);
}
function DialogFooter({ className, ...props }) {
return (
);
}
function DialogTitle({ className, ...props }) {
return (
);
}
function DialogDescription({ className, ...props }) {
return (
);
}
export {
Dialog,
DialogPortal,
DialogOverlay,
DialogClose,
DialogTrigger,
DialogContent,
DialogHeader,
DialogFooter,
DialogTitle,
DialogDescription,
};