icon String
(default: '')
Defines the name for an existing icon in a Kendo UI theme or SVG content. The icon is rendered inside the chip by a span.k-icon
or span.k-svg-icon
element.
See web font icons help article for more details on Kendo UI icons.
Example
<span id="chip"></span>
<script>
$('#chip').kendoChip({
icon: 'plus',
label: 'Add'
});
</script>