https://stackblitz.com/edit/angular-le5nbe?file=src/app/app.component.html
status = 'check';
fnCheck(){
this.status = 'check';
}
fnCross(){
this.status = 'cross';
check
<svg #cross *ngIf="status == 'cross'" class="cross" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 52 52">
<circle class="cross__circle" cx="26" cy="26" r="25" fill="none" />
<path class="cross__line" fill="none" d="M36 16 16 36" />
<path class="cross__line2" fill="none" d="M16 16 36 36" />
</svg>
<svg #right *ngIf="status == 'check'" class="cross" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 52 52">
<circle class="cross__circle" cx="26" cy="26" r="25" fill="none" />
<path d="M36.285 16l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z"/>
</svg>
<button (click)='fnCheck()' >Check</button>
<button (click)='fnCross()' >Cross</button>