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