1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-11-27 17:00:52 +01:00
This commit is contained in:
Nayam Amarshe 2024-04-25 01:30:08 +05:30
parent 1b947d82c1
commit 99f475df1f

View File

@ -1,9 +1,7 @@
import { lensSizeAtom, viewTypeAtom } from "@/atoms/userSettingsAtom"; import { lensSizeAtom, viewTypeAtom } from "@/atoms/userSettingsAtom";
import SidebarClosed from "@/components/icons/SidebarClosed";
import SidebarOpened from "@/components/icons/SidebarOpened";
import { cn } from "@/lib/utils"; import { cn } from "@/lib/utils";
import { useAtom } from "jotai"; import { useAtom } from "jotai";
import { Settings2Icon, WrenchIcon } from "lucide-react"; import { WrenchIcon } from "lucide-react";
import { useEffect, useState } from "react"; import { useEffect, useState } from "react";
const ImageOptions = ({ const ImageOptions = ({
@ -39,7 +37,7 @@ const ImageOptions = ({
}`} }`}
> >
<div <div
className={`group rounded-btn absolute right-[100%] top-1/2 z-50 flex cursor-pointer items-center gap-2 rounded-r-none bg-base-100 p-4 transition-all duration-500`} className={`group absolute right-[100%] top-1/2 z-50 flex cursor-pointer items-center gap-2 rounded-btn rounded-r-none bg-base-100 p-4 transition-all duration-500`}
onClick={() => { onClick={() => {
setOpenSidebar(!openSidebar); setOpenSidebar(!openSidebar);
}} }}