steps.icon String
Defines a name of an existing icon in the Kendo UI theme sprite. The icon will be displayed in the Stepper step element. For a list of available icon names, please refer to the Web Font Icons article.
Example
<div id="wizard"></div>
<script>
$("#wizard").kendoWizard({
steps: [{
title: "Initial step",
content: "Step 1 Content"
}, {
title: "Second step",
content: "Step 2 Content",
icon: "cancel"
},{
title: "Third step",
content: "Step 3 Content"
}]
});
</script>