Here is the code snippet where I am attempting to display a black tick inside a circle:
<mat-icon
[ngStyle]="{ color: selectedColor === color.checkedCircleColor ?
color.checkedCircleColor : color.innerCircleColor}"
>{{ selectedColor === color.checkedCircleColor ?
'check_circle' : 'circle' }}
</mat-icon>
I'm currently troubleshooting how to add the white tick color without it affecting the entire mat-icon element.