JSFiddle - React, Tailwind, and code Playground

HTML

<input type="image" src="http://placehold.it/50x50" onclick="edit(this)" />

JavaScript

x=0;
function edit(javad) {
    if (x == 1) {
        javad.src = "http://placehold.it/50x50";
        x = 0;
    } else {
        javad.src = "http://placehold.it/100x100";
        x = 1;
    }
}