|
1 |
| -<button mat-button>Click me!</button> |
| 1 | +<h3>Basic Buttons</h3> |
| 2 | +<div class="button-row"> |
| 3 | + <button mat-button>Basic</button> |
| 4 | + <button mat-button color="primary">Primary</button> |
| 5 | + <button mat-button color="accent">Accent</button> |
| 6 | + <button mat-button color="warn">Warn</button> |
| 7 | + <button mat-button disabled>Disabled</button> |
| 8 | + <a mat-button routerLink=".">Link</a> |
| 9 | +</div> |
| 10 | + |
| 11 | +<h3>Raised Buttons</h3> |
| 12 | +<div class="button-row"> |
| 13 | + <button mat-raised-button>Basic</button> |
| 14 | + <button mat-raised-button color="primary">Primary</button> |
| 15 | + <button mat-raised-button color="accent">Accent</button> |
| 16 | + <button mat-raised-button color="warn">Warn</button> |
| 17 | + <button mat-raised-button disabled>Disabled</button> |
| 18 | + <a mat-raised-button routerLink=".">Link</a> |
| 19 | +</div> |
| 20 | + |
| 21 | +<h3>Icon Buttons</h3> |
| 22 | +<div class="button-row"> |
| 23 | + <button mat-icon-button> |
| 24 | + <mat-icon aria-label="Example icon-button with a heart icon">favorite</mat-icon> |
| 25 | + </button> |
| 26 | + <button mat-icon-button color="primary"> |
| 27 | + <mat-icon aria-label="Example icon-button with a more vertical icon">more_vert</mat-icon> |
| 28 | + </button> |
| 29 | + <button mat-icon-button color="accent"> |
| 30 | + <mat-icon aria-label="Example icon-button with a launch icon">launch</mat-icon> |
| 31 | + </button> |
| 32 | + <button mat-icon-button color="warn"> |
| 33 | + <mat-icon aria-label="Example icon-button with a menu icon">menu</mat-icon> |
| 34 | + </button> |
| 35 | + <button mat-icon-button disabled> |
| 36 | + <mat-icon aria-label="Example icon-button with a close icon">close</mat-icon> |
| 37 | + </button> |
| 38 | +</div> |
| 39 | + |
| 40 | +<h3>Fab Buttons</h3> |
| 41 | +<div class="button-row"> |
| 42 | + <button mat-fab> |
| 43 | + <mat-icon aria-label="Example icon-button with a people icon">add</mat-icon> |
| 44 | + </button> |
| 45 | + <button mat-fab color="primary"> |
| 46 | + <mat-icon aria-label="Example icon-button with a people icon">people</mat-icon> |
| 47 | + </button> |
| 48 | + <button mat-fab color="warn"> |
| 49 | + <mat-icon aria-label="Example icon-button with a star icon">star</mat-icon> |
| 50 | + </button> |
| 51 | + <button mat-fab disabled> |
| 52 | + <mat-icon aria-label="Example icon-button with a comment icon">comment</mat-icon> |
| 53 | + </button> |
| 54 | + <button mat-fab> |
| 55 | + <mat-icon aria-label="Example icon-button with a cake icon">cake</mat-icon> |
| 56 | + </button> |
| 57 | +</div> |
| 58 | + |
| 59 | +<h3>Mini Fab Buttons</h3> |
| 60 | +<div class="button-row"> |
| 61 | + <button mat-mini-fab> |
| 62 | + <mat-icon aria-label="Example icon-button with a people icon">add</mat-icon> |
| 63 | + </button> |
| 64 | + <button mat-mini-fab color="primary"> |
| 65 | + <mat-icon aria-label="Example icon-button with a people icon">people</mat-icon> |
| 66 | + </button> |
| 67 | + <button mat-mini-fab color="warn"> |
| 68 | + <mat-icon aria-label="Example icon-button with a star icon">star</mat-icon> |
| 69 | + </button> |
| 70 | + <button mat-mini-fab disabled> |
| 71 | + <mat-icon aria-label="Example icon-button with a comment icon">comment</mat-icon> |
| 72 | + </button> |
| 73 | + <button mat-mini-fab> |
| 74 | + <mat-icon aria-label="Example icon-button with a cake icon">cake</mat-icon> |
| 75 | + </button> |
| 76 | +</div> |
0 commit comments