mirror of
https://github.com/akveo/ngx-admin.git
synced 2026-03-03 20:30:15 +01:00
feat(ui-features): add the icons page
This commit is contained in:
parent
44318d9e25
commit
2f71b9a1a2
8 changed files with 82 additions and 16 deletions
28
src/app/pages/ui-features/icons/icons.component.html
Normal file
28
src/app/pages/ui-features/icons/icons.component.html
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
<div class="row">
|
||||
<div class="col-6 col-md-6">
|
||||
<nga-card>
|
||||
<nga-card-header>
|
||||
Ionicons
|
||||
</nga-card-header>
|
||||
<nga-card-body>
|
||||
<div class="col-2 icon" *ngFor="let icon of icons.ionicons"><i class="{{ icon }}"></i></div>
|
||||
</nga-card-body>
|
||||
<nga-card-footer>
|
||||
<a href="http://ionicons.com/" target="_blank" class="see-all-icons">See all ionicons icons</a>
|
||||
</nga-card-footer>
|
||||
</nga-card>
|
||||
</div>
|
||||
<div class="col-6 col-md-6">
|
||||
<nga-card>
|
||||
<nga-card-header>
|
||||
Font awesome icons
|
||||
</nga-card-header>
|
||||
<nga-card-body>
|
||||
<div class="col-2 icon" *ngFor="let icon of icons.fontAwesome"><i class="fa {{ icon }}"></i></div>
|
||||
</nga-card-body>
|
||||
<nga-card-footer>
|
||||
<a href="http://fortawesome.github.io/Font-Awesome/icons/" target="_blank" class="see-all-icons">See all Font Awesome icons</a>
|
||||
</nga-card-footer>
|
||||
</nga-card>
|
||||
</div>
|
||||
</div>
|
||||
Loading…
Add table
Add a link
Reference in a new issue