JSFiddle - React, Tailwind, and code Playground

HTML

<svg viewbox="0 0 100 100">
    <rect x="0" y="0" width="0" height="10" fill="green">
        <animate attributeName="width" from="0" to="100" begin="1s" dur="3s"/>
    </rect>
    <path d="M0,0 L100,100" stroke="black" stroke-width="2" stroke-dasharray="5 5" fill="none" transform="scale(2,2)" vector-effect="non-scaling-stroke">
        <animateTransform attributeName="transform" type="scale" from="2,2" to="4,4" begin="1s" dur="2s" fill="freeze"/>
    </path>
</svg>