mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 19:38:20 -07:00
45 lines
1.9 KiB
HTML
45 lines
1.9 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="slideshow" 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="pause"><path d="M6 19h4V5H6v14zm8-14v14h4V5h-4z" /></g>
|
|
<g id="skip-next"><path d="M6 18l8.5-6L6 6v12zM16 6v12h2V6h-2z" /></g>
|
|
<g id="skip-previous"><path d="M6 6h2v12H6zm3.5 6l8.5 6V6z" /></g>
|
|
<g id="play-arrow"><path d="M8 5v14l11-7z" /></g>
|
|
</defs>
|
|
</svg>
|
|
</iron-iconset-svg>
|