Material icons outline shows icon name, not icon
-
I am using the out-of-the-box Material icons and when I ask for the outlined version I get the icon name as text instead of the icon.
Here is a screenshot from the Basic Example in CodePen:
From the docs: eg material-icons-outlined:
o_thumb_up
How do I do that?
Thanks,
Murray -
@murrah include the cdn for the icon.
-
Oh… of course. I had done this:
extras: [
‘material-icons’
]not realising I actually needed to add to that, eg:
‘material-icons’,
‘material-icons-outlined’,
‘material-icons-round’,
‘material-icons-sharp’Thanks again!
Murray