.gg-piano {
    box-sizing: border-box;
    position: relative;
    display: block;
    transform: scale(var(--ggs,1));
    width: 23px;
    height: 18px;
    border: 2px solid;
    border-radius: 2px
}

.gg-piano::after,
.gg-piano::before {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    height: 10px;
    background: currentColor;
    box-shadow:
        5px 0 0,
        10px 0 0
}

.gg-piano::before {
    top: -2px;
    width: 3px;
    left: 3px
}

.gg-piano::after {
    width: 1px;
    bottom: -2px;
    left: 4px
}