JSFiddle - React, Tailwind, and code Playground
by bakhshi
JavaScript
document.addEventListener("click", (e) => {
const target = e.target;
if (target instanceof SVGSVGElement) {
document.querySelectorAll(".selected").forEach((e) => {
target.classList.remove("selected")
})
} else {
target.classList.toggle("selected");
}
})