I am using below code for lightning-combobox in lwc HTML file
<lightning-combobox value={value} label={labelWonLostReason} onchange={handleWonLostRegionChange} options={filteredWonLostRegionValues}
name="progress" read-only={wonLostReason}> </lightning-combobox>
here for label 'labelWonLostReason' I am using below code in javascript
this.labelWonLostReason = "*" + "Won Lost Reason";
I need to make this asterisk (*) in red color. There is one property 'required' of lightning-combobox but I can not use that.
How can I achieve this behavior. in Java there is something like HTML.formHTML which format the text to html at run time. Is there something similar I can use here ?
Thanks in Advance