I have this path that I want to rotate 90 degrees. Not just rotate the whole element, I want to change the actual path to get an up arrow as well as a down arrow. Is there a path transform tool out there or some other easy way to do it?
<svg xmlns="http://www.w3.org/2000/svg">
<path d="M8.578 16.359l4.594-4.594-4.594-4.594 1.406-1.406 6 6-6 6z"></path>
</svg>
I actually found an svg library that had the exact shapes that I'm looking for (see below). If anyone can tell me how I would have reached that result on my own that would be great. Thanks!
<svg xmlns="http://www.w3.org/2000/svg">
<path d="M7.406 7.828l4.594 4.594 4.594-4.594 1.406 1.406-6 6-6-6z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg">
<path d="M7.406 15.422l-1.406-1.406 6-6 6 6-1.406 1.406-4.594-4.594z"></path>
</svg>