iron-icons
A set of icons for use with iron-icon
<iron-icons>
iron-icons
is a utility import that includes the definition for the
iron-icon
element, iron-iconset-svg
element, as well as an import for the
default icon set.
See: Documentation, Demo.
Usage
Installation
npm install --save @polymer/iron-icons
In an HTML file
<html>
<head>
<script type="module">
import '@polymer/iron-icon/iron-icon.js';
import '@polymer/iron-icons/iron-icons.js';
</script>
</head>
<body>
<iron-icon icon="search"></iron-icon>
</body>
</html>
In a Polymer 3 element
import {PolymerElement} from '@polymer/polymer/polymer-element.js';
import {html} from '@polymer/polymer/lib/utils/html-tag.js';
import '@polymer/iron-icon/iron-icon.js';
import '@polymer/iron-icons/iron-icons.js';
class ExampleElement extends PolymerElement {
static get template() {
return html`
<iron-icon icon="search"></iron-icon>
`;
}
}
customElements.define('example-element', ExampleElement);
Contributing
If you want to send a PR to this element, here are the instructions for running the tests and demo locally:
Installation
git clone https://github.com/PolymerElements/iron-icons
cd iron-icons
npm install
npm install -g polymer-cli
Running the demo locally
polymer serve --npm
open http://127.0.0.1:<port>/demo/
Running the tests
polymer test --npm
Links
Compatibility
Was this helpful? Need more help?
Leave a comment or a question below. You can also join
the chat on Discord or
ask questions on StackOverflow.
Version
Dependencies
- @polymer/iron-icon#^3.0.0-pre.26
- @polymer/iron-iconset-svg#^3.0.0-pre.26
- @polymer/polymer#^3.0.0
- Released
- 2018-09-14
- Maturity
- IMPORTED
- License
- BSD 3-clause "New" or "Revised" License
Compatibility
- Framework
- Polymer 1.0+
- Polymer 3.0+
- Polymer 2.0+ in 2.1.1
- Browser
- Browser Independent
ColorConverters - Vaadin Add-on Directory
Convert Vaadin ColorPicker colors to different CSS notations and backColorConverters is a collection of com.vaadin.shared.ui.colorpicker.Color to String converters for Vaadin 8.
Author HomepageOnline Demo
Issue Tracker
Source Code
JavaDoc
Discussion Forum
ColorConverters version 1.0-beta1
Initial version