Preview:
if (clip.ContainsFileDropList()) {
    var clipFileList = clip.GetFileDropList();
    if (clipFileList[0].includes(".svg")) {
        var svgFilePath = clipFileList[0];
        var base64Img = clr.System.Convert.ToBase64String(clr.System.IO.File.ReadAllBytes(svgFilePath));
		var imgHTML = "<img alt='Clipped Image' src='" + "data:image/svg+xml;base64," + base64Img + "' />";
		clip.SetText(imgHTML);
    }    
}
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter