diff --git a/src/components/NavigationItems.js b/src/components/NavigationItems.js
index d69929c6f..91c38be17 100644
--- a/src/components/NavigationItems.js
+++ b/src/components/NavigationItems.js
@@ -13,10 +13,7 @@ const iconLibrary = {
'Build apps': 'buildApps',
'Automate workflows': 'automation',
'Explore docs': 'developerDocs',
-};
-
-const featherIconLibrary = {
- 'Developer champions': 'award',
+ 'Developer champions': 'developerChampions',
};
const getHighlightedText = (text, highlight) => {
@@ -71,15 +68,6 @@ const NavigationItems = ({
};
const NavIcon = ({ page }) => {
- if (featherIconLibrary[page.displayName]) {
- return (
-
- );
- }
-
if (iconLibrary[page.displayName]) {
return (
>
),
+ developerChampions: (
+ <>
+
+
+
+
+
+
+
+
+
+ >
+ ),
};
NewRelicIcon.propTypes = {