JSFiddle - React, Tailwind, and code Playground

HTML

<style>
.test {width:200px;height:100px;overflow:hidden;animation:test 2s linear;}
.test img {width:200px;height:100px;display:block;}
@keyframes test {
  0% {width:0px;}
  100% {width:200px}
}
</style>
<div class="test">
  <img src="" alt="Lorem ipsum dolor sit amet, consectetur adipisicing elit" style="background:lavender;">
</div>