css.gg
Version:
Minimalistic Icon library Designed by code.
37 lines (34 loc) • 786 B
CSS
.gg-arrow-long-left-l {
box-sizing: border-box;
position: relative;
display: block;
transform: scale(var(--ggs,1));
border-top: 2px solid transparent;
border-bottom: 2px solid transparent;
box-shadow: inset 0 0 0 2px;
width: 24px;
height: 6px
}
.gg-arrow-long-left-l::after,
.gg-arrow-long-left-l::before {
content: "";
display: block;
box-sizing: border-box;
position: absolute
}
.gg-arrow-long-left-l::after {
width: 6px;
height: 6px;
border-bottom: 2px solid;
border-left: 2px solid;
transform: rotate(45deg);
left: 0;
bottom: -2px
}
.gg-arrow-long-left-l::before {
width: 2px;
height: 6px;
background: currentColor;
right: -1px;
bottom: -2px
}