Search code examples
reactjsreact-toolbox

React Toolbox icon displays as alternate text


enter image description here

I am trying to use Button with icon.

<Button icon="add" floating accent mini />

I tried to use icons in different components. nothing worked out.

<FontIcon value='add' />

Above code is also rendered as text.


Solution

  • React Toolbox assumes that you are importing Roboto Font and Material Design Icons.

    In order to import the fonts for you, we'd need to include them in the CSS which is considered a bad practice. If you are not including them in your app, go to the linked sites and follow the instructions.

    <link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons|Roboto:400,500,700" />