Proyectos de Subversion LeadersLinked - SPA

Rev

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

Rev 2829 Rev 2830
Línea 40... Línea 40...
40
  onClick = () => {},
40
  onClick = () => {},
41
  ...props
41
  ...props
42
}) {
42
}) {
43
  return (
43
  return (
44
    <CardHeader
44
    <CardHeader
45
      avatar={
-
 
46
        avatar ? (
-
 
47
          <Avatar
-
 
48
            alt={title}
-
 
49
            src={avatar}
-
 
50
            sx={{ marginRight: (theme) => theme.spacing(0.5) }}
45
      avatar={avatar ? <Avatar alt={title} src={avatar} /> : null}
51
          />
-
 
52
        ) : null
-
 
53
      }
-
 
54
      action={renderAction()}
46
      action={renderAction()}
55
      title={title}
47
      title={title}
56
      subheader={subheader}
48
      subheader={subheader}
57
      titleTypographyProps={{
49
      titleTypographyProps={{
58
        variant: 'h3',
50
        variant: 'h3',
Línea 92... Línea 84...
92
        justifyContent: 'space-around',
84
        justifyContent: 'space-around',
93
        gap: 1,
85
        gap: 1,
94
        '& > button': {
86
        '& > button': {
95
          flex: '1'
87
          flex: '1'
96
        },
88
        },
97
        borderStyle: 'solid',
-
 
98
        borderTopWidth: '1px',
-
 
99
        borderColor: colors.border.primary,
89
        borderTop: `1px solid ${colors.border.primary}`,
100
        ...styles
90
        ...styles
101
      }}
91
      }}
102
      disableSpacing
92
      disableSpacing
103
      {...props}
93
      {...props}
104
    >
94
    >