import { usePrimaryPage } from '@/PageManager' import { Wand2 } from 'lucide-react' import SidebarItem from './SidebarItem' export default function SpellsButton() { const { navigate, current, display } = usePrimaryPage() const isActive = display && current === 'spells' return ( navigate('spells')} active={isActive}> ) }