<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
<span class="material-symbols-outlined">
delete
</span>
Initial phase its showing raw text and then after some time its display the icon, How can we fix this?
You can set display
in the params, which does the same thing as CSS font-display
property does.
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200&display=block" />
<span class="material-symbols-outlined">
delete
</span>