JSFiddle - React, Tailwind, and code Playground

by mannemvamsi

HTML

<div class="hamburger">
    <div class="stripe"></div>
    <div class="stripe"></div>
    <div class="stripe"></div>
</div>

CSS

.hamburger {
    width:35px;
    background-color:#ff6600;
    padding:3px;
}
.stripe {
    width:100%;
    height:5px;
    background-color:#f5f5f5;
    margin-top:2px;
    margin-bottom:2px;
    border-radius:1px;
}