icon String
(default: '')
Defines the name for an existing icon in a Kendo UI theme or SVG content. The icon is rendered inside the badge 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="badge"></span>
<script>
$('#badge').kendoBadge({
icon: 'plus',
themeColor: 'primary'
});
</script>