mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-05 13:01:30 +01:00
23 lines
478 B
TypeScript
23 lines
478 B
TypeScript
interface SocialMediaItemProps {
|
|
link: string
|
|
ariaLabel: string
|
|
}
|
|
|
|
export const SocialMediaItem: React.FC<SocialMediaItemProps> = (props) => {
|
|
const { link, ariaLabel, children } = props
|
|
|
|
return (
|
|
<li className='inline-block mx-4 my-1'>
|
|
<a
|
|
href={link}
|
|
aria-label={ariaLabel}
|
|
target='_blank'
|
|
rel='noopener noreferrer'
|
|
className='relative inline-block bg-transparent'
|
|
>
|
|
{children}
|
|
</a>
|
|
</li>
|
|
)
|
|
}
|