HTML <img>
<img src="https://db.amnt.io/storage/v1/object/public/generated_images/svg-api/-bnAI4P4VVCp/amnt.svg" alt="Cloud Download" width="48" height="48">
Inline SVG
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M8 17H6a4 4 0 0 1-.6-8A7 7 0 0 1 19 10a3.5 3.5 0 0 1-.5 7H16"/><path d="M12 12v9"/><path d="m8.5 17.5 3.5 3.5 3.5-3.5"/></svg>
CSS background-image
.cloud-download {
background-image: url("https://db.amnt.io/storage/v1/object/public/generated_images/svg-api/-bnAI4P4VVCp/amnt.svg");
background-size: contain;
}
CSS mask-image (takes the text colour)
.cloud-download {
width: 1.5em; height: 1.5em;
background-color: currentColor;
mask: url("https://db.amnt.io/storage/v1/object/public/generated_images/svg-api/-bnAI4P4VVCp/amnt.svg") center / contain no-repeat;
}
React
import CloudDownloadSvg from "./cloud-download.jsx"; // from the React tab above
<CloudDownloadSvg width={48} height={48} />