mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-16 23:16:48 +00:00
10 lines
458 B
JavaScript
10 lines
458 B
JavaScript
import { useGlobal } from '@/lib/global'
|
|
import Link from 'next/link'
|
|
|
|
export default function SearchButton() {
|
|
const { locale } = useGlobal()
|
|
return <Link href="/search" title={locale.NAV.SEARCH} alt={locale.NAV.SEARCH} className='cursor-pointer hover:bg-black hover:bg-opacity-10 rounded-full w-10 h-10 flex justify-center items-center duration-200 transition-all'>
|
|
<i title={locale.NAV.SEARCH} className="fa-solid fa-magnifying-glass"/>
|
|
</Link>
|
|
}
|