mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 11:28:23 -07:00
42 lines
1.7 KiB
HTML
42 lines
1.7 KiB
HTML
<!--
|
|
Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
|
|
This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
|
|
The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
|
|
The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
|
|
Code distributed by Google as part of the polymer project is also
|
|
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
|
|
-->
|
|
<!--
|
|
`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>
|
|
|
|
|
|
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.
|
|
|
|
@group Iron Elements
|
|
@element iron-icons
|
|
@demo demo/index.html
|
|
-->
|
|
|
|
<iron-iconset-svg name="nav" size="24">
|
|
<svg>
|
|
<defs>
|
|
<g id="arrow-back"><path d="M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20v-2z" /></g>
|
|
<g id="check"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z" /></g>
|
|
</defs>
|
|
</svg>
|
|
</iron-iconset-svg>
|