HTML <img>
<img src="https://db.amnt.io/storage/v1/object/public/generated_images/svg-api/UAVchPyIs89u/amnt.svg" alt="Picture Frame" width="48" height="48">
Inline SVG
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200" fill="currentColor" aria-hidden="true"><path fill-rule="evenodd" d="M16 38H184L192 46V154L184 162H16L8 154V46ZM34 58L28 64V136L34 142H166L172 136V64L166 58Z"/><g fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16 38 28 58M184 38 172 58M16 162 28 142M184 162 172 142"/><path d="M20 45H180L185 50V150L180 155H20L15 150V50Z"/><path d="M28 64 34 58M172 64 166 58M28 136 34 142M172 136 166 142"/></g></svg>
CSS background-image
.picture-frame {
background-image: url("https://db.amnt.io/storage/v1/object/public/generated_images/svg-api/UAVchPyIs89u/amnt.svg");
background-size: contain;
}
CSS mask-image (takes the text colour)
.picture-frame {
width: 1.5em; height: 1.5em;
background-color: currentColor;
mask: url("https://db.amnt.io/storage/v1/object/public/generated_images/svg-api/UAVchPyIs89u/amnt.svg") center / contain no-repeat;
}
React
import PictureFrameSvg from "./picture-frame.jsx"; // from the React tab above
<PictureFrameSvg width={48} height={48} />