4 Material Design: <a href="http://www.google.com/design/spec/components/buttons.html">Buttons</a>
6 `paper-icon-button` is a button with an image placed at the center. When the user touches
7 the button, a ripple effect emanates from the center of the button.
9 `paper-icon-button` includes a default icon set. Use `icon` to specify which icon
10 from the icon set to use.
13 <paper-icon-button icon="menu"></paper-icon-button>
16 See [`iron-iconset`](#iron-iconset) for more information about
17 how to use a custom icon set.
22 <link href="path/to/iron-icons/iron-icons.html" rel="import">
24 <paper-icon-button icon="favorite"></paper-icon-button>
25 <paper-icon-button src="star.png"></paper-icon-button>
31 Style the button with CSS as you would a normal DOM element. If you are using the icons
32 provided by `iron-icons`, they will inherit the foreground color of the button.
35 <!-- make a red "favorite" button -->
36 <paper-icon-button icon="favorite" style="color: red;"></paper-icon-button>
39 By default, the ripple is the same color as the foreground at 25% opacity. You may
40 customize the color using this selector:
43 /* make #my-button use a blue ripple instead of foreground color */
44 #my-button::shadow #ripple {
49 The opacity of the ripple is not customizable via CSS.