ngx-admin/src/app/pages/ui-features/icons/icons.component.html

46 lines
1.4 KiB
HTML
Raw Normal View History

2017-05-04 15:33:51 +03:00
<div class="row">
2018-11-19 17:53:56 +02:00
<div class="col-md-12 col-lg-6">
<nb-card>
<nb-card-header>
Eva Icons
</nb-card-header>
<nb-card-body>
<nb-icon *ngFor="let icon of evaIcons" [icon]="icon" pack="eva"></nb-icon>
2018-11-19 17:53:56 +02:00
</nb-card-body>
<nb-card-footer>
<a href="https://akveo.github.io/eva-icons?utm_campaign=eva_icons%20-%20home%20-%20ngx_admin%20demo&utm_source=ngx_admin&utm_medium=referral&utm_content=eva_icons_card" target="_blank">See all Eva Icons</a>
2018-11-19 17:53:56 +02:00
</nb-card-footer>
</nb-card>
</div>
<div class="col-md-12 col-lg-6">
<nb-card>
<nb-card-header>
2017-05-04 15:33:51 +03:00
Font awesome icons
</nb-card-header>
<nb-card-body>
<nb-icon *ngFor="let icon of icons.fontAwesome" [icon]="icon" pack="fa"></nb-icon>
<nb-icon *ngFor="let icon of icons.fontAwesomeRegular" [icon]="icon" pack="far"></nb-icon>
</nb-card-body>
<nb-card-footer>
2017-08-30 18:39:14 +03:00
<a href="http://fortawesome.github.io/Font-Awesome/icons/" target="_blank">
See all Font Awesome icons
</a>
</nb-card-footer>
</nb-card>
2017-08-30 18:39:14 +03:00
<nb-card>
<nb-card-header>
Ionicons
</nb-card-header>
<nb-card-body>
<nb-icon *ngFor="let icon of icons.ionicons" [icon]="icon" pack="ion"></nb-icon>
2017-08-30 18:39:14 +03:00
</nb-card-body>
<nb-card-footer>
2018-11-19 17:53:56 +02:00
<a href="http://ionicons.com/" target="_blank">See all ionicons</a>
2017-08-30 18:39:14 +03:00
</nb-card-footer>
</nb-card>
2018-11-19 17:53:56 +02:00
2017-08-30 18:39:14 +03:00
</div>
2017-05-04 15:33:51 +03:00
</div>