File tree Expand file tree Collapse file tree
apps/web/src/components/dashboard Expand file tree Collapse file tree Original file line number Diff line number Diff 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";
2321import { ProfilePic } from "./ProfilePic" ;
2422import { useSubscription } from "@/hooks/useSubscription" ;
2523import { OpensoxProBadge } from "../sheet/OpensoxProBadge" ;
24+ import { ChevronLeftIcon , ChevronRightIcon } from 'lucide-react' ;
2625
2726const 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 >
You can’t perform that action at this time.
0 commit comments