"use client";
import * as React from "react";
import * as DialogPrimitive from "@radix-ui/react-dialog";
import { XIcon } from "lucide-react";
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,
showCloseButton = true,
...props
}) {
return (
{children}
{showCloseButton && (
Schließen
)}
);
}
function DialogHeader({ className, ...props }) {
return (
);
}
function DialogFooter({ className, ...props }) {
return (
);
}
function DialogTitle({ className, ...props }) {
return (
);
}
function DialogDescription({ className, ...props }) {
return (
);
}
export {
Dialog,
DialogClose,
DialogContent,
DialogDescription,
DialogFooter,
DialogHeader,
DialogOverlay,
DialogPortal,
DialogTitle,
DialogTrigger,
};