@material-ui/icons#Portrait JavaScript Examples

The following examples show how to use @material-ui/icons#Portrait. 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: Developer.jsx    From soundly with MIT License 5 votes vote down vote up
Developer = () => {
  return (
    <div className={"Developer"}>
      <h3 className={"Developer-head"}>Meet the developer</h3>
      <div className="Developer-profile">
        <div className="Developer-profileCard">
          <img src={AvatarImage} alt="Profile" />
          <div className={"Card-details"}>
            <h3>Vishal Singh</h3>
            <p>Full Stack developer</p>
            <p>Competitive Coder</p>
          </div>
        </div>
        <div className="Developer-profileDetails">
          <p>A Computer Science and Engineering Student at Lovely Professional University, Punjab.</p>
          <p>Graduating in 2022 and looking for a responsible position to gain practical knowledge</p>
          <p>A full-stack web developer and a Competitive coder.</p>
          <p>I love designing fully responsive websites.</p>
          <p>I have a keen interest in developing projects, whenever I want to learn something new.</p>
          <p>And a blogger.</p>
          <div className="Card-btn">
            <IconButton target={"_blank"} href={"https://www.facebook.com/vishal.kld"} title={"vishal.kld"}>
              <Facebook />
            </IconButton>
            <IconButton target={"_blank"} href={"https://twitter.com/Vishal_kld"} title={"Vishal_kld"}>
              <Twitter />
            </IconButton>
            <IconButton target={"_blank"} href={"https://www.linkedin.com/in/vishalsingh-/"} title={"vishalsingh-"}>
              <LinkedIn />
            </IconButton>
            <IconButton target={"_blank"} href={"https://www.instagram.com/vishalsingh023/"} title={"vishalsingh023"}>
              <Instagram />
            </IconButton>
            <IconButton target={"_blank"} href={"https://vishal.thetechnician.in/"} title={"Web Portfolio"}>
              <Portrait />
            </IconButton>
          </div>
        </div>
      </div>
    </div>
  );
}