items.iconString
Defines the name for an existing icon in a Kendo UI theme.
See web font icons help article for more details on Kendo UI icons.
Example - configure item icons
<div id="drawer">
<div>Content area content.</div>
</div>
<script>
$("#drawer").kendoDrawer({
mode: "push",
items: [
{ text: "Dashboard", icon: "home" },
{ text: "Files", icon: "folder" },
{ text: "Preferences", icon: "gear" }
]
});
</script>