Proyectos de Subversion LeadersLinked - SPA

Rev

Rev 2997 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 2997 Rev 3694
Línea 1... Línea 1...
1
import React from 'react'
1
import React from 'react';
2
import { Avatar, styled, Typography } from '@mui/material'
2
import { Avatar, styled, Typography } from '@mui/material';
3
import {
-
 
4
  VisibilityOutlined,
3
import VisibilityOutlined from '@mui/icons-material/VisibilityOutlined';
5
  MapOutlined,
4
import MapOutlined from '@mui/icons-material/MapOutlined';
6
  ShareOutlined
-
 
7
} from '@mui/icons-material'
5
import ShareOutlined from '@mui/icons-material/ShareOutlined';
Línea 8... Línea 6...
8
 
6
 
Línea 9... Línea 7...
9
import Widget from '@components/UI/Widget'
7
import Widget from '@components/UI/Widget';
10
 
8
 
11
const Row = styled('div')(() => ({
9
const Row = styled('div')(() => ({
12
  display: 'flex',
10
  display: 'flex',
13
  justifyContent: 'space-around',
11
  justifyContent: 'space-around',
Línea 14... Línea 12...
14
  alignItems: 'center'
12
  alignItems: 'center'
15
}))
-
 
16
 
-
 
17
export default function ProfileInfo({
-
 
18
  image,
-
 
19
  fullName,
-
 
20
  visits,
-
 
21
  country,
13
}));
22
  connections
14
 
23
}) {
15
export default function ProfileInfo({ image, fullName, visits, country, connections }) {
24
  return (
16
  return (
25
    <Widget>
17
    <Widget>
Línea 49... Línea 41...
49
            {connections}
41
            {connections}
50
          </Typography>
42
          </Typography>
51
        </Row>
43
        </Row>
52
      </Widget.Body>
44
      </Widget.Body>
53
    </Widget>
45
    </Widget>
54
  )
46
  );
55
}
47
}