You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

17 lines
622 B

import { usePrimaryPage } from '@/contexts/primary-page-context'
import { MessageCircle } from 'lucide-react'
import BottomNavigationBarItem from './BottomNavigationBarItem'
export default function DiscussionsButton() {
const { navigate, current, currentPageProps, display } = usePrimaryPage()
const spell = (currentPageProps as { spell?: string } | undefined)?.spell
return (
<BottomNavigationBarItem
active={current === 'spells' && display && spell === 'discussions'}
onClick={() => navigate('spells', { spell: 'discussions' })}
>
<MessageCircle />
</BottomNavigationBarItem>
)
}