HTML <img>
<img src="https://db.amnt.io/storage/v1/object/public/generated_images/svg-api/83ggahu2h2-H/amnt.svg" alt="Track Changes" width="48" height="48">
Inline SVG
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 10a8 8 0 0 1 13-5"/><path d="m17 2 1 3-3 1"/><path d="M20 14a8 8 0 0 1-13 5"/><path d="m7 22-1-3 3-1"/><path d="m9 15 1-3 4-4 2 2-4 4-3 1Z"/></svg>
CSS background-image
.track-changes {
background-image: url("https://db.amnt.io/storage/v1/object/public/generated_images/svg-api/83ggahu2h2-H/amnt.svg");
background-size: contain;
}
CSS mask-image (takes the text colour)
.track-changes {
width: 1.5em; height: 1.5em;
background-color: currentColor;
mask: url("https://db.amnt.io/storage/v1/object/public/generated_images/svg-api/83ggahu2h2-H/amnt.svg") center / contain no-repeat;
}
React
import TrackChangesSvg from "./track-changes.jsx"; // from the React tab above
<TrackChangesSvg width={48} height={48} />