feat: use Icon button

This commit is contained in:
karishmas6
2024-10-10 21:41:38 +05:30
parent 32322bb9b4
commit 22f9ba2687

View File

@@ -109,7 +109,7 @@ export const NavBar: React.FC<NavBarProps> = ({ newRecording, recordingName, isR
<MeetingRoomIcon sx={{ marginRight: '5px' }} />
exit</Button>
: null}
<Button sx={{
<IconButton sx={{
width: '140px',
borderRadius: '5px',
padding: '8px',
@@ -124,7 +124,7 @@ export const NavBar: React.FC<NavBarProps> = ({ newRecording, recordingName, isR
'&:hover': { color: 'white', backgroundColor: '#ff00c3' }
}} onClick={logout}>
<Logout sx={{ marginRight: '5px' }} />
Logout</Button>
Logout</IconButton>
</div>
</>
) : ""