suffixOptions.template String|Function
The template for the suffix adornment of the component.
Example - specify suffix adornment template
<textarea id="description"></textarea>
<script>
$("#description").kendoTextArea({
suffixOptions: {
template: () => `${kendo.ui.icon("search")}${kendo.ui.icon("pencil")}${kendo.ui.icon("gear")}`
}
})
</script>