import { DeleteIcon, IconButton } from "@saleor/macaw-ui"; import React from "react"; interface DeletableItemProps { onDelete: (id: string) => void; id: string; } const DeletableItem: React.FC = ({ onDelete, id }) => { const handleDelete = () => onDelete(id); return ( ); }; export default DeletableItem;