On running accessibility tool AMP, below issues are identified due to mat checkbox and select.
- Provide alternative text for images - The svg added for check mark dose not have alt text.


- Ensure ARIA roles, states, and properties are valid - Not able to added aria-checked, how can we added fix this issue.
If the same mat-checkbox is replaced by input type="checkbox" none of the issue will be reproduced.
Checkbox code -
<mat-checkbox aria-label="Select" (click)="checkboxSelected($event,row)" (change)="$event ? selection.toggle(row) : null" [checked]="selection.isSelected(row)">
Select
Toggle code -
{{broadcastMessageToggleValue}}
Please validate and provide the solution.
Thanks,
Chetan