sourceSVGIconString(default: null)
Overrides sourceIcon with a specific SVG icon name for source links inside the popover.
Example - set a custom source SVG icon
<span id="citation"></span>
<script>
$("#citation").kendoCitation({
sourceSVGIcon: "pdf",
sources: [{ url: "https://example.com", title: "Example" }]
});
</script>