Bpistle/src/components/Sidebar/HomeButton.tsx
2025-01-02 21:57:14 +08:00

13 lines
372 B
TypeScript

import { usePrimaryPage } from '@/PageManager'
import { Home } from 'lucide-react'
import SidebarItem from './SidebarItem'
export default function HomeButton() {
const { navigate, current } = usePrimaryPage()
return (
<SidebarItem title="Home" onClick={() => navigate('home')} active={current === 'home'}>
<Home strokeWidth={3} />
</SidebarItem>
)
}