Proyectos de Subversion LeadersLinked - SPA

Rev

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

Rev 3106 Rev 3109
Línea 1... Línea 1...
1
import React from 'react'
1
import React from 'react'
2
import { Avatar, Button, styled, Typography } from '@mui/material'
2
import { Avatar, Typography } from '@mui/material'
Línea 3... Línea 3...
3
 
3
 
Línea 4... Línea 4...
4
import { parse } from '@utils'
4
import { parse } from '@utils'
Línea 5... Línea -...
5
 
-
 
6
import Widget from '@components/UI/Widget'
-
 
7
 
-
 
8
const WidgetButton = styled(Button)(() => ({
-
 
9
  cursor: ''
5
 
10
}))
6
import Widget from '@components/UI/Widget'
11
 
7
 
12
export default function CompanyInfo({
8
export default function CompanyInfo({
13
  company: {
9
  company: {
Línea 33... Línea 29...
33
          src={image}
29
          src={image}
34
          name={name}
30
          name={name}
35
          sx={{ width: 60, height: 60, margin: 'auto' }}
31
          sx={{ width: 60, height: 60, margin: 'auto' }}
36
        />
32
        />
37
        <Typography variant='h2'>{name}</Typography>
33
        <Typography variant='h2'>{name}</Typography>
38
        <Typography>{`${industry} - ${company_size}`}</Typography>
34
        <Typography variant='h3'>{`${industry} - ${company_size}`}</Typography>
39
        <Typography>{parse(overview)}</Typography>
35
        <Typography>{parse(overview)}</Typography>
40
 
-
 
41
        <Button>
-
 
42
          Número de seguidores
-
 
43
          <Typography>{total_followers}</Typography>
-
 
44
        </Button>
-
 
45
      </Widget.Body>
36
      </Widget.Body>
46
    </Widget>
37
    </Widget>
47
  )
38
  )
48
}
39
}