"use client";

import * as React from "react";
import { PanelLeftClose } from "lucide-react";
import { Button } from "@/components/ui/button";
import { useSidebar } from "@/components/ui/sidebar";

export function SidebarCloseButton() {
  const { toggleSidebar } = useSidebar();
  return (
    <Button
      variant="ghost"
      size="icon"
      className="shrink-0 size-8 rounded-[10px] text-[#575a62] transition-all hover:bg-[#1d1d39] hover:text-white"
      onClick={toggleSidebar}
      aria-label="Close sidebar"
    >
      <PanelLeftClose className="size-4" />
    </Button>
  );
}
