Add example of multiword icon name

The Material UI documentation mentions icon names like "account circle".
It was not documented anywhere that the separator has to be an
underscore: "account_circle".
old
Antti Ahti 2016-11-05 13:32:57 +02:00
parent c3a614c05e
commit 9d8c975cc4
2 changed files with 2 additions and 0 deletions

View File

@ -10,6 +10,7 @@ const FontIcons = () => (
<span>
<FontIcon value='add' />
<FontIcon value='favorite' />
<FontIcon value='account_circle' />
<FontIcon>star</FontIcon>
</span>
);

View File

@ -2,6 +2,7 @@ const FontIcons = () => (
<span>
<FontIcon value='add' />
<FontIcon value='favorite' />
<FontIcon value='account_circle' />
<FontIcon>star</FontIcon>
</span>
);