items.iconClassString
Defines the icon classes (the span element).
Example
<nav id="breadcrumb"></nav>
<script>
$("#breadcrumb").kendoBreadcrumb({
items: [
{ type: "rootitem", icon: "home", iconClass: "custom-root-icon", showIcon: true, showText: false },
{ type: "item", icon: "folder", text: "Documents", iconClass: "custom-folder-icon", showIcon: true },
{ type: "item", icon: "file", text: "readme.txt", iconClass: "custom-file-icon large", showIcon: true }
]
});
</script>
In this article