HTML <img>
<img src="https://db.amnt.io/storage/v1/object/public/generated_images/svg-api/95komAEJWd3d/amnt.svg" alt="Contact Support" 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 11V9a8 8 0 0 1 16 0v2"/><path d="M4 11h2v4H4a2 2 0 0 1-2-2 2 2 0 0 1 2-2Zm16 0h-2v4h2a2 2 0 0 0 2-2 2 2 0 0 0-2-2Z"/><path d="M18 15v1a2 2 0 0 1-2 2h-2"/><path d="M8 10v2a4 4 0 0 0 8 0v-2"/><path d="M5 21a7 7 0 0 1 14 0"/></svg>
CSS background-image
.contact-support {
background-image: url("https://db.amnt.io/storage/v1/object/public/generated_images/svg-api/95komAEJWd3d/amnt.svg");
background-size: contain;
}
CSS mask-image (takes the text colour)
.contact-support {
width: 1.5em; height: 1.5em;
background-color: currentColor;
mask: url("https://db.amnt.io/storage/v1/object/public/generated_images/svg-api/95komAEJWd3d/amnt.svg") center / contain no-repeat;
}
React
import ContactSupportSvg from "./contact-support.jsx"; // from the React tab above
<ContactSupportSvg width={48} height={48} />