HTML <img>
<img src="https://db.amnt.io/storage/v1/object/public/generated_images/svg-api/k8tL29plRqRD/amnt.svg" alt="Five Lobe Blob" width="48" height="48">
Inline SVG
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200" fill="currentColor"><path d="M100 50C82 25 65 20 53 28C40 36 43 56 55 72C29 76 14 89 16 104C18 120 36 127 56 123C48 147 52 167 66 175C80 183 94 170 100 151C107 172 122 184 136 176C150 168 153 148 144 124C165 128 183 120 185 104C187 89 172 76 145 72C158 55 160 36 147 28C134 20 117 26 100 50Z"/></svg>
CSS background-image
.five-lobe-blob {
background-image: url("https://db.amnt.io/storage/v1/object/public/generated_images/svg-api/k8tL29plRqRD/amnt.svg");
background-size: contain;
}
CSS mask-image (takes the text colour)
.five-lobe-blob {
width: 1.5em; height: 1.5em;
background-color: currentColor;
mask: url("https://db.amnt.io/storage/v1/object/public/generated_images/svg-api/k8tL29plRqRD/amnt.svg") center / contain no-repeat;
}
React
import FiveLobeBlobSvg from "./five-lobe-blob.jsx"; // from the React tab above
<FiveLobeBlobSvg width={48} height={48} />