interface SocialMediaItemProps { link: string ariaLabel: string } export const SocialMediaItem: React.FC = (props) => { const { link, ariaLabel, children } = props return (
  • {children}
  • ) }