I'm trying to apply a class to a textbox label like so:
<kendo-textbox name="customerNameTextbox" for="@Model.Name">
<textbox-label content="Name" class="required" />
</kendo-textbox>
However, I can see in the browser development console that the label component associated with the component only has the usual k- classes applied to it:
<label class="k-label k-input-label" for="Name">Name</label>
How can I make sure my class is applied to the label?