Sha256: 49926abb1d6ef96351a83c47b0bb2de5501f9e85dea914338ee78e1a90aec57d
Contents?: true
Size: 1.37 KB
Versions: 1
Compression:
Stored size: 1.37 KB
Contents
<!-- 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 --> <!-- `<paper-fab>` is a floating action button with an icon. It comes in two sizes: regular size and a smaller size by applying the class `mini`. Example: <paper-fab icon="favorite"></paper-fab> <paper-fab class="mini"></paper-fab> @group Paper Elements @element paper-fab @homepage github.io @extends paper-icon-button --> <%= html_import_tag "paper-icon-button/paper-icon-button" %> <polymer-element name="paper-fab" extends="paper-icon-button"> <template> <%= stylesheet_link_tag "paper-fab/paper-fab" %> <shadow></shadow> </template> <script> Polymer('paper-fab', { publish: { /** * See [`<paper-button>`](../paper-button). * * @attribute raisedButton * @type boolean * @default true */ raisedButton: {value: true, reflect: true} } }); </script> </polymer-element>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
polymer-paper-rails-0.1.0 | app/assets/components/paper-fab/paper-fab.html.erb |