mirror of
https://github.com/akveo/ngx-admin.git
synced 2026-01-21 00:36:11 +01:00
feat(icons): update icons, add new nebular icons to icons list (#1738)
This commit is contained in:
parent
b400ef13f9
commit
cef6ea6499
5 changed files with 562 additions and 9 deletions
|
|
@ -5,7 +5,10 @@
|
|||
Nebular
|
||||
</nb-card-header>
|
||||
<nb-card-body>
|
||||
<div class="icon" *ngFor="let icon of icons.nebular"><i class="{{ icon }}"></i></div>
|
||||
<div class="icon"
|
||||
*ngFor="let icon of icons.nebular">
|
||||
<i class="{{ icon }}" [nbPopover]="icon"></i>
|
||||
</div>
|
||||
</nb-card-body>
|
||||
</nb-card>
|
||||
|
||||
|
|
@ -14,7 +17,10 @@
|
|||
Font awesome icons
|
||||
</nb-card-header>
|
||||
<nb-card-body>
|
||||
<div class="icon" *ngFor="let icon of icons.fontAwesome"><i class="fa {{ icon }}"></i></div>
|
||||
<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">
|
||||
|
|
@ -30,7 +36,9 @@
|
|||
Ionicons
|
||||
</nb-card-header>
|
||||
<nb-card-body>
|
||||
<div class="icon" *ngFor="let icon of icons.ionicons"><i class="{{ icon }}"></i></div>
|
||||
<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>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue