2021-04-10 00:44:13 +04:30
|
|
|
/*
|
|
|
|
|
* 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';
|
2021-09-09 17:51:22 +04:30
|
|
|
import ListItem, { ListItemProps } from '@mui/material/ListItem';
|
2022-02-21 01:10:33 +03:30
|
|
|
import { Link } from 'react-router-dom';
|
2021-04-10 00:44:13 +04:30
|
|
|
|
2022-02-21 01:10:33 +03:30
|
|
|
export default function ListItemLink(props: ListItemProps<Link, {}>) {
|
|
|
|
|
return (
|
|
|
|
|
<ListItem
|
|
|
|
|
// @ts-ignore
|
|
|
|
|
// sx={{ color: 'white', textDecoration: 'none', '-webkit-text-decoration': 'none' }}
|
|
|
|
|
// @ts-ignore
|
|
|
|
|
button
|
|
|
|
|
component={Link}
|
|
|
|
|
// eslint-disable-next-line react/jsx-props-no-spreading
|
|
|
|
|
{...props}
|
|
|
|
|
/>
|
|
|
|
|
);
|
2021-04-10 00:44:13 +04:30
|
|
|
// eslint-disable-next-line react/jsx-props-no-spreading
|
2022-02-21 01:10:33 +03:30
|
|
|
// return <ListItem button component="a" {...props} />;
|
2021-04-10 00:44:13 +04:30
|
|
|
}
|