After upgrading to Polymer 1.0, default iron-icons set is not working. I am trying to use home icon from the default icon set.
HTML code fragment:
Got the real solution now (not workaround), therefore opened new answer.
The cause of the warning in Chrome debugger is due to the wrong timing of loading the link imports in the right sequence.
1.) Remove link imports in the iron-icons (and other icon-sets if needed, like maps, social, etc ...):
before:
etc ...) because it comes after that initial link-import (due to blocking nature of link import). Hence, at line 164 it cannot find the Default iconset icons, and therefore throwing the famous warning at line 167:
could not find iconset icons, did you import the iconset?
2.) Load required dependencies in your project file in the correct sequence:
The
is loaded in last position now, hence all dependencies are available at this point.
Works like a charm for me now.
@LuckyRay's : Please let us know whether this works for you, too. I will post this on your github comment for the Polymer Team as well.