react-icons/ai#AiFillYoutube JavaScript Examples

The following examples show how to use react-icons/ai#AiFillYoutube. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: SocialDetails.js    From js-code with ISC License 8 votes vote down vote up
SocialDetails = () => {
  return (
    <>
      <Div3>
        <SocialIcons data-testid="github" href={socialUrls.github}>
          <AiFillGithub size="3rem" />
        </SocialIcons>
        <SocialIcons data-testid="youtube" href={socialUrls.youtube}>
          <AiFillYoutube size="3rem" />
        </SocialIcons>
        <SocialIcons data-testid="linkedin" href={socialUrls.linkedIn}>
          <AiFillLinkedin size="3rem" />
        </SocialIcons>
        <SocialIcons data-testid="twitter" href={socialUrls.twitter}>
          <AiFillTwitterCircle size="3rem" />
        </SocialIcons>
      </Div3>
    </>
  );
}