mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-16 15:40:11 +01:00
48 lines
1.3 KiB
HTML
48 lines
1.3 KiB
HTML
<div class="row">
|
|
<div class="col-md-12 col-lg-6">
|
|
<nb-card class="nb-icons">
|
|
<nb-card-header>
|
|
Nebular
|
|
</nb-card-header>
|
|
<nb-card-body>
|
|
<div class="icon"
|
|
*ngFor="let icon of icons.nebular">
|
|
<i class="{{ icon }}" [nbPopover]="icon"></i>
|
|
</div>
|
|
</nb-card-body>
|
|
</nb-card>
|
|
|
|
<nb-card>
|
|
<nb-card-header>
|
|
Font awesome icons
|
|
</nb-card-header>
|
|
<nb-card-body>
|
|
<div class="icon"
|
|
*ngFor="let icon of icons.fontAwesome">
|
|
<i class="fa {{ icon }}" [nbPopover]="icon"></i>
|
|
</div>
|
|
</nb-card-body>
|
|
<nb-card-footer>
|
|
<a href="http://fortawesome.github.io/Font-Awesome/icons/" target="_blank">
|
|
See all Font Awesome icons
|
|
</a>
|
|
</nb-card-footer>
|
|
</nb-card>
|
|
</div>
|
|
|
|
<div class="col-md-12 col-lg-6">
|
|
<nb-card>
|
|
<nb-card-header>
|
|
Ionicons
|
|
</nb-card-header>
|
|
<nb-card-body>
|
|
<div class="icon" *ngFor="let icon of icons.ionicons">
|
|
<i class="{{ icon }}" [nbPopover]="icon"></i>
|
|
</div>
|
|
</nb-card-body>
|
|
<nb-card-footer>
|
|
<a href="http://ionicons.com/" target="_blank">See all ionicons icons</a>
|
|
</nb-card-footer>
|
|
</nb-card>
|
|
</div>
|
|
</div>
|