JSFiddle - React, Tailwind, and code Playground
by dm89
HTML
<svg id="petaldoc" width="1000" height="500" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<image id="flip" href="http://www.cpl.uh.edu/users/dinesh/apple_appstore.png" width=100>
</image>
</svg>
JavaScript
var img = document.getElementById("flip");
//img.setAttributeNS(null, 'x', '100');
//img.setAttributeNS(null, 'y', '100');
img.setAttributeNS(null, 'transform', 'translate(100,0) scale(-1,1)');