mirror of
https://github.com/calli-eve/eve-pi.git
synced 2026-02-15 12:09:52 +01:00
First working version of EVE-PI
This commit is contained in:
32
src/app/components/PlanetaryInteraction/NoPlanetCard.tsx
Normal file
32
src/app/components/PlanetaryInteraction/NoPlanetCard.tsx
Normal file
@@ -0,0 +1,32 @@
|
||||
import { Stack, Typography, styled } from "@mui/material";
|
||||
import Image from "next/image";
|
||||
|
||||
const StackItem = styled(Stack)(({ theme }) => ({
|
||||
...theme.typography.body2,
|
||||
padding: 0,
|
||||
textAlign: "left",
|
||||
justifyContent: "center",
|
||||
alignItems: "center",
|
||||
}));
|
||||
|
||||
export const NoPlanetCard = ({}: {}) => {
|
||||
return (
|
||||
<StackItem alignItems="flex-start" className="poop" height="100%">
|
||||
<Image
|
||||
src={`/noplanet.png`}
|
||||
alt=""
|
||||
width={120}
|
||||
height={120}
|
||||
style={{ marginBottom: "0.2rem" }}
|
||||
/>
|
||||
<Image
|
||||
width={64}
|
||||
height={64}
|
||||
src={`/stopped.png`}
|
||||
alt=""
|
||||
style={{ position: "absolute" }}
|
||||
/>
|
||||
<Typography>No planet</Typography>
|
||||
</StackItem>
|
||||
);
|
||||
};
|
||||
Reference in New Issue
Block a user