From 1431c09c4a208e9bbc06d3c6731a91d83e84e9fc Mon Sep 17 00:00:00 2001 From: atticusofsparta Date: Thu, 9 Jan 2025 12:21:28 -0600 Subject: [PATCH] fix(icon): add icon for returned names page --- src/utils/routes.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utils/routes.tsx b/src/utils/routes.tsx index 94d7fa2b..d6518a4b 100644 --- a/src/utils/routes.tsx +++ b/src/utils/routes.tsx @@ -1,6 +1,6 @@ import RNPPage from '@src/components/pages/RNPPage/RNPPage'; import Settings from '@src/components/pages/Settings/SettingsLayout'; -import { Settings2Icon } from 'lucide-react'; +import { Recycle, Settings2Icon } from 'lucide-react'; import { SettingsIcon } from '../components/icons'; import { Home, Manage } from '../components/pages'; @@ -47,7 +47,7 @@ export const ROUTES: { [x: string]: Route } = { }, returnedNames: { text: 'Returned Names', - icon: WrappedSettings2Icon, + icon: Recycle, path: '/returned-names', component: RNPPage, protected: false,