mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-17 07:50:12 +01:00
14 lines
433 B
HTML
14 lines
433 B
HTML
|
|
<nga-card size="xmedium">
|
||
|
|
<nga-tabset fullWidth>
|
||
|
|
<nga-tab tabTitle="Contacts">
|
||
|
|
<div class="contact" *ngFor="let c of contacts">
|
||
|
|
<nga-user [picture]="c.user.picture" [name]="c.user.name" [title]="c.type" size="xmedium"></nga-user>
|
||
|
|
<i class="ion-ios-telephone-outline"></i>
|
||
|
|
</div>
|
||
|
|
</nga-tab>
|
||
|
|
<nga-tab tabTitle="Recent">
|
||
|
|
<span>Content #2</span>
|
||
|
|
</nga-tab>
|
||
|
|
</nga-tabset>
|
||
|
|
</nga-card>
|