JSFiddle - React, Tailwind, and code Playground

HTML

<div></div>

CSS

div {
    width:200px;
    height:200px;
    background:black;
    margin-left:-150px;
    -webkit-transition: all 0.5s cubic-bezier(.63,.01,.64,1.29);
    transition: all 0.5s cubic-bezier(.63,.01,.64,1.29);
}
div:hover {
    margin-left:0;
}
span { color:white; vertical-align:bottom;}