How to add icon to label at alert box

I want to add Icon to lable <ion-icon name="star-outline"></ion-icon>

let prompt = this.alertController.create();
    prompt.setTitle('rating');
    prompt.setMessage(text);

    prompt.addInput({
      type: 'radio',
      label: '1 `<ion-icon name="star-outline"></ion-icon>',
      value: '1'
    });
    prompt.addInput({
      type: 'radio',
      label: '2',
      value: '2'
    });
    prompt.addInput({
      type: 'radio',
      label: '3',
      value: '3'
    });
    prompt.addInput({
      type: 'radio',
      label: '4',
      value: '4'
    });

    prompt.addButton({
      text: 'Cancel',
      handler: data => {
        console.log('Cancel clicked');
      }
    });
    prompt.addButton({
      text: 'Save',
      handler: data => {
        console.log('Radio data:', data);
        this.testRadioOpen = false;
        this.testRadioResult = data;
      }
    });

but it was not working and showing tag content. how can I solve it?

Just passing through :red_car:

I’ll bump this up btw :wink: