removeIconClass String (default: '')

If set, value will be appended to the remove icon's element class attribute.

Example

<span id="chip"></span>
<script>
    $('#chip').kendoChip({
        removable: true,
        removeIconClass: 'k-chip-icon k-icon k-i-close',
        themeColor: 'success'
    });
</script>
In this article