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.
Back
•
In response to @pascalbaljet
How about a targeted CSS rule?
svg > path {
transform: translateX(-1px);
}
•
I was hoping for an HTML attribute, but I will definitely play around with this!