suffixOptions.icon String

Defines the name for an existing icon in a Kendo UI theme or SVG content

Example - specify suffix adornment icon

<input id="suffix" />
<script>
    $("#suffix").kendoMultiSelect({
        label: "MultiSelect",
        dataTextField: "text",
        dataValueField: "value",
        dataSource: {
                data:  [
                        { text: "Apples", value: "1" },
                        { text: "Oranges", value: "2" }
                ]
        },
        suffixOptions: {
            icon: "search"
        }
    })
</script>
In this article