Add Edit icons
This commit is contained in:
parent
8cdd217ddd
commit
4b38424ea7
1 changed files with 39 additions and 11 deletions
|
@ -4,11 +4,13 @@ import {
|
||||||
Card,
|
Card,
|
||||||
Container,
|
Container,
|
||||||
Grid,
|
Grid,
|
||||||
|
IconButton,
|
||||||
Link,
|
Link,
|
||||||
Skeleton,
|
Skeleton,
|
||||||
Stack,
|
Stack,
|
||||||
Typography,
|
Typography,
|
||||||
} from '@mui/material';
|
} from '@mui/material';
|
||||||
|
import MoreVertIcon from '@mui/icons-material/MoreVert';
|
||||||
import AnnouncementCard from '../../../../components/AnnouncementCard';
|
import AnnouncementCard from '../../../../components/AnnouncementCard';
|
||||||
|
|
||||||
import styles from './styles';
|
import styles from './styles';
|
||||||
|
@ -69,12 +71,20 @@ function AnnouncementsTab({
|
||||||
<Stack justifyContent="flex-start" spacing={1}>
|
<Stack justifyContent="flex-start" spacing={1}>
|
||||||
<Container
|
<Container
|
||||||
disableGutters
|
disableGutters
|
||||||
sx={{ display: 'flex', justifyContent: 'row' }}
|
sx={{
|
||||||
|
display: 'flex',
|
||||||
|
justifyContent: 'space-between',
|
||||||
|
}}
|
||||||
>
|
>
|
||||||
<img src={jitsiLogo} alt="Jitsi Meet" />
|
<Stack direction="row">
|
||||||
<h3 style={{ fontWeight: 500 }}>
|
<img src={jitsiLogo} alt="Jitsi Meet" />
|
||||||
Sala de aula virtual
|
<h3 style={{ fontWeight: 500 }}>
|
||||||
</h3>
|
Sala de aula virtual
|
||||||
|
</h3>
|
||||||
|
</Stack>
|
||||||
|
<IconButton aria-label="edit" size="medium">
|
||||||
|
<MoreVertIcon fontSize="inherit" />
|
||||||
|
</IconButton>
|
||||||
</Container>
|
</Container>
|
||||||
|
|
||||||
<Button
|
<Button
|
||||||
|
@ -117,9 +127,20 @@ function AnnouncementsTab({
|
||||||
variant="elevation"
|
variant="elevation"
|
||||||
>
|
>
|
||||||
<Stack justifyContent="flex-start" spacing={1}>
|
<Stack justifyContent="flex-start" spacing={1}>
|
||||||
<h3 style={{ fontWeight: 500 }}>
|
<Container
|
||||||
Horários de Atendimento
|
disableGutters
|
||||||
</h3>
|
sx={{
|
||||||
|
display: 'flex',
|
||||||
|
justifyContent: 'space-between',
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<h3 style={{ fontWeight: 500 }}>
|
||||||
|
Horários de Atendimento
|
||||||
|
</h3>
|
||||||
|
<IconButton aria-label="edit" size="medium">
|
||||||
|
<MoreVertIcon fontSize="inherit" />
|
||||||
|
</IconButton>
|
||||||
|
</Container>
|
||||||
{classroom.appointmentSlots.map((appts, index) => (
|
{classroom.appointmentSlots.map((appts, index) => (
|
||||||
<Typography key={index} variant="body1">
|
<Typography key={index} variant="body1">
|
||||||
{appts.weekDay}, {appts.start}h - {appts.end}h
|
{appts.weekDay}, {appts.start}h - {appts.end}h
|
||||||
|
@ -219,10 +240,17 @@ function AnnouncementsTab({
|
||||||
<Stack justifyContent="flex-start" spacing={1}>
|
<Stack justifyContent="flex-start" spacing={1}>
|
||||||
<Container
|
<Container
|
||||||
disableGutters
|
disableGutters
|
||||||
sx={{ display: 'flex', justifyContent: 'row' }}
|
sx={{ display: 'flex', justifyContent: 'space-between' }}
|
||||||
>
|
>
|
||||||
<img src={jitsiLogo} alt="Jitsi Meet" />
|
<Stack direction="row">
|
||||||
<h3 style={{ fontWeight: 500 }}>Sala de aula virtual</h3>
|
<img src={jitsiLogo} alt="Jitsi Meet" />
|
||||||
|
<h3 style={{ fontWeight: 500 }}>
|
||||||
|
Sala de aula virtual
|
||||||
|
</h3>
|
||||||
|
</Stack>
|
||||||
|
<IconButton aria-label="edit" size="medium">
|
||||||
|
<MoreVertIcon fontSize="inherit" />
|
||||||
|
</IconButton>
|
||||||
</Container>
|
</Container>
|
||||||
<Button
|
<Button
|
||||||
variant="contained"
|
variant="contained"
|
||||||
|
|
Loading…
Reference in a new issue