mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 12:29:55 +08:00
41 lines
552 B
HTML
41 lines
552 B
HTML
|
|
<ion-navbar *navbar>
|
|
<ion-title>Icon Buttons</ion-title>
|
|
</ion-navbar>
|
|
|
|
<ion-content padding class="has-header components-demo">
|
|
<p>
|
|
<button>
|
|
<icon home></icon>
|
|
Home
|
|
</button>
|
|
</p>
|
|
|
|
<p>
|
|
<button secondary>
|
|
<icon people></icon>
|
|
Friends
|
|
</button>
|
|
</p>
|
|
|
|
<p>
|
|
<button danger>
|
|
<icon close></icon>
|
|
</button>
|
|
</p>
|
|
|
|
<p>
|
|
<button light>
|
|
<icon arrow-back></icon>
|
|
Back
|
|
</button>
|
|
</p>
|
|
|
|
<p>
|
|
<button dark>
|
|
<icon hammer></icon>
|
|
</button>
|
|
</p>
|
|
|
|
</ion-content>
|