font-awesome icons in a nice sheet so that WARPAINT could design some mockups for a client. Well, of course this sheet doesn't exists.
So I used the following code to grab the icons from the cheatsheet page.
var arr = "";
$('.container .col-md-4').each(function(i, e) {
arr += e.innerText.slice(0,1) + ', ';
});
console.log(arr);
I then took that output and pasted it into Sublime Text. I split the output into multiple lines, and replaced the commas with double spaces. That was then pasted into Illustrator and exported as SVG.
Voila! There you have this sprite sheet.
You can download it here.
These icons are from version 4.0.2
I'm a full-stack developer, co-organizer of PHP Vancouver meetup, and winner of a Canadian Developer 30 under 30 award. I'm a huge Open Source advocate and contributor to a lot of projects in my community. When I am not sitting at a computer, I'm trying to perfect some other skill.