css.gg
Version:
Minimalistic Icon library Designed by code.
36 lines (33 loc) • 691 B
CSS
.gg-anchor {
box-sizing: border-box;
position: relative;
display: block;
transform: scale(var(--ggs,1));
width: 2px;
height: 14px;
background: currentColor;
border-radius: 8px
}
.gg-anchor::after,
.gg-anchor::before {
content: "";
display: block;
box-sizing: border-box;
position: absolute;
height: 6px;
border: 2px solid
}
.gg-anchor::after {
width: 12px;
border-bottom-left-radius: 20px;
border-bottom-right-radius: 20px;
border-top-color: transparent;
left: -5px;
bottom: 2px
}
.gg-anchor::before {
width: 6px;
border-radius: 8px;
top: -4px;
left: -2px
}