diff options
-rw-r--r-- | src/components/Drawer/Drawer.tsx | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/components/Drawer/Drawer.tsx b/src/components/Drawer/Drawer.tsx index a111a06..9b416b0 100644 --- a/src/components/Drawer/Drawer.tsx +++ b/src/components/Drawer/Drawer.tsx @@ -5,11 +5,9 @@ import { List, ListItem, Typography, - Divider, - IconButton + Divider } from '@material-ui/core'; import { ExitToApp as LogoutIcon, Info } from '@material-ui/icons'; -import CloseIcon from '@material-ui/icons/Close'; import { makeStyles } from '@material-ui/core/styles'; import UserInfo from './UserInfo'; @@ -26,9 +24,6 @@ const useStyles = makeStyles(theme => ({ }, icon: { marginRight: theme.spacing(1) - }, - closeDrawer: { - } })); @@ -73,9 +68,6 @@ const Drawer: React.FC<PropTypes> = React.memo(({ isOpen, setIsOpen }) => { disableBackdropTransition={!iOS} disableDiscovery={iOS} > - <IconButton onClick={handleClose} style={{ width: '48px' }}> - <CloseIcon /> - </IconButton> {user && <UserInfo user={user} />} <Divider /> <List> |