Hello Long,
Thank you, I did try that already. What I am seeing happening is, the SVG is 120x120, but when it outputs that file it is given the height and width of "0" -- therefore you cannot see the SVG.
Here is a video showing what happens: https://youtu.be/t2CYNcb5lto
Also, I tried this after the video and it works. I can do that, but I am wondering why the code snippet is not outputting or at least an option to apply a custom width/height.
Original Twig snippet
{% for item in post.icon %}
<img src="{{ item.full.url }}" width="{{ item.full.width }}" height="{{ item.full.height }}" alt="{{ item.full.alt }}">
{% endfor %}
Work Around snippet
{% for item in post.icon %}
<img src="{{ item.full.url }}" width="42" height="42" alt="{{ item.full.alt }}">
{% endfor %}
Any thoughts?
Cheers