Is it possible to utilize the iron-iconset
element to assign multiple icons from an external SVG file that contains all of my icon variations (each line representing a specific icon with its color, state, etc.)?
Imagine something like this:
<iron-iconset name="login" src="icons.svg" width="90" size="30" icons="normal invalid"></iron-iconset>
Where width
denotes the width of the SVG file, size
determines the size of the square logos, and there's a method to specify the height of the file along with the line to be used.
If this explanation is unclear, please let me know.
Thank you in advance!