HTML <img>
<img src="https://db.amnt.io/storage/v1/object/public/generated_images/svg-api/J6CmnSbbGSIQ/amnt.svg" alt="Volunteer Activism" 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="M12 10.5 9.2 7.8a2 2 0 0 1 2.8-2.8l.1.1.1-.1A2 2 0 0 1 15 7.8L12 10.5Z"/><path d="M2 14h3l2.5-2h4a2 2 0 0 1 2 2H10"/><path d="m13.5 14 4.5-2a2 2 0 0 1 2.5 3l-6.5 4H8l-3-2H2"/></svg>
CSS background-image
.volunteer-activism {
background-image: url("https://db.amnt.io/storage/v1/object/public/generated_images/svg-api/J6CmnSbbGSIQ/amnt.svg");
background-size: contain;
}
CSS mask-image (takes the text colour)
.volunteer-activism {
width: 1.5em; height: 1.5em;
background-color: currentColor;
mask: url("https://db.amnt.io/storage/v1/object/public/generated_images/svg-api/J6CmnSbbGSIQ/amnt.svg") center / contain no-repeat;
}
React
import VolunteerActivismSvg from "./volunteer-activism.jsx"; // from the React tab above
<VolunteerActivismSvg width={48} height={48} />