-
Notifications
You must be signed in to change notification settings - Fork 67
Open
Description
Hi,
is it possible to use HTML or fontawsome icons for the labels?
<ui-switch
size="small"
checkedLabel="M"
uncheckedLabel="W"
[(ngModel)]="gender"
(valueChange)="..." />
So something like this:
<ui-switch
size="small"
[checkedLabelHTML]="<i class="fa fa-mars"></i>"
[uncheckedLabelHTML]="<i class="fa fa-venus"></i>"
[(ngModel)]="gender"
(valueChange)="..." />
Is it already possible, planned or any other way to achieve this?