css.gg
Version:
Minimalistic Icon library Designed by code.
35 lines (32 loc) • 688 B
CSS
.gg-move-right {
box-sizing: border-box;
position: relative;
display: block;
transform: scale(var(--ggs,1));
width: 8px;
height: 10px;
border-top: 2px solid;
border-bottom: 2px solid
}
.gg-move-right::after,
.gg-move-right::before {
content: "";
display: block;
box-sizing: border-box;
position: absolute
}
.gg-move-right::before {
background: currentColor;
left: 0;
top: 2px;
width: 12px;
height: 2px
}
.gg-move-right::after {
width: 0;
height: 0;
border-top: 3px solid transparent;
border-bottom: 3px solid transparent;
border-left: 5px solid;
right: -7px
}