There seems to be an issue that I am encountering. I have incorporated an SVG in my HTML page, but it doesn't seem to be visible. The background of the page has a gradient effect applied to it.
<div id="logo">
<svg class="icon icon-outline"><use href="#icon-name" fill="#ffffff" xlink:href="ic_fingerprint_48px.svg"/></svg>
<h1>webSecure</h1>
</div>
.icon {
fill: white;
width: 48px;
height: 48px;
}
I am scratching my head trying to figure out where I might have gone wrong. Any suggestions or ideas?