How to add an Icon to a CheckBoxGroup label

I need a add an info icon next to the CheckBoxGroup label like below. Please suggest the option to add the icon.
image

Hi, please try:

<vaadin-text-field
          id="artifactId"
          [...]>
          <label slot="label">
            Artifact ID
            <vaadin-icon id="artifact-id-helper" icon="icons8:question-solid"></vaadin-icon>
          </label>
        </vaadin-text-field>
        <vaadin-tooltip for="artifact-id-helper" text="Artifact ID is the name of the project."></vaadin-tooltip>

It is done like this at https://start.vaadin.com/