items.iconString(default: null)
Defines the name for an existing icon in a Kendo UI theme or SVG content. The icon is rendered inside the button.
Example - set an icon for an item
<div id="segmentedControl"></div>
<script>
$("#segmentedControl").kendoSegmentedControl({
items: [
{ text: "Settings", icon: "gear", value: "settings" },
{ text: "Home", icon: "home", value: "home" }
]
});
</script>