Add a cell to table header to even it out

This commit is contained in:
calli
2025-04-23 11:31:51 +03:00
parent 1fc0efd3da
commit 9e9ab359ec

View File

@@ -1,5 +1,5 @@
import { AccessToken } from "@/types";
import { Stack, Tooltip, Typography, styled, useTheme } from "@mui/material";
import { Icon, IconButton, Stack, Tooltip, Typography, styled, useTheme } from "@mui/material";
import { PlanetCard } from "./PlanetCard";
import { NoPlanetCard } from "./NoPlanetCard";
import Table from "@mui/material/Table";
@@ -10,7 +10,7 @@ import TableHead from "@mui/material/TableHead";
import TableRow from "@mui/material/TableRow";
import Paper from "@mui/material/Paper";
import { PlanetTableRow } from "./PlanetTableRow";
import Image from "next/image";
import { Settings } from "@mui/icons-material";
const StackItem = styled(Stack)(({ theme }) => ({
...theme.typography.body2,
@@ -102,6 +102,13 @@ const PlanetaryIteractionTable = ({
</Typography>
</Tooltip>
</TableCell>
<TableCell>
<Tooltip title="Planet settings">
<IconButton aria-label="settings">
<Settings fontSize="small" />
</IconButton>
</Tooltip>
</TableCell>
</TableRow>
</TableHead>
<TableBody>