portfolio/components/SocialLink.tsx

17 lines
490 B
TypeScript
Raw Normal View History

2023-01-21 22:59:27 +00:00
import Link from 'next/link'
import {ElementType} from 'react'
type SocialLink = {
href: string
2023-01-22 00:12:13 +00:00
ariaLabel: string
2023-01-21 22:59:27 +00:00
icon: ElementType
}
2023-01-22 00:12:13 +00:00
export function SocialLink({icon: Icon, href, ariaLabel}: SocialLink) {
2023-01-21 22:59:27 +00:00
return (
2023-01-22 00:12:13 +00:00
<Link className="group -m-1 p-1" href={href} aria-label={ariaLabel}>
2023-01-21 22:59:27 +00:00
<Icon
className="h-6 w-6 fill-zinc-500 transition group-hover:fill-zinc-600 dark:fill-zinc-400 dark:group-hover:fill-zinc-300"/>
</Link>
)
}