New icons from google material icons not showing

Some google icons like change_circle, restart_alt isn't showing in components.

Indeed the icon font is a bit outdated. We will sync it up next week.

1 Like

is it possible to have the outlined version of the icon?

You can use the outlined version of the icons by loading the outlined Material Icons font and setting the respective font-family via CSS:

  1. Link the font. The recommended way to use the Material Icons font is by linking to the web font hosted on Google Fonts:
<!-- https://material.io/resources/icons/?style=outline -->
<link href="https://fonts.googleapis.com/css2?family=Material+Icons+Outlined"
      rel="stylesheet">
  1. Set the font-family. To change the icons' font-family, add the following CSS:
.rzi {
  font-family: "Material Icons Outlined";
}
2 Likes