prefixOptions.icon String

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

Example - specify prefix adornment icon

<input id="textbox" />
<script>
    $("#textbox").kendoTextBox({
        prefixOptions: {
            icon: "search"
        }
    })
</script>
In this article