Index: third_party/polymer/v0_8/components-chromium/paper-icon-button/paper-icon-button-extracted.js |
diff --git a/third_party/polymer/v0_8/components-chromium/paper-icon-button/paper-icon-button-extracted.js b/third_party/polymer/v0_8/components-chromium/paper-icon-button/paper-icon-button-extracted.js |
new file mode 100644 |
index 0000000000000000000000000000000000000000..523fe5099a54475164efb75abd1d894a8f2a63f6 |
--- /dev/null |
+++ b/third_party/polymer/v0_8/components-chromium/paper-icon-button/paper-icon-button-extracted.js |
@@ -0,0 +1,29 @@ |
+ |
+ Polymer({ |
+ is: 'paper-icon-button', |
+ |
+ behaviors: [ |
+ Polymer.PaperButtonBehavior |
+ ], |
+ |
+ enableCustomStyleProperties: true, |
+ |
+ properties: { |
+ /** |
+ * The URL of an image for the icon. If the src property is specified, |
+ * the icon property should not be. |
+ */ |
+ src: { |
+ type: String |
+ }, |
+ |
+ /** |
+ * Specifies the icon name or index in the set of icons available in |
+ * the icon's icon set. If the icon property is specified, |
+ * the src property should not be. |
+ */ |
+ icon: { |
+ type: String |
+ } |
+ } |
+ }); |