2021-08-09 10:52:02 +09:00
|
|
|
// Next.js
|
|
|
|
import Link from 'next/link'
|
|
|
|
|
2021-08-09 11:33:00 +09:00
|
|
|
// Font Awesome
|
2021-08-09 10:52:02 +09:00
|
|
|
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
|
|
|
|
|
|
|
|
const FontAwesomeMenu = (props) => {
|
2021-08-09 11:47:11 +09:00
|
|
|
const { icon, dest } = props
|
2021-08-09 10:52:02 +09:00
|
|
|
|
|
|
|
return (
|
|
|
|
<div>
|
2021-08-09 11:47:11 +09:00
|
|
|
<Link href={dest}>
|
2021-08-09 10:52:02 +09:00
|
|
|
<a>
|
|
|
|
<FontAwesomeIcon icon={icon} className="w-10 h-10 fill-current inline transition duration-200 ease-in-out transform hover:-translate-y-1 hover:scale-110" />
|
|
|
|
</a>
|
|
|
|
</Link>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
export default FontAwesomeMenu
|