css.gg
Version:
Minimalistic Icon library Designed by code.
35 lines (32 loc) • 653 B
CSS
.gg-bowl {
display: block;
position: relative;
transform: scale(var(--ggs,1));
box-sizing: border-box;
width: 20px;
height: 18px
}
.gg-bowl::after,
.gg-bowl::before {
content: "";
display: block;
box-sizing: border-box;
position: absolute
}
.gg-bowl::before {
width: 20px;
height: 12px;
border: 2px solid;
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
bottom: 0
}
.gg-bowl::after {
background: currentColor;
width: 2px;
height: 10px;
border-radius: 4px;
transform: rotate(45deg);
right: 4px;
top: -1px
}