Initial import
[experiments/scss-responsive-toggle-menu.git] / scss / modules / _font-icons.scss
1 // Inspired by http://jaydenseric.com/blog/fun-with-sass-and-font-icons
2 // To be more portable a well defined font-family should be used for icons.
3
4 @function icon($icon) {
5   $icons: (
6     cross: "\2715",
7     hamburger: "\2630",
8   );
9
10   @return map-get($icons, $icon);
11 }