feat: optimize proxy page ui

This commit is contained in:
GyDi
2022-11-20 19:46:16 +08:00
parent 5fb1afc681
commit 9dd3b8fd68
11 changed files with 430 additions and 435 deletions

View File

@@ -1,5 +1,5 @@
import { alpha, Box, Typography } from "@mui/material";
import { BlurOnRounded } from "@mui/icons-material";
import { InboxRounded } from "@mui/icons-material";
interface Props {
text?: React.ReactNode;
@@ -21,7 +21,7 @@ const BaseEmpty = (props: Props) => {
color: alpha(palette.text.secondary, 0.75),
})}
>
<BlurOnRounded sx={{ fontSize: "4em" }} />
<InboxRounded sx={{ fontSize: "4em" }} />
<Typography sx={{ fontSize: "1.25em" }}>{text}</Typography>
{extra}
</Box>