JSFiddle - React, Tailwind, and code Playground
HTML
<html>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<body>
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="150" viewBox="200 150" >
<g>
<rect transform="translate(40,80)" x="-25" y="-25" width="50" height="50" stroke="RED" fill="RED" cursor="pointer">
</rect>
<animateTransform attributeName="transform" attributeType="XML" type="scale" from="1" to="1.15" repeatCount="1" begin="mousedown+0.2s" dur="0.2s" fill="freeze"></animateTransform>
<animateTransform attributeName="transform" attributeType="XML" type="scale" from="1.15" to="1" repeatCount="1" begin="mouseup+0.4s" dur="0.2s" fill="freeze"></animateTransform>
</g>
</svg>
</body>
</html>