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