File tree Expand file tree Collapse file tree 1 file changed +27
-7
lines changed
Expand file tree Collapse file tree 1 file changed +27
-7
lines changed Original file line number Diff line number Diff line change 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-
2949Alternatively, you can use the following CDN links:
3050
3151``` html
You can’t perform that action at this time.
0 commit comments