SVG Icon

HTML

<button class="icon-plus"></button>
<button class="icon-chart"></button>

CSS

html { padding: 50px; }

button {
    width:  32px;
    height: 32px;
    border: 0;
    margin: 4px;
    cursor: pointer;
    border: 1px red;
}
button.icon-plus { background: url(http://swedmobil.ru/i/body/--.svg) no-repeat; }
button.icon-chart { background: url(http://swedmobil.ru/i/body/--.svg) no-repeat; }

button:hover { background-color: #999; }
button:active { background-color: #666; }

JavaScript

// SVG Stacks Demo

// Current browser-support: Firefox

// SVG modification + technique by @erikdahlstrom