Skip to content

Instantly share code, notes, and snippets.

@jessipearcy
Created October 6, 2020 14:55
Show Gist options
  • Save jessipearcy/8b9a1ff5c9f74d60f5d44e382adc18f3 to your computer and use it in GitHub Desktop.
Save jessipearcy/8b9a1ff5c9f74d60f5d44e382adc18f3 to your computer and use it in GitHub Desktop.
<!--...Code Omitted...-->
<div *ngFor="let habit of habits; let i = index">
<mat-card>
<mat-card-title>
<mat-icon
class="habit-icon"
color="accent"
aria-hidden="false"
aria-label="circle check mark icon"
>check_circle_outline</mat-icon
>
{{ habit.name }}
</mat-card-title>
<div class="detail-options">
<mat-icon
class="habit-icon"
color="primary"
(click)="onEdit(habit)"
>edit</mat-icon
>
<mat-icon class="habit-icon" color="warn" (click)="onDelete(i)"
>remove_circle</mat-icon
>
</div>
<!--...Code Omitted...-->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment