import { IconMoon, IconSun } from "@tabler/icons-react"; import { FC } from "react"; import { SidebarButton } from "./SidebarButton"; interface Props { lightMode: "light" | "dark"; onToggleLightMode: (mode: "light" | "dark") => void; } export const SidebarSettings: FC = ({ lightMode, onToggleLightMode }) => { return (
: } onClick={() => onToggleLightMode(lightMode === "light" ? "dark" : "light")} />
); };