From 45716ee743c1e7b4cf182bfab2b61588514d1f8a Mon Sep 17 00:00:00 2001 From: RaviAnand Mohabir Date: Sat, 6 May 2023 10:21:58 +0200 Subject: [PATCH] feat: use drawer icon instead of documents --- src/components/layout.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/components/layout.tsx b/src/components/layout.tsx index bf3c92b..154b30e 100644 --- a/src/components/layout.tsx +++ b/src/components/layout.tsx @@ -6,24 +6,24 @@ import { AppShell, Badge, Box, + Center, Drawer, Group, + Image, Paper, Stack, Text, Title, Tooltip, - Image, - Center, } from "@mantine/core"; +import { IMAGE_MIME_TYPE } from "@mantine/dropzone"; import { useDisclosure } from "@mantine/hooks"; import Link from "next/link"; import { Record } from "pocketbase"; import React, { useEffect, useState } from "react"; -import { HiDocumentDuplicate } from "react-icons/hi"; +import { SlDrawer } from "react-icons/sl"; import { getRelativeTime } from "../utils/relativeTime"; import Header from "./header"; -import { IMAGE_MIME_TYPE } from "@mantine/dropzone"; interface LayoutProps { children?: React.ReactNode; @@ -159,7 +159,7 @@ function Layout({ children }: LayoutProps) { radius="xl" onClick={toggle} > - + )}