How to make paths of a single or multiple SVG's clickable?

Godot Version

4.3

Question

I’d like to make each square of this svg

<svg width="400" height="400" xmlns="http://www.w3.org/2000/svg">
    <path d="M 0 0 H 200 V 200 H 0 Z" fill="#ff0000"/>
    <path d="M 200 0 H 400 V 200 H 200 Z" fill="#00ff00"/>
    <path d="M 0 200 H 200 V 400 H 0 Z" fill="#0000ff"/>
    <path d="M 200 200 H 400 V 400 H 200 Z" fill="#ffff00"/>
</svg>

clickable. I tried it with Polygon2D and CollisionPolygon2D, as the future paths will contain several points.

Nothing has worked so far. Do you know a way to make the areas of a single or multiple SVG’s clickable?