import classNames from "classnames"; import { Paintbrush, XCircle } from "lucide-react"; export const SelectedRedesignUrl = ({ url, isAiWorking = false, onDelete, }: { url: string; isAiWorking: boolean; onDelete?: () => void; }) => { return (
{ if (!isAiWorking && onDelete) { onDelete(); } }} >

{url}

); };