PolymerElements / iron-icons

A set of icons for use with iron-icon
https://www.webcomponents.org/element/PolymerElements/iron-icons
105 stars 61 forks source link

Unable to display some icons #23

Closed matrix818181 closed 8 years ago

matrix818181 commented 8 years ago

I don't know why but I'm not able to display 'attach-file' and 'attach-money' icons. Within the demo it's working, but outside, no.

This is what my code look like : <iron-icon icon="attach-money"></iron-icon>

Can someone help me ? Thx

notwaldorf commented 8 years ago

You need to include iron-icons/editor-icons.html file, as well as use the editor: prefix for the icons:

<iron-icon icon="editor:attach-money"></iron-icon>
<iron-icon icon="editor:attach-file"></iron-icon>

Here's a JSBin that does this: http://jsbin.com/rubove/edit?html,output