/***

Icons
=====

Icons are combined into one SVG as symbols by the Gulp task. This also generates a SCSS file detailing the dimensions of each icon with a corresponding CSS class name. The compiled symbols SVG is ajax'd into the document in the head.js.

Read more about our suggested accessibility approaches [here](https://code.area17.com/a17/fe-boilerplate/wikis/svg-sprite).

```
<svg class="icon--icon_test">
  <use xlink:href="#icon--icon_test"></use>
</svg>
```

***/

.icon--icon_test {
  width: 60px;
  height: 60px;
}

