Client: Some nicer icons for the drawer

This commit is contained in:
Donkie
2023-05-17 22:15:26 +02:00
parent 40dc48668b
commit 70e4054727

View File

@@ -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: <FileOutlined />,
},
},
{
@@ -83,6 +89,7 @@ function App() {
show: "/filament/show/:id",
meta: {
canDelete: true,
icon: <HighlightOutlined />,
},
},
{
@@ -93,6 +100,7 @@ function App() {
show: "/vendor/show/:id",
meta: {
canDelete: true,
icon: <UserOutlined />,
},
},
]}