import { XCircleIcon } from "lucide-react"; import Image from "next/image"; import { cn } from "./lib/utils"; export default function UploadImagePreview({ url, onRemove, }: { url: string; onRemove: () => void; }) { return (
Uploaded image
); }