OLD | NEW |
| (Empty) |
1 <!-- | |
2 Copyright (c) 2014 The Polymer Project Authors. All rights reserved. | |
3 This code may only be used under the BSD style license found at http://polymer.g
ithub.io/LICENSE.txt | |
4 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt | |
5 The complete set of contributors may be found at http://polymer.github.io/CONTRI
BUTORS.txt | |
6 Code distributed by Google as part of the polymer project is also | |
7 subject to an additional IP rights grant found at http://polymer.github.io/PATEN
TS.txt | |
8 --><!-- | |
9 /** | |
10 * @group Polymer Core Elements | |
11 * | |
12 * The `core-iconset-svg` element allows users to define their own icon sets | |
13 * that contain svg icons. The svg icon elements should be children of the | |
14 * `core-iconset-svg` element. Multiple icons should be given distinct id's. | |
15 * | |
16 * Using svg elements to create icons has a few advantages over traditional | |
17 * bitmap graphics like jpg or png. Icons that use svg are vector based so they | |
18 * are resolution independent and should look good on any device. They are | |
19 * stylable via css. Icons can be themed, colorized, and even animated. | |
20 * | |
21 * Example: | |
22 * | |
23 * <core-iconset-svg id="my-svg-icons" iconSize="24"> | |
24 * <svg> | |
25 * <defs> | |
26 * <g id="shape"> | |
27 * <rect x="50" y="50" width="50" height="50" /> | |
28 * <circle cx="50" cy="50" r="50" /> | |
29 * </g> | |
30 * </defs> | |
31 * </svg> | |
32 * </core-iconset-svg> | |
33 * | |
34 * This will automatically register the icon set "my-svg-icons" to the iconset | |
35 * database. To use these icons from within another element, make a | |
36 * `core-iconset` element and call the `byId` method | |
37 * to retrieve a given iconset. To apply a particular icon inside an | |
38 * element use the `applyIcon` method. For example: | |
39 * | |
40 * iconset.applyIcon(iconNode, 'car'); | |
41 * | |
42 * @element core-iconset-svg | |
43 * @extends core-meta | |
44 * @homepage github.io | |
45 */ | |
46 --><html><head><link rel="import" href="../core-iconset/core-iconset.html"> | |
47 | |
48 </head><body><polymer-element name="core-iconset-svg" extends="core-meta" attrib
utes="iconSize" assetpath=""> | |
49 | |
50 | |
51 | |
52 </polymer-element> | |
53 <script charset="utf-8" src="core-iconset-svg-extracted.js"></script></body></ht
ml> | |
OLD | NEW |