// Inspired by http://jaydenseric.com/blog/fun-with-sass-and-font-icons // To be more portable a well defined font-family should be used for icons. @function icon($icon) { $icons: ( cross: "\2715", hamburger: "\2630", ); @return map-get($icons, $icon); }