toolbar.items.iconString
Sets icon for the item. The icon should be one of the existing in the Kendo UI theme sprite.
Example
<div id="imageEditor"></div>
<script>
$("#imageEditor").kendoImageEditor({
toolbar: {
items: [
{ text: "Crop", icon: "crop", command: "crop" },
{ text: "Resize", icon: "resize", command: "resize" },
{ text: "Save", icon: "save", command: "save" }
]
}
});
</script>
In this article