Proyectos de Subversion LeadersLinked - SPA

Rev

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

Rev 3716 Rev 3717
Línea 1... Línea 1...
1
import React from 'react';
1
import React from 'react';
2
import { Box, Button, Modal, Typography } from '@mui/material';
2
import { Box, Button, Modal, Typography, IconButton } from '@mui/material';
-
 
3
import Close from '@mui/icons-material/Close';
Línea 3... Línea 4...
3
 
4
 
Línea 4... Línea 5...
4
import { useAlertModal } from '@shared/hooks';
5
import { useAlertModal } from '@shared/hooks';
Línea 22... Línea 23...
22
          width: '100%',
23
          width: '100%',
23
          height: '100%'
24
          height: '100%'
24
        }}
25
        }}
25
      >
26
      >
26
        <Card styles={{ width: '100%', maxWidth: { xs: '90vw', md: '500px', lg: '800px' } }}>
27
        <Card styles={{ width: '100%', maxWidth: { xs: '90vw', md: '500px', lg: '800px' } }}>
-
 
28
          <CardHeader
27
          <CardHeader title={title} />
29
            title={title}
-
 
30
            renderAction={
-
 
31
              <IconButton onClick={closeAlert}>
-
 
32
                <Close />
-
 
33
              </IconButton>
-
 
34
            }
-
 
35
          />
28
          <CardContent>
36
          <CardContent>
29
            <Typography variant='h2'>{message}</Typography>
37
            <Typography variant='h2'>{message}</Typography>
30
          </CardContent>
38
          </CardContent>
Línea 31... Línea 39...
31
 
39