1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-10-05 21:16:09 +02:00
.profile/components/Profile/SocialMediaList/SocialMediaItem.tsx

23 lines
569 B
TypeScript
Raw Normal View History

interface SocialMediaItemProps extends React.PropsWithChildren {
2021-04-18 01:56:23 +02:00
link: string
ariaLabel: string
2021-04-18 01:56:23 +02:00
}
export const SocialMediaItem = (props: SocialMediaItemProps): JSX.Element => {
const { link, ariaLabel, children } = props
2021-04-18 01:56:23 +02:00
return (
<li className="mx-4 my-1 inline-block">
<a
href={link}
aria-label={ariaLabel}
target="_blank"
rel="noopener noreferrer"
2024-05-16 09:26:05 +02:00
className="relative inline-block bg-transparent transition-all duration-300 ease-in-out hover:scale-110"
>
{children}
</a>
</li>
2021-04-18 01:56:23 +02:00
)
}