Skip to content

Commit 2122bac

Browse files
committed
style(ui): update chevron icons for improved visuals
1 parent 308050d commit 2122bac

1 file changed

Lines changed: 4 additions & 5 deletions

File tree

apps/web/src/components/dashboard/Sidebar.tsx

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ import {
1111
HomeIcon,
1212
FolderIcon,
1313
ArrowRightOnRectangleIcon,
14-
ChevronDoubleLeftIcon,
15-
ChevronDoubleRightIcon,
1614
SparklesIcon,
1715
StarIcon,
1816
DocumentTextIcon,
@@ -23,6 +21,7 @@ import { signOut, useSession } from "next-auth/react";
2321
import { ProfilePic } from "./ProfilePic";
2422
import { useSubscription } from "@/hooks/useSubscription";
2523
import { OpensoxProBadge } from "../sheet/OpensoxProBadge";
24+
import { ChevronLeftIcon, ChevronRightIcon } from 'lucide-react';
2625

2726
const SIDEBAR_ROUTES = [
2827
{
@@ -102,9 +101,9 @@ export default function Sidebar({ overlay = false }: { overlay?: boolean }) {
102101
className={isCollapsed ? "w-full flex justify-center" : ""}
103102
>
104103
{isCollapsed ? (
105-
<ChevronDoubleRightIcon className="size-5 text-ox-purple" />
104+
<ChevronRightIcon className="size-5 text-ox-purple" />
106105
) : (
107-
<ChevronDoubleLeftIcon className="size-5 text-ox-purple" />
106+
<ChevronLeftIcon className="size-5 text-ox-purple" />
108107
)}
109108
</IconWrapper>
110109
</div>
@@ -201,7 +200,7 @@ function ProfileMenu({ isCollapsed }: { isCollapsed: boolean }) {
201200
</span>
202201
<span className="text-[10px] text-zinc-400">{userEmail}</span>
203202
</div>
204-
<ChevronDoubleLeftIcon
203+
<ChevronLeftIcon
205204
className={`size-4 text-zinc-400 transition-transform ${open ? "rotate-90" : "-rotate-90"}`}
206205
/>
207206
</div>

0 commit comments

Comments
 (0)