mirror of
https://github.com/blueskychan-dev/blueskychan.dev.git
synced 2025-07-07 15:21:04 +00:00
15 lines
324 B
JavaScript
15 lines
324 B
JavaScript
import Link from "next/link"
|
|
|
|
const ProfileLink = ({ href, LinkIcon }) => {
|
|
return (
|
|
<Link
|
|
href={href}
|
|
aria-label={href}
|
|
className={`bg-base-200 mx-3 rounded-lg p-1.5 transition-transform duration-200 ease-in-out hover:scale-110`}
|
|
>
|
|
{LinkIcon}
|
|
</Link>
|
|
)
|
|
}
|
|
|
|
export default ProfileLink
|