HTML <img>
<img src="https://db.amnt.io/storage/v1/object/public/generated_images/svg-api/vinTKEh3BzoI/amnt.svg" alt="Crypto Wallet" 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="M6 8a3 3 0 0 1 6 0"/><path d="M4 8h16a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-9a2 2 0 0 1 2-2Z"/><path d="M2 11h18a2 2 0 0 1 2 2v4h-5a2 2 0 0 1 0-4h5"/><path d="M17 15h.01"/></svg>
CSS background-image
.crypto-wallet {
background-image: url("https://db.amnt.io/storage/v1/object/public/generated_images/svg-api/vinTKEh3BzoI/amnt.svg");
background-size: contain;
}
CSS mask-image (takes the text colour)
.crypto-wallet {
width: 1.5em; height: 1.5em;
background-color: currentColor;
mask: url("https://db.amnt.io/storage/v1/object/public/generated_images/svg-api/vinTKEh3BzoI/amnt.svg") center / contain no-repeat;
}
React
import CryptoWalletSvg from "./crypto-wallet.jsx"; // from the React tab above
<CryptoWalletSvg width={48} height={48} />