Switch out icon

This commit is contained in:
Austin Chen 2022-04-29 19:14:19 -04:00
parent 1a29dbbe3a
commit 569f007986

View File

@ -3,8 +3,8 @@ import Link from 'next/link'
import { import {
HomeIcon, HomeIcon,
MenuAlt3Icon, MenuAlt3Icon,
PresentationChartLineIcon,
SearchIcon, SearchIcon,
TableIcon,
XIcon, XIcon,
} from '@heroicons/react/outline' } from '@heroicons/react/outline'
import { Transition, Dialog } from '@headlessui/react' import { Transition, Dialog } from '@headlessui/react'
@ -39,7 +39,10 @@ export function BottomNavBar() {
{user !== null && ( {user !== null && (
<Link href="/portfolio"> <Link href="/portfolio">
<a className="block w-full py-1 px-3 text-center hover:bg-indigo-200 hover:text-indigo-700"> <a className="block w-full py-1 px-3 text-center hover:bg-indigo-200 hover:text-indigo-700">
<TableIcon className="my-1 mx-auto h-6 w-6" aria-hidden="true" /> <PresentationChartLineIcon
className="my-1 mx-auto h-6 w-6"
aria-hidden="true"
/>
Portfolio Portfolio
</a> </a>
</Link> </Link>