thoughts.svgIconString
The name of the SVG icon displayed for the thought item.
Example - set an icon on a thought
<div id="chain"></div>
<script>
$("#chain").kendoChainOfThought({
label: "Running",
expanded: true,
thoughts: [
{ label: "Searching", svgIcon: "search" }
]
});
</script>