In a application, some objects have icons. In PHP I would call
class Icons {
const OBJECT_A_ICON = 'fa-icona';
const OBJECT_B_ICON = 'fa-iconb';
const OBJECT_C_ICON = 'fa-iconc';
}
echo Icons::OBJECT_C_ICON;
What is the best approach to do this in angular?