removeIcon String (default: '')

Defines the name for an existing icon in a Kendo UI theme or SVG content for the remove button when removable=true. 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({
        removable: true,
        removeIcon: 'x',
        themeColor: 'success'
    });
</script>
In this article