Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 | 5x 5x 5x 295x 40x 295x | import { styled, Typography } from "@mui/material";
import { theme } from "theme";
import TextBody from "./TextBody";
const StyledWrapper = styled("div")(({ theme }) => ({
display: "flex",
marginTop: theme.spacing(0.5),
alignItems: "flex-start", // Ensures the label aligns with the top of multi-line text
}));
const StyledFlexItem = styled("div")(({ theme }) => ({
flex: "1 1 50%",
display: "flex",
alignItems: "center",
}));
interface LabelAndTextProps {
label: string;
text: string | React.ReactNode;
}
export default function LabelAndText({ label, text }: LabelAndTextProps) {
return (
<StyledWrapper>
<Typography
variant="h3"
sx={{
margin: 0,
marginInlineEnd: theme.spacing(1),
flex: "1 1 50%",
display: "flex",
alignItems: "center",
}}
>
{label}
</Typography>
{typeof text === "string" ? (
<TextBody
sx={{ flex: "1 1 50%", display: "flex", alignItems: "center" }}
>
{text}
</TextBody>
) : (
<StyledFlexItem>{text}</StyledFlexItem> // AgeAndGenderRenderer is a div not string
)}
</StyledWrapper>
);
}
|