SVGを上下左右に反転させる方法【SVG】



CSSでチョチョイのチョイ。

■左右反転
.svg-icon{
transform: scale(-1,1);
}

■上下反転
.svg-icon{
transform: scale(1,-1);
}