import { FC } from "react"; import { Copy } from "lucide-react"; import { Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle, DialogTrigger, } from "./dialog"; export const PreviewImagePopup: FC = ({ url, className, children }) => { return ( {children} Preview Anyone who has this link will be able to view this.
); };