Proyectos de Subversion LeadersLinked - SPA

Rev

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

Rev 2261 Rev 2262
Línea 42... Línea 42...
42
 
42
 
Línea 43... Línea 43...
43
  const handleClose = () => setAnchorEl(null)
43
  const handleClose = () => setAnchorEl(null)
44
 
44
 
45
  return (
45
  return (
46
    <CardHeader
46
    <CardHeader
47
      avatar={<Avatar alt={title} src={avatar} />}
47
      avatar={avatar ? <Avatar alt={avatar.alt} src={avatar.src} /> : null}
48
      action={
48
      action={
49
        <>
49
        <>
50
          <IconButton
50
          <IconButton
Línea 88... Línea 88...
88
          </Menu>
88
          </Menu>
89
        </>
89
        </>
90
      }
90
      }
91
      title={title}
91
      title={title}
92
      subheader={subheader}
92
      subheader={subheader}
-
 
93
      titleTypographyProps={{
-
 
94
        sx: { fontWeight: 'bold', color: 'var(--title-color)' }
-
 
95
      }}
-
 
96
      subheaderTypographyProps={{
-
 
97
        sx: { color: 'var(--subtitle-color)' }
-
 
98
      }}
93
      {...props}
99
      {...props}
94
    />
100
    />
95
  )
101
  )
96
}
102
}