Where do I find a list of all mat-icons -- Angular

IconsMaterial DesignAngular Material

Icons Problem Overview


I started using <mat-icon> of angular-material and I wonder if there is any collection of the names of all the included icons. Past a few months, I used this already and I think, back then, I found a homepage where a bunch of them were listed. But this site is not findable anymore.

Is there any list of this icons out there or something else to look for these?

Icons Solutions


Solution 1 - Icons

Edit 2:

The old Material.io link now redirects to the Icons page on Google Fonts, which should have an up-to-date list of all of the icons.


Edit:

As the icons listed on the website are slightly outdated, here's some alternative resources:


Isn't it Material Icons (as stated by @RobbyCornelissen)? The Google Material Design team had recently (last month) updated their website.

Anyways, the Angular Material team expects developers to include the Google Material Design Icon Font themselves (Google Fonts/self-host/whatever you fancy).

Solution 2 - Icons

The complete list of All the Material Icons is in the below link.

https://www.angularjswiki.com/angular/angular-material-icons-list-mat-icon-list/ (credit to Arunkumar Gudelli)

Solution 3 - Icons

We have around 900+ Material icons divided across 10+ categories.We need to load Material Icons font CSS.

<i>home</i> <!--In Angualar we can use mat-icon as well--> <mat-icon>home</mat-icon>

You can find complete 900+ icon list here

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionPabloView Question on Stackoverflow
Solution 1 - IconsEdricView Answer on Stackoverflow
Solution 2 - IconsDiaMaBoView Answer on Stackoverflow
Solution 3 - IconsArunView Answer on Stackoverflow