mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 11:17:19 +08:00
34 lines
794 B
TypeScript
34 lines
794 B
TypeScript
import {Component, Directive, View} from 'angular2/angular2';
|
|
|
|
import {List, Item, ActionMenu, Modal, ModalRef,
|
|
NavbarTemplate, Navbar, NavController, Content} from 'ionic/ionic';
|
|
|
|
|
|
@Component({
|
|
selector: 'ion-view'
|
|
})
|
|
@View({
|
|
template: `
|
|
<ion-navbar *navbar><ion-title>Ionicons</ion-title></ion-navbar>
|
|
|
|
<ion-content class="padding">
|
|
<h2>Ionicons</h2>
|
|
<p>
|
|
Ionic comes with a totally free (in price and license), icon pack with over 700
|
|
icons for your app.
|
|
</p>
|
|
<p>
|
|
Ionicons is an icon font, and can be used with simple CSS icon classes (recommended), or
|
|
with unicode characters.
|
|
</p>
|
|
<div>
|
|
</div>
|
|
</ion-content>
|
|
`,
|
|
directives: [NavbarTemplate, Navbar, Content, List, Item]
|
|
})
|
|
export class IconsPage {
|
|
constructor() {
|
|
}
|
|
}
|