forked from angular/components
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbutton-overview-example.html
More file actions
76 lines (72 loc) · 3.27 KB
/
button-overview-example.html
File metadata and controls
76 lines (72 loc) · 3.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<h3>Basic Buttons</h3>
<div class="example-button-row">
<button mat-button aria-label="Example flat button">Basic</button>
<button mat-button aria-label="Example flat primary colored button" color="primary">Primary</button>
<button mat-button aria-label="Example flat accent colored button" color="accent">Accent</button>
<button mat-button aria-label="Example flat warn colored button" color="warn">Warn</button>
<button mat-button aria-label="Example flat disabled button" disabled>Disabled</button>
<a mat-button aria-label="Example flat anchor button" routerLink=".">Link</a>
</div>
<h3>Raised Buttons</h3>
<div class="example-button-row">
<button mat-raised-button aria-label="Example raised button">Basic</button>
<button mat-raised-button aria-label="Example raised primary colored button" color="primary">Primary</button>
<button mat-raised-button aria-label="Example raised accent colored button" color="accent">Accent</button>
<button mat-raised-button aria-label="Example raised warn colored button" color="warn">Warn</button>
<button mat-raised-button aria-label="Example raised disabled button" disabled>Disabled</button>
<a mat-raised-button aria-label="Example raised anchor button" routerLink=".">Link</a>
</div>
<h3>Icon Buttons</h3>
<div class="example-button-row">
<button mat-icon-button aria-label="Example icon-button with a heart icon">
<mat-icon>favorite</mat-icon>
</button>
<button mat-icon-button color="primary" aria-label="Example icon-button with a more vertical icon">
<mat-icon>more_vert</mat-icon>
</button>
<button mat-icon-button color="accent" aria-label="Example icon-button with a launch icon">
<mat-icon>launch</mat-icon>
</button>
<button mat-icon-button color="warn" aria-label="Example icon-button with a menu icon">
<mat-icon>menu</mat-icon>
</button>
<button mat-icon-button disabled aria-label="Example icon-button with a close icon">
<mat-icon>close</mat-icon>
</button>
</div>
<h3>Fab Buttons</h3>
<div class="example-button-row">
<button mat-fab aria-label="Example icon-button with a people icon">
<mat-icon>add</mat-icon>
</button>
<button mat-fab color="primary" aria-label="Example icon-button with a people icon">
<mat-icon>people</mat-icon>
</button>
<button mat-fab color="warn" aria-label="Example icon-button with a star icon">
<mat-icon>star</mat-icon>
</button>
<button mat-fab disabled aria-label="Example icon-button with a comment icon">
<mat-icon>comment</mat-icon>
</button>
<button mat-fab aria-label="Example icon-button with a cake icon">
<mat-icon>cake</mat-icon>
</button>
</div>
<h3>Mini Fab Buttons</h3>
<div class="example-button-row">
<button mat-mini-fab aria-label="Example icon-button with a people icon">
<mat-icon>add</mat-icon>
</button>
<button mat-mini-fab color="primary" aria-label="Example icon-button with a people icon">
<mat-icon>people</mat-icon>
</button>
<button mat-mini-fab color="warn" aria-label="Example icon-button with a star icon">
<mat-icon>star</mat-icon>
</button>
<button mat-mini-fab disabled aria-label="Example icon-button with a comment icon">
<mat-icon>comment</mat-icon>
</button>
<button mat-mini-fab aria-label="Example icon-button with a cake icon">
<mat-icon>cake</mat-icon>
</button>
</div>