HTML <img>
<img src="https://db.amnt.io/storage/v1/object/public/generated_images/svg-api/FpLUsacxDhRY/amnt.svg" alt="Question Answer" 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="M10 14H6l-3 2v-3a3 3 0 0 1-1-2V5a3 3 0 0 1 3-3h6a3 3 0 0 1 3 3v3"/><path d="M14 10h5a3 3 0 0 1 3 3v5a3 3 0 0 1-3 3h-4l-3 2v-3a3 3 0 0 1-1-2v-5a3 3 0 0 1 3-3Z"/><path d="M6.5 6.5a1.5 1.5 0 1 1 2 1.4c-.5.2-.5.5-.5 1.1"/><path d="M8 11h.01"/><path d="m14.5 15.5 2 2 3-3"/></svg>
CSS background-image
.question-answer {
background-image: url("https://db.amnt.io/storage/v1/object/public/generated_images/svg-api/FpLUsacxDhRY/amnt.svg");
background-size: contain;
}
CSS mask-image (takes the text colour)
.question-answer {
width: 1.5em; height: 1.5em;
background-color: currentColor;
mask: url("https://db.amnt.io/storage/v1/object/public/generated_images/svg-api/FpLUsacxDhRY/amnt.svg") center / contain no-repeat;
}
React
import QuestionAnswerSvg from "./question-answer.jsx"; // from the React tab above
<QuestionAnswerSvg width={48} height={48} />