We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c203589 commit fda8de5Copy full SHA for fda8de5
src/examples/list-sections/list-sections-example.html
@@ -1,14 +1,14 @@
1
<md-list>
2
<h3 md-subheader>Folders</h3>
3
<md-list-item *ngFor="let folder of folders">
4
- <md-icon md-list-avatar>folder</md-icon>
+ <md-icon md-list-icon>folder</md-icon>
5
<h4 md-line>{{folder.name}}</h4>
6
<p md-line> {{folder.updated | date}} </p>
7
</md-list-item>
8
<md-divider></md-divider>
9
<h3 md-subheader>Notes</h3>
10
<md-list-item *ngFor="let note of notes">
11
- <md-icon md-list-avatar>note</md-icon>
+ <md-icon md-list-icon>note</md-icon>
12
<h4 md-line>{{note.name}}</h4>
13
<p md-line> {{note.updated | date}} </p>
14
0 commit comments