2021-06-30 15:01:07 +01:00
|
|
|
<ion-content class="container">
|
|
|
|
|
<div class="arrow-right" (click)="close()">
|
|
|
|
|
<button class="btn-no-color">
|
2021-10-25 15:31:43 +01:00
|
|
|
<ion-icon *ngIf="ThemeService.currentTheme == 'default' "slot="end" class="arrow-right-icon" src='assets/images/icons-arrow-arrow-right.svg'></ion-icon>
|
|
|
|
|
<ion-icon *ngIf="ThemeService.currentTheme == 'gov' " slot="end" class="arrow-right-icon" src='assets/images/theme/gov/icons-calendar-arrow-right.svg'></ion-icon>
|
2021-06-30 15:01:07 +01:00
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="buttons">
|
|
|
|
|
<button (click)="editAction()" class="btn-cancel" shape="round" >Editar</button>
|
|
|
|
|
<div class="solid"></div>
|
|
|
|
|
<button (click)="deleteAction()" class="btn-delete" shape="round" >Eliminar</button>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</ion-content>
|