statusSVGIconString(default: null)
Overrides the default SVG icon used inside the state badge. When null, a built-in icon is chosen based on the current state.
Example - set a custom status icon
<div id="toolcall"></div>
<script>
$("#toolcall").kendoToolCall({
label: "process_data",
state: "completed",
statusSVGIcon: "star"
});
</script>