6 Polymer.PaperButtonBehavior
11 * The URL of an image for the icon. If the src property is specified,
12 * the icon property should not be.
24 * Specifies the icon name or index in the set of icons available in
25 * the icon's icon set. If the icon property is specified,
26 * the src property should not be.
38 * Set this to true to style this is a "mini" FAB.
47 reflectToAttribute: true
51 _computeContentClass: function(receivedFocusFromKeyboard) {
52 var className = 'content';
53 if (receivedFocusFromKeyboard) {
54 className += ' keyboard-focus';