Last active
August 10, 2018 10:13
-
-
Save samarthagarwal/1fc3ba770cad1fd946b2fcef2c5e51c6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- Default --> | |
| <ion-button>Default</ion-button> | |
| <!-- Anchor --> | |
| <ion-button href="#">Anchor</ion-button> | |
| <!-- Anchor with backwards transition --> | |
| <ion-button href="/" go-back>Backwards Anchor</ion-button> | |
| <!-- Colors --> | |
| <ion-button color="primary">Primary</ion-button> | |
| <ion-button color="secondary">Secondary</ion-button> | |
| <ion-button color="tertiary">Tertiary</ion-button> | |
| <ion-button color="success">Success</ion-button> | |
| <ion-button color="warning">Warning</ion-button> | |
| <ion-button color="danger">Danger</ion-button> | |
| <ion-button color="light">Light</ion-button> | |
| <ion-button color="medium">Medium</ion-button> | |
| <ion-button color="dark">Dark</ion-button> | |
| <!-- Expand --> | |
| <ion-button expand="full">Full Button</ion-button> | |
| <ion-button expand="block">Block Button</ion-button> | |
| <!-- Round --> | |
| <ion-button round>Round Button</ion-button> | |
| <!-- Fill --> | |
| <ion-button expand="full" fill="outline">Outline + Full</ion-button> | |
| <ion-button expand="block" fill="outline">Outline + Block</ion-button> | |
| <ion-button round fill="outline">Outline + Round</ion-button> | |
| <!-- Icons --> | |
| <ion-button> | |
| <ion-icon slot="start" name="star"></ion-icon> | |
| Left Icon | |
| </ion-button> | |
| <ion-button> | |
| Right Icon | |
| <ion-icon slot="end" name="star"></ion-icon> | |
| </ion-button> | |
| <ion-button> | |
| <ion-icon slot="icon-only" name="star"></ion-icon> | |
| </ion-button> | |
| <!-- Sizes --> | |
| <ion-button size="large">Large</ion-button> | |
| <ion-button>Default</ion-button> | |
| <ion-button size="small">Small</ion-button> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment