Add a cell to table header to even it out
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
import { AccessToken } from "@/types";
|
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 { PlanetCard } from "./PlanetCard";
|
||||||
import { NoPlanetCard } from "./NoPlanetCard";
|
import { NoPlanetCard } from "./NoPlanetCard";
|
||||||
import Table from "@mui/material/Table";
|
import Table from "@mui/material/Table";
|
||||||
@@ -10,7 +10,7 @@ import TableHead from "@mui/material/TableHead";
|
|||||||
import TableRow from "@mui/material/TableRow";
|
import TableRow from "@mui/material/TableRow";
|
||||||
import Paper from "@mui/material/Paper";
|
import Paper from "@mui/material/Paper";
|
||||||
import { PlanetTableRow } from "./PlanetTableRow";
|
import { PlanetTableRow } from "./PlanetTableRow";
|
||||||
import Image from "next/image";
|
import { Settings } from "@mui/icons-material";
|
||||||
|
|
||||||
const StackItem = styled(Stack)(({ theme }) => ({
|
const StackItem = styled(Stack)(({ theme }) => ({
|
||||||
...theme.typography.body2,
|
...theme.typography.body2,
|
||||||
@@ -102,6 +102,13 @@ const PlanetaryIteractionTable = ({
|
|||||||
</Typography>
|
</Typography>
|
||||||
</Tooltip>
|
</Tooltip>
|
||||||
</TableCell>
|
</TableCell>
|
||||||
|
<TableCell>
|
||||||
|
<Tooltip title="Planet settings">
|
||||||
|
<IconButton aria-label="settings">
|
||||||
|
<Settings fontSize="small" />
|
||||||
|
</IconButton>
|
||||||
|
</Tooltip>
|
||||||
|
</TableCell>
|
||||||
</TableRow>
|
</TableRow>
|
||||||
</TableHead>
|
</TableHead>
|
||||||
<TableBody>
|
<TableBody>
|
||||||
|
Reference in New Issue
Block a user