secret/components/NavigationIcon.js
2023-09-22 12:47:50 +05:30

11 lines
251 B
JavaScript

import Link from 'next/link'
export default function NavigationIcon({ children, href }) {
return (
<Link href={href} passHref>
<a className='flex cursor-pointer text-white dark:text-white'>
{children}
</a>
</Link>
)
}