@fortawesome/free-brands-svg-icons#faTwitterSquare JavaScript Examples

The following examples show how to use @fortawesome/free-brands-svg-icons#faTwitterSquare. 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: footer.js    From turqV2 with GNU General Public License v3.0 5 votes vote down vote up
Footer = () => (
<footer className="footer">
  <Grid className="footer" container alignItems="center" justify="space-between">
    <Grid container item xs={12} md={4} justify="center">
      <Grid item xs={12} md={6}>
        <Typography variant="body1" color="textSecondary" component="h4" align="center">
          <div className="footer-text">© copyright 2020 turq, pbc</div>
        </Typography>
      </Grid>
      <Grid item xs={12} md={6}>
        <Typography variant="body1" color="textSecondary" component="h4" align="center">
          <div className="footer-text">Contact: [email protected]</div>
        </Typography>
      </Grid>
    </Grid>
    <Grid container item xs={12} md={4} alignItems="center" justify="center">
      <Grid item>
        <a
          href="https://twitter.com/Turqpbc"
          target="_blank"
          rel="noopener noreferrer"
          className="mx-2"
        >
          <FontAwesomeIcon className="footer-text" size="2x" icon={faTwitterSquare} />
        </a>
      </Grid>
      <Grid item>
        <a
          href="https://www.instagram.com/turq.io/"
          target="_blank"
          rel="noopener noreferrer"
          className="mx-2"
        >
          <FontAwesomeIcon className="footer-text" size="2x" icon={faInstagramSquare} />
        </a>
      </Grid>
      <Grid item>
        <a
          href="https://github.com/TurqPBC"
          target="_blank"
          rel="noopener noreferrer"
          className="mx-2"
        >
          <FontAwesomeIcon className="footer-text" size="2x" icon={faGithubSquare} />
        </a>
      </Grid>
      <Grid item>
        <a
          href="https://www.reddit.com/r/citizenlegislation/"
          target="_blank"
          rel="noopener noreferrer"
          className="mx-2"
        >
          <FontAwesomeIcon className="footer-text" size="2x" icon={faRedditSquare} />
        </a>
      </Grid>
    </Grid>
    <Grid container item xs={12} md={4} justify="center">
      <Grid item>
        <Typography variant="body1" color="textSecondary" component="h4" align="center">
          <a className="footer-link" href="https://github.com/TurqPBC/turqV2/blob/master/TERMS_OF_USE.md">Terms of Use</a>
        </Typography>
      </Grid>
    </Grid>
  </Grid>
</footer>
)