'use client' import * as React from 'react' import { useSidebar } from '@/lib/hooks/use-sidebar' import { Button } from '@/components/ui/button' import { IconSidebar } from '@/components/ui/icons' export function SidebarToggle() { const { toggleSidebar } = useSidebar() return ( ) }