dumping more controls to pager controls
This commit is contained in:
@@ -15,7 +15,16 @@ import {
|
|||||||
Tooltip,
|
Tooltip,
|
||||||
Typography,
|
Typography,
|
||||||
} from '@mui/material';
|
} from '@mui/material';
|
||||||
import { FiHeadphones, FiHelpCircle, FiLink, FiLogOut, FiSun } from 'react-icons/fi';
|
import {
|
||||||
|
FiActivity,
|
||||||
|
FiAirplay,
|
||||||
|
FiHeadphones,
|
||||||
|
FiHelpCircle,
|
||||||
|
FiLink,
|
||||||
|
FiLogOut,
|
||||||
|
FiSun,
|
||||||
|
FiVideoOff,
|
||||||
|
} from 'react-icons/fi';
|
||||||
import React, { useCallback } from 'react';
|
import React, { useCallback } from 'react';
|
||||||
|
|
||||||
import ConversationLabel from '../subcomponents/ConversationLabel';
|
import ConversationLabel from '../subcomponents/ConversationLabel';
|
||||||
@@ -157,6 +166,17 @@ export default function FooterControls() {
|
|||||||
))}
|
))}
|
||||||
</AvatarGroup>
|
</AvatarGroup>
|
||||||
|
|
||||||
|
<Tooltip title="Mark priority or not!">
|
||||||
|
<IconButton
|
||||||
|
sx={{
|
||||||
|
color: 'white',
|
||||||
|
}}
|
||||||
|
size="small"
|
||||||
|
>
|
||||||
|
<FiActivity />
|
||||||
|
</IconButton>
|
||||||
|
</Tooltip>
|
||||||
|
|
||||||
<Tooltip title="Paste image or link!">
|
<Tooltip title="Paste image or link!">
|
||||||
<IconButton
|
<IconButton
|
||||||
sx={{
|
sx={{
|
||||||
@@ -168,6 +188,28 @@ export default function FooterControls() {
|
|||||||
</IconButton>
|
</IconButton>
|
||||||
</Tooltip>
|
</Tooltip>
|
||||||
|
|
||||||
|
<Tooltip title="Show screen!">
|
||||||
|
<IconButton
|
||||||
|
sx={{
|
||||||
|
color: 'white',
|
||||||
|
}}
|
||||||
|
size="small"
|
||||||
|
>
|
||||||
|
<FiAirplay />
|
||||||
|
</IconButton>
|
||||||
|
</Tooltip>
|
||||||
|
|
||||||
|
<Tooltip title="Show video!">
|
||||||
|
<IconButton
|
||||||
|
sx={{
|
||||||
|
color: 'white',
|
||||||
|
}}
|
||||||
|
size="small"
|
||||||
|
>
|
||||||
|
<FiVideoOff />
|
||||||
|
</IconButton>
|
||||||
|
</Tooltip>
|
||||||
|
|
||||||
{/* todo: not speaking mode, speaking mode, locked in mode */}
|
{/* todo: not speaking mode, speaking mode, locked in mode */}
|
||||||
<Tooltip title="Speak or toggle by clicking here!">
|
<Tooltip title="Speak or toggle by clicking here!">
|
||||||
<IconButton
|
<IconButton
|
||||||
|
|||||||
Reference in New Issue
Block a user