Stylus Port for Font Awesome
Import font-awesome in your project and configure fonts path correctly ($fa-font-path)
bower install font-awesome-stylus
npm install font-awesome-stylus
Set font path
$fa-font-path = "../fonts"
// OR
$fa-font-path = "http://netdna.bootstrapcdn.com/font-awesome/4.7.0/fonts"
Example of requiring and using font-awesome middleware to create compile function to utilize in other frameworks.
var fontAwesome = require('font-awesome-stylus'),
stylus = require('stylus');
function compile(str) {
return stylus(str)
.use(fontAwesome());
}
To import whole font-awesome in your stylus file:
@import "font-awesome-stylus"
Include icon using mixin
.my-icon
fa(user)