"use client"; import { PanelLeft } from "lucide-react"; import { useChatStore } from "@/lib/store"; import { cn } from "@/lib/utils"; interface SidebarToggleProps { className?: string; } export function SidebarToggle({ className }: SidebarToggleProps) { const { sidebarOpen, toggleSidebar } = useChatStore(); return ( ); }