items.iconClassString(default: null)
If set, value will be appended to the icon's element class attribute.
Example - set a custom icon class
<div id="segmentedControl"></div>
<script>
$("#segmentedControl").kendoSegmentedControl({
items: [
{ text: "Settings", icon: "gear", value: "settings", iconClass: "customClass" },
{ text: "Home", icon: "home", value: "home" }
]
});
</script>