Back

Is there a way to align the inner path of an SVG to the left or right? Preferably without changing the SVG/path itself, as I'm using Heroicons.

image

1

117

How about a targeted CSS rule?

svg > path {
transform: translateX(-1px);
}

1

114