Contact.jsx 736 B

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