SVG is inline by default.
Add display: block
to it and then margin: auto
will work as expected.
Or depending on your layout you may want to keep SVG inline and set text-align: center
on a parent element instead.
As another alternative, you can center SVG using flex or grid layouts on the parent element.