Contact.jsx 763 B

123456789101112131415161718192021222324252627282930
  1. import React from 'react';
  2. import {Link, Typography} from "@mui/material";
  3. export const Contact = ({Icon, text, link}) => {
  4. return (
  5. <Typography
  6. color="inherit"
  7. variant="h6"
  8. noWrap
  9. component="div"
  10. >
  11. <Link
  12. className='Footer__Contact'
  13. display="flex"
  14. flexDirection="row"
  15. alignItems="center"
  16. textAlign="left"
  17. padding="10px 0"
  18. component="a"
  19. variant="body2"
  20. color="#fff"
  21. underline="none"
  22. href={link}
  23. >
  24. <Icon />
  25. {text}
  26. </Link>
  27. </Typography>
  28. )
  29. }