JSFiddle - React, Tailwind, and code Playground

HTML

<a class=""></a>

CSS

a {
	position:fixed;
	right:5px;
    width: 5px;
    height: 25px;
    background-color: #81d742;
    transition: width 2s;
}

a:hover {
    width: 230px;
}