I build app that will present a lot of icons so I need list of all Font-Awesome class name like
[\"fa-dropbox\",\"fa-rocket\",\"fa-globe\", ....]
so on is ther
https://pastebin.com/JNtUcwyM - Complete list of complete class names with labels for version 5.0.1
if you retrieve a list of classes for a specific group you can add prefix and label then
var icons = []
brands.forEach(function(icon) {
let element = {}
element.className = "fab fa-" + icon;
element.label = icon.replace(/-/g, ' ');
icons.push(element);
});
console.log(JSON.stringify(icons))