forked from PolymerElements/iron-icons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathiron-icons.d.ts
43 lines (40 loc) · 1.59 KB
/
iron-icons.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/**
* DO NOT EDIT
*
* This file was automatically generated by
* https://github.com/Polymer/gen-typescript-declarations
*
* To modify these typings, edit the source file(s):
* iron-icons.html
*/
/// <reference path="../iron-icon/iron-icon.d.ts" />
/// <reference path="../iron-iconset-svg/iron-iconset-svg.d.ts" />
/**
* `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.
*
* The `iron-icons` directory also includes imports for additional icon sets that can be loaded into your project.
*
* Example loading icon set:
*
* <link rel="import" href="../iron-icons/maps-icons.html">
*
* To use an icon from one of these sets, first prefix your `iron-icon` with the icon set name, followed by a colon, ":", and then the icon id.
*
* Example using the directions-bus icon from the maps icon set:
*
* <iron-icon icon="maps:directions-bus"></iron-icon>
*
* To load a subset of icons from one of the default `iron-icons` sets, you can
* use the [poly-icon](https://poly-icon.appspot.com/) tool. It allows you
* to select individual icons, and creates an iconset from them that you can
* use directly in your elements.
*
* See [iron-icon](#iron-icon) for more information about working with icons.
*
* See [iron-iconset](#iron-iconset) and [iron-iconset-svg](#iron-iconset-svg) for more information about how to create a custom iconset.
*/
interface IronIconsElement extends Polymer.Element {
}
interface HTMLElementTagNameMap {
"iron-icons": IronIconsElement;
}