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 <!-- |
| 11 /** |
| 12 * @group Polymer Core Elements |
| 13 * |
| 14 * The `core-iconset-svg` element allows users to define their own icon sets |
| 15 * that contain svg icons. The svg icon elements should be children of the |
| 16 * `core-iconset-svg` element. Multiple icons should be given distinct id's. |
| 17 * |
| 18 * Using svg elements to create icons has a few advantages over traditional |
| 19 * bitmap graphics like jpg or png. Icons that use svg are vector based so they |
| 20 * are resolution independent and should look good on any device. They are |
| 21 * stylable via css. Icons can be themed, colorized, and even animated. |
| 22 * |
| 23 * Example: |
| 24 * |
| 25 * <core-iconset-svg id="my-svg-icons" iconSize="24"> |
| 26 * <svg> |
| 27 * <defs> |
| 28 * <g id="shape"> |
| 29 * <rect x="50" y="50" width="50" height="50" /> |
| 30 * <circle cx="50" cy="50" r="50" /> |
| 31 * </g> |
| 32 * </defs> |
| 33 * </svg> |
| 34 * </core-iconset-svg> |
| 35 * |
| 36 * This will automatically register the icon set "my-svg-icons" to the iconset |
| 37 * database. To use these icons from within another element, make a |
| 38 * `core-iconset` element and call the `byId` method |
| 39 * to retrieve a given iconset. To apply a particular icon inside an |
| 40 * element use the `applyIcon` method. For example: |
| 41 * |
| 42 * iconset.applyIcon(iconNode, 'car'); |
| 43 * |
| 44 * @element core-iconset-svg |
| 45 * @extends core-meta |
| 46 * @homepage github.io |
| 47 */ |
| 48 --> |
| 49 |
| 50 <link rel="import" href="../core-iconset/core-iconset.html"> |
| 51 |
| 52 <polymer-element name="core-iconset-svg" extends="core-meta" attributes="iconSiz
e" assetpath=""> |
| 53 |
| 54 |
| 55 |
| 56 </polymer-element> |
| 57 <script src="core-iconset-svg-extracted.js"></script> |
OLD | NEW |