Hello, I am new to working with SVG files. I have a set of icons created using SVG and I am attempting to use the <use>
tag in order to display a specific part of an SVG file. However, I seem to be encountering some issues and I am unable to identify where I might be going wrong. Below is the code snippet that I have been working on. I also have a reference link to a JSFiddle for further context. The full SVG image renders correctly, but my attempts to render individual parts have been unsuccessful. Any guidance or assistance would be greatly appreciated.
<svg width="303px" height="30px" viewBox="0 0 303 30" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Pivot" transform="translate(253.232000, 6.247500)">
<!-- SVG Path Data goes here -->
</g>
<g id="Filter" transform="translate(232.407000, 6.247500)">
<!-- More SVG Elements -->
</g>
<g id="Sort" transform="translate(206.167500, 1.666000)">
<!-- Even more SVG Elements -->
</g>
</svg>
<svg>
<use xlink:href="Pivot"></use>
</svg>