The Outlined icons font file is not part of the Radzen.Blazor package and you need to add it manually:
-
You can download the file from Material Icons GitHub repo -> https://github.com/google/material-design-icons/tree/master/variablefont
-
Define the font-face before you set the
--rz-icon-font-family
. ChangePATH-TO-FONT
below with the actual path to the font in your app. You can use as a reference the example you mentioned.
<style>
/* START Material Symbols font CSS */
@font-face {
font-family: 'Material Symbols Outlined';
font-style: normal;
font-weight: 100 700;
src: url('PATH-TO-FONT/MaterialSymbols-Outlined.woff2') format('woff2');
}
.material-symbols {
--rz-icon-font-family: 'Material Symbols Outlined';
}
/* END Material Symbols font CSS */
</style>
- Make sure to add the CSS class in which you defined
--rz-icon-font-family
to the element in which you use the icons. In this example it isclass="material-symbols
and you could add it directly to the body:
<body class="material-symbols">