问题 I am making circle menu, so I use SVG to create a circle, and now I want to show a link with some image inside of part of the circle. How i can do it? My code - render(){ return( <svg id={"menuLevel" + index} width={200} height={200}> <path fill="white" stroke="rgba(0,0,0,0.2)" strokeWidth="2" d={"M"+width+","+width+" L"+previousX+", "+previousY+" A"+width+","+width+" 0 0,0 "+x+", "+y+" z"}></path> </svg> ) } I tried something like this - <path fill="white" stroke="rgba(0,0,0,0.2)"