import { cn } from "@/lib/utils"; import { ChevronRightIcon } from "lucide-react"; import React from "react"; const SidebarToggleButton = ({ showSidebar, setShowSidebar, }: { showSidebar: boolean; setShowSidebar: React.Dispatch>; }) => { return ( ); }; export default SidebarToggleButton;