Proyectos de Subversion LeadersLinked - SPA

Rev

Rev 3493 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 3493 Rev 3494
Línea 16... Línea 16...
16
 
16
 
17
export function CapsuleCard({ capsule: { name, description, image, completed, uuid } }) {
17
export function CapsuleCard({ capsule: { name, description, image, completed, uuid } }) {
18
  return (
18
  return (
19
    <Card>
19
    <Card>
-
 
20
      <CardContent>
20
      <CardContent>
21
        <Box
-
 
22
          sx={{ display: 'flex', alignItems: 'center', justifyContent: 'space-between', gap: 0.5 }}
21
        <Box sx={{ display: 'flex', alignItems: 'center' }}>
23
        >
22
          <Box>
24
          <Box>
23
            <Typography variant='caption'>{completed ? 'Completa' : 'En curso'}</Typography>
25
            <Typography variant='caption'>{completed ? 'Completa' : 'En curso'}</Typography>
24
            <Typography variant='h2'>{name}</Typography>
26
            <Typography variant='h2'>{name}</Typography>