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 51 52 53 54 55 | 2x 2x | import { Text } from "@common/Text";
import { Box } from "@mui/material";
import { palette } from "@palette";
type PurchaseKeyValueProps = {
title: string;
value: React.ReactNode;
highlight?: boolean;
children?: React.ReactNode;
bg?: string;
};
const PurchaseKeyValue = ({
title,
value,
highlight,
children,
bg,
}: PurchaseKeyValueProps) => {
return (
<Box
sx={{
...boxStyle,
backgroundColor: highlight ? palette.neutral[150] : bg ? bg : "#ffffff",
}}
>
<Box
sx={{
display: "flex",
alignItems: "center",
justifyContent: "space-between",
}}
>
<Text color={palette.neutral[600]}>{title}</Text>
{typeof value === "string" || typeof value === "number" ? (
<Text fontWeight="medium" color={palette.neutral[800]}>
{value}
</Text>
) : (
<>{value}</>
)}
</Box>
{children && children}
</Box>
);
};
const boxStyle = {
px: "8px",
py: "12px",
borderRadius: "8px",
};
export default PurchaseKeyValue;
|