How to style a Mat radio-button to look like a checkbox

Viewed 1289

When the radio button is checked, I want to indicate that with a tick(line checkbox) instead of a dot.

<mat-radio-group class="example-radio-group" [(ngModel)]="row.selected">
      <mat-radio-button  class="example-radio-button" *ngFor="let season of texts"
                      [checked]="false" [value]="season.Answer_Id">
                      <span class="answer"> {{season.Text}} </span>
      </mat-radio-button>
 </mat-radio-group>

Any help would be appreciated. Thanks in advance!!!! enter image description here

0 Answers
Related