Hello, I'd like to use the [icon] property of the <button> component:
<button kendo-button [icon]="'save'">Save</button>
but I got this error at runtime:
zone.js:654 Unhandled Promise rejection: Template parse errors:
Can't bind to 'icon' since it isn't a known property of 'button'. (" <tr>
<td>
<button kendo-button [ERROR ->][icon]="'save'">Save</button>
</td>
</tr>
"): ng:///Apps_Root/Apps/PricingConfig/app.html@29:49 ; Zone: <root> ; Task: Promise.then ; Value: Error: Template parse errors:
Can't bind to 'icon' since it isn't a known property of 'button'. (" <tr>
<td>
<button kendo-button [ERROR ->][icon]="'save'">Save</button>
</td>
</tr>
If I remove [icon] and use class="k-i-save", I dont get the runtime error but I dont get the floppy-disk icon next to the label Save.
<button kendo-button class="k-i-save">Save</button>
Could someone tell me how to resolve this [icon] property error?
Thanks!