import { Box, Stack, Typography, styled, useTheme } from "@mui/material"; const StackItem = styled(Stack)(({ theme }) => ({ ...theme.typography.body2, margin: "0 !important", padding: 0, textAlign: "left", justifyContent: "flex-start", alignItems: "center", })); export const NoPlanetCard = () => { const theme = useTheme(); return ( No planet ); };