diff --git a/components/Sidebar/SidebarButton.tsx b/components/Sidebar/SidebarButton.tsx index 7606055..0bad008 100644 --- a/components/Sidebar/SidebarButton.tsx +++ b/components/Sidebar/SidebarButton.tsx @@ -9,10 +9,10 @@ interface Props { export const SidebarButton: FC = ({ text, icon, onClick }) => { return (
-
{icon}
+
{icon}
{text}
); diff --git a/components/Sidebar/SidebarSettings.tsx b/components/Sidebar/SidebarSettings.tsx index e288745..38c42b3 100644 --- a/components/Sidebar/SidebarSettings.tsx +++ b/components/Sidebar/SidebarSettings.tsx @@ -1,4 +1,4 @@ -import { IconMoon, IconSun } from "@tabler/icons-react"; +import { IconMoon, IconSun, IconTrash } from "@tabler/icons-react"; import { FC } from "react"; import { SidebarButton } from "./SidebarButton"; @@ -9,10 +9,10 @@ interface Props { export const SidebarSettings: FC = ({ lightMode, onToggleLightMode }) => { return ( -
+
: } + icon={lightMode === "light" ? : } onClick={() => onToggleLightMode(lightMode === "light" ? "dark" : "light")} />