Skip to content

Commit

Permalink
#33 side drawer icon
Browse files Browse the repository at this point in the history
  • Loading branch information
RossellaFer committed Apr 27, 2024
1 parent 904d39d commit 044aa5a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/SideDrawer/SideDrawer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { FC, useState } from 'react'
import SwipeableDrawer from '@mui/material/SwipeableDrawer'
import IconButton from '@mui/material/IconButton'
import DrawerContents from './DrawerContents'
import StarIcon from '@mui/icons-material/Star'
import MenuIcon from '@mui/icons-material/Menu'


const SideDrawer: FC = () => {
Expand All @@ -29,7 +29,7 @@ const SideDrawer: FC = () => {
onClick={() => { setOpen(true) }}
aria-label="drawer-toggle-button"
>
<StarIcon />
<MenuIcon />
</IconButton>
<SwipeableDrawer
open={open}
Expand Down

0 comments on commit 044aa5a

Please sign in to comment.