From 70e4054727b2a6cadfe5407eee0bd82b3e674e60 Mon Sep 17 00:00:00 2001 From: Donkie Date: Wed, 17 May 2023 22:15:26 +0200 Subject: [PATCH] Client: Some nicer icons for the drawer --- client/src/App.tsx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/client/src/App.tsx b/client/src/App.tsx index 26cbb90..e843f87 100644 --- a/client/src/App.tsx +++ b/client/src/App.tsx @@ -33,6 +33,11 @@ import { VendorShow, } from "./pages/vendors"; import { ReactComponent as Logo } from "./icon.svg"; +import { + FileOutlined, + HighlightOutlined, + UserOutlined, +} from "@ant-design/icons"; function App() { const { t, i18n } = useTranslation(); @@ -73,6 +78,7 @@ function App() { show: "/spool/show/:id", meta: { canDelete: true, + icon: , }, }, { @@ -83,6 +89,7 @@ function App() { show: "/filament/show/:id", meta: { canDelete: true, + icon: , }, }, { @@ -93,6 +100,7 @@ function App() { show: "/vendor/show/:id", meta: { canDelete: true, + icon: , }, }, ]}