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