I'm currently working on developing a basic web icon system using SVG sprites. However, I have encountered a spacing issue in my code around one specific icon (between the Smash Magazine icon and the red border). I am trying to figure out how to remove this extra space. The icon is rotated, and despite using the `viewBox`, I haven't been successful in resolving it. Do you have any suggestions for potential transformations that could help fix this?
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Svg Icon System</title>
<style>
.icon {
/* width: 3em;
height: 3em; */
fill: currentColor;
stroke: black;
stroke-width: 2px;
background-color: yellow;
}
</style>
</head>
<body>
<svg width="0" height="0">
<defs>
<g id="icon-linkedin">
<path
d="M80.667,14H19.315C16.381,14,14,16.325,14,19.188v61.617C14,83.672,16.381,86,19.315,86h61.352
C83.603,86,86,83.672,86,80.805V19.188C86,16.325,83.603,14,80.667,14z M35.354,75.354H24.67V40.995h10.684V75.354z M30.012,36.297
c-3.423,0-6.19-2.774-6.19-6.194c0-3.415,2.767-6.189,6.19-6.189c3.415,0,6.189,2.774,6.189,6.189
C36.201,33.523,33.427,36.297,30.012,36.297z M75.35,75.354H64.683V58.646c0-3.986-0.078-9.111-5.551-9.111
c-5.558,0-6.405,4.341-6.405,8.822v16.998H42.052V40.995h10.245v4.692h0.146c1.426-2.7,4.91-5.549,10.106-5.549
c10.806,0,12.802,7.114,12.802,16.369V75.354z"
/>
</g>
<g id="icon-smash-mag">
<path
fill="#231F20"
d="M45.718,55.325c-3.727-1.408-7.229-3.226-10.202-5.401c-0.077-0.056-0.157-0.111-0.233-0.168
c-0.433-0.322-0.851-0.654-1.259-0.991c-0.107-0.088-0.211-0.178-0.316-0.267
...
</defs>
</svg>
<!-- viewBox="0 0 100 100" -->
<!-- prettier-ignore -->
<svg class="icon" width="50" height="50" viewBox="16 16 68 68" style="border: 1px solid red">
<title>Icona di Linkedin</title>
<use xlink:href="#icon-linkedin"></use>
</svg>
<svg class="icon" width="50" height="50" viewBox="16 16 68 68" style="border: 1px solid red">
<title>Icona di Smah Magazine</title>
<use xlink:href="#icon-smash-mag"></use>
</svg>
</body>
</html>