Skip to content

Commit

Permalink
feat: use drawer icon instead of documents
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan6erbond committed May 6, 2023
1 parent 027a6c9 commit 45716ee
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/components/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -159,7 +159,7 @@ function Layout({ children }: LayoutProps) {
radius="xl"
onClick={toggle}
>
<HiDocumentDuplicate size={24} />
<SlDrawer size={24} />
</ActionIcon>
)}
</AppShell>
Expand Down

0 comments on commit 45716ee

Please sign in to comment.