3.0.1 • Published 6 years ago
@polymer/iron-icons v3.0.1
<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
3.0.1
6 years ago
3.0.0
6 years ago
3.0.0-pre.26
6 years ago
3.0.0-pre.25
6 years ago
3.0.0-pre.24
6 years ago
3.0.0-pre.23
6 years ago
3.0.0-pre.22
6 years ago
3.0.0-pre.21
6 years ago
3.0.0-pre.20
6 years ago
3.0.0-pre.19
6 years ago
3.0.0-pre.18
7 years ago
3.0.0-pre.17
7 years ago
3.0.0-pre.16
7 years ago
3.0.0-pre.15
7 years ago
3.0.0-pre.14
7 years ago
3.0.0-pre.13
7 years ago
3.0.0-pre.12
7 years ago
3.0.0-pre.11
7 years ago
3.0.0-pre.10
7 years ago
3.0.0-pre.8
7 years ago
3.0.0-pre.7
7 years ago
3.0.0-pre.6
7 years ago
3.0.0-pre.4
7 years ago
3.0.0-pre.3
7 years ago
3.0.0-pre.2
7 years ago
3.0.0-pre.1
7 years ago
1.2.0-pre.3
8 years ago
1.2.0-pre.2
8 years ago
1.2.0-pre.1
8 years ago
0.0.4
8 years ago
0.0.3
9 years ago
0.0.1
9 years ago