Skip to content

Commit b25a4d8

Browse files
authored
Enhance Material Icons usage documentation
Updated usage instructions for Material Icons in MudBlazor, including preloading font files to reduce flicker.
1 parent bfa5ba4 commit b25a4d8

File tree

1 file changed

+27
-7
lines changed

1 file changed

+27
-7
lines changed

documentation/material_icons_usage.md

Lines changed: 27 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,23 +9,43 @@
99
| 1.0.0 => | 7.0.0-preview.4 => | .NET 7 & NET 8 |
1010

1111

12-
To use the icons in your MudBlazor project while reducing first-load flicker, preload only the font variants you use before loading the stylesheet:
12+
To use the icons in your MudBlazor project, you can add the following CSS link to your HTML or Razor layout:
13+
14+
```html
15+
<link href="_content/MudBlazor.FontIcons.MaterialIcons/css/font.min.css" rel="stylesheet" />
16+
```
17+
18+
To reduce first-load flicker, preload the Material Symbols font files before loading the stylesheet:
1319

1420
```html
1521
<link rel="preload"
1622
href="_content/MudBlazor.FontIcons.MaterialIcons/font/MaterialIcons.woff2"
1723
as="font"
1824
type="font/woff2"
1925
crossorigin>
26+
<link rel="preload"
27+
href="_content/MudBlazor.FontIcons.MaterialIcons/font/MaterialIconsOutlined.woff2"
28+
as="font"
29+
type="font/woff2"
30+
crossorigin>
31+
<link rel="preload"
32+
href="_content/MudBlazor.FontIcons.MaterialIcons/font/MaterialIconsRound.woff2"
33+
as="font"
34+
type="font/woff2"
35+
crossorigin>
36+
<link rel="preload"
37+
href="_content/MudBlazor.FontIcons.MaterialIcons/font/MaterialIconsSharp.woff2"
38+
as="font"
39+
type="font/woff2"
40+
crossorigin>
41+
<link rel="preload"
42+
href="_content/MudBlazor.FontIcons.MaterialIcons/font/MaterialIconsTwoTone.woff2"
43+
as="font"
44+
type="font/woff2"
45+
crossorigin>
2046
<link href="_content/MudBlazor.FontIcons.MaterialIcons/css/font.min.css" rel="stylesheet" />
2147
```
2248

23-
Other available variants that can be preloaded as needed:
24-
- `_content/MudBlazor.FontIcons.MaterialIcons/font/MaterialIconsOutlined.woff2`
25-
- `_content/MudBlazor.FontIcons.MaterialIcons/font/MaterialIconsRound.woff2`
26-
- `_content/MudBlazor.FontIcons.MaterialIcons/font/MaterialIconsSharp.woff2`
27-
- `_content/MudBlazor.FontIcons.MaterialIcons/font/MaterialIconsTwoTone.woff2`
28-
2949
Alternatively, you can use the following CDN links:
3050

3151
```html

0 commit comments

Comments
 (0)