mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 03:32:21 +08:00
23 lines
411 B
HTML
23 lines
411 B
HTML
<ion-navbar *navbar>
|
|
<ion-title>Button Sizes</ion-title>
|
|
</ion-navbar>
|
|
|
|
<ion-content padding class="has-header components-demo">
|
|
<p>
|
|
<button light large>Light</button>
|
|
</p>
|
|
<p>
|
|
<button small>Default</button>
|
|
</p>
|
|
<p>
|
|
<button secondary small>Secondary</button>
|
|
</p>
|
|
|
|
<p>
|
|
<button danger small>Danger</button>
|
|
</p>
|
|
<p>
|
|
<button dark large>Dark</button>
|
|
</p>
|
|
</ion-content>
|