/* * Copyright (C) Contributors to the Suwayomi project * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ import React from 'react'; import makeStyles from '@mui/styles/makeStyles'; import Drawer from '@mui/material/Drawer'; import List from '@mui/material/List'; import ListItem from '@mui/material/ListItem'; import ListItemIcon from '@mui/material/ListItemIcon'; import CollectionsBookmarkIcon from '@mui/icons-material/CollectionsBookmark'; import ExploreIcon from '@mui/icons-material/Explore'; import ExtensionIcon from '@mui/icons-material/Extension'; import GetAppIcon from '@mui/icons-material/GetApp'; import NewReleasesIcon from '@mui/icons-material/NewReleases'; import ListItemText from '@mui/material/ListItemText'; import SettingsIcon from '@mui/icons-material/Settings'; import { Link } from 'react-router-dom'; const useStyles = makeStyles({ list: { width: 250, }, }); interface IProps { drawerOpen: boolean setDrawerOpen: React.Dispatch> } export default function TemporaryDrawer({ drawerOpen, setDrawerOpen }: IProps) { const classes = useStyles(); return (
setDrawerOpen(false)} >
setDrawerOpen(false)} onKeyDown={() => setDrawerOpen(false)} >
); }