|
@@ -0,0 +1,45 @@
|
|
|
+import * as SolidIcons from "@fortawesome/free-solid-svg-icons";
|
|
|
+import { faFacebook, faYoutube, faPinterest, faGoogle } from '@fortawesome/free-brands-svg-icons';
|
|
|
+
|
|
|
+const solidIconNames = [
|
|
|
+ 'apple-alt',
|
|
|
+ 'carrot',
|
|
|
+ 'pepper-hot',
|
|
|
+ 'lemon',
|
|
|
+ 'fish', 'bacon', 'drumstick-bite', 'hamburger', 'hotdog', 'bone',
|
|
|
+ 'pizza-slice',
|
|
|
+ 'bread-slice', 'cheese', 'egg',
|
|
|
+ 'ice-cream', 'birthday-cake', 'cookie', 'cookie-bite', 'candy-cane', 'stroopwafel',
|
|
|
+ 'coffee', 'mug-hot', 'wine-bottle', 'wine-glass-alt', 'beer', 'cocktail', 'glass-martini-alt', 'glass-cheers', 'glass-whiskey',
|
|
|
+ 'mortar-pestle', 'blender', 'utensils',
|
|
|
+ 'concierge-bell',
|
|
|
+ 'seedling', 'leaf', 'holly-berry',
|
|
|
+ 'heart', 'heartbeat',
|
|
|
+ 'grin-tongue-squint', 'grin-stars', 'grin-tongue', 'grin-hearts', 'grin-beam-sweat',
|
|
|
+ 'crown',
|
|
|
+ 'brain',
|
|
|
+ 'balance-scale', 'balance-scale-right', 'weight',
|
|
|
+ 'shopping-cart', 'shopping-basket', 'shopping-bag',
|
|
|
+ 'globe-africa', 'globe-americas', 'globe-asia', 'globe-europe',
|
|
|
+ 'suitcase-rolling', 'suitcase',
|
|
|
+ 'snowflake', 'fire', 'thermometer-empty', 'thermometer-full', 'thermometer-half', 'thermometer-quarter', 'thermometer-three-quarters',
|
|
|
+ 'book', 'bookOpen',
|
|
|
+ 'disease',
|
|
|
+ 'tag', 'tags', 'thumbtack',
|
|
|
+ '-percent',
|
|
|
+ 'user-friends', 'users', 'user', 'user-tie', 'user-nurse', 'user-graduate', 'user-check',
|
|
|
+ 'hands-helping',
|
|
|
+ 'houseUser', 'home', 'caravan',
|
|
|
+ 'newspaper',
|
|
|
+ 'baby-carriage', 'baby',
|
|
|
+ 'dog', 'cat'];
|
|
|
+
|
|
|
+function sortFunction(a, b) { // icons will get sorted in the order they appear in the list above
|
|
|
+ return solidIconNames.indexOf(a.iconName) < solidIconNames.indexOf(b.iconName) ? -1 : 1;
|
|
|
+}
|
|
|
+
|
|
|
+const categoryIcons = Object.values(SolidIcons)
|
|
|
+ .filter(i => solidIconNames.includes(i.iconName))
|
|
|
+ .sort(sortFunction);
|
|
|
+categoryIcons.push(faYoutube, faPinterest, faGoogle, faFacebook);
|
|
|
+export default categoryIcons;
|