I need assistance removing the above/below padding from an SVG text element.
Current state:
!
Desired state:
Below is the SVG code snippet
<svg xmlns:svg="http://www.w3.org/2000/svg" id="svg" style="margin-top: 100px;" viewBox="0 0 1656 614" preserveAspectRatio="xMinYMin meet">
<g id="mySVG">
<text x="0" y="0" dx="0" dy="0" fill="#000" style="font-family: DINPro; font-size: 120px;" dominant-baseline="hanging" class="text-0">TEEEEEEXT</text>
</g>
</svg>
There seems to be padding only above and below the text, as shown in the image link provided.
If anyone has a solution to remove this unwanted padding, I would greatly appreciate it.
Thank you in advance.