web-remote/src/app/components/service/service-item/service-item.component.html

9 lines
224 B
HTML
Raw Normal View History

<mat-card
(click)="onItemSelected(item)"
class="service-item no-select"
[class.selected]="selected">
2022-12-21 16:27:47 +00:00
<mat-card-content>
<mat-icon>{{ getIcon(item) }}</mat-icon> {{ item.title }}
</mat-card-content>
2021-09-06 07:11:19 +00:00
</mat-card>