How can I replace the icon in the top left corner of the task node with my own SVG icon? What I can do now is to add icons in the form of images through the CustomsRenderer.jsCustomRenderer.
const img = svgCreate("image", {
x: 2,
y: 0,
width: 25,
height: 25,
href: 'http://test.png'
});
svgAppend(parentNode, img);
But that’s not what I want. What I really need is to replace the original icon and add a new SVG icon.