JSFiddle - React, Tailwind, and code Playground

by Anatol

HTML

<br><br><div class="ico"></div>

CSS

.ico {
    width:60px;
    height:60px;
    margin:50px;
    background:rgba(0,0,0, 0.05);
    border-radius:20px;
}

.ico:before {
    content:'';
    display:block;
    position:relative;
    width:60px;
    height:15px;
    top:30px;
    border-radius:15px;
    box-shadow:0 20px 14px -6px black;
}