Skip to content

Commit

Permalink
Client: Some nicer icons for the drawer
Browse files Browse the repository at this point in the history
  • Loading branch information
Donkie committed May 17, 2023
1 parent 40dc486 commit 70e4054
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions client/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down Expand Up @@ -73,6 +78,7 @@ function App() {
show: "/spool/show/:id",
meta: {
canDelete: true,
icon: <FileOutlined />,
},
},
{
Expand All @@ -83,6 +89,7 @@ function App() {
show: "/filament/show/:id",
meta: {
canDelete: true,
icon: <HighlightOutlined />,
},
},
{
Expand All @@ -93,6 +100,7 @@ function App() {
show: "/vendor/show/:id",
meta: {
canDelete: true,
icon: <UserOutlined />,
},
},
]}
Expand Down

0 comments on commit 70e4054

Please sign in to comment.