import type { ComponentProps } from 'react'; import { type SidebarTrigger, useSidebar } from '@/components/ui/sidebar'; import { BetterTooltip } from '@/components/ui/tooltip'; import { SidebarLeftIcon } from './icons'; import { Button } from './ui/button'; export function SidebarToggle({ className, }: ComponentProps) { const { toggleSidebar } = useSidebar(); return ( ); }