Materialize:materialize Icon’s not working

I have simple submit button

      <div className="row">
        <button className="btn waves-effect waves-light btn-block" type="submit" name="action">Submit
          <i className="material-icons right">send</i>
        </button>
      </div>

but the icon is not shown up.
it becomes

it should look like in the document Buttons - Materialize

I am using Meteor 1.4

Are you referencing the Material Icons font family somewhere?

<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">

See the Usage section of the Materialize docs for more info.

2 Likes

thank you very much.