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 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 | 23x 4x | import { KeyVal } from "@common/KeyVal";
import { Grid } from "@mui/material";
import { Box } from "@mui/material";
import { palette } from "@palette";
import { Text } from "@common/Text";
function MobileTransactionAmountsCard({ amount }: { amount?: boolean }) {
return (
<Grid
container
rowGap={2}
sx={{
background: "#FFFFFF",
boxShadow:
"inset -4px -4px 9px rgba(255, 255, 255, 0.88), inset 0px 2px 14px rgba(193, 208, 238, 0.5)",
borderRadius: "4px",
}}
>
<Grid item xs={12}>
<KeyVal
sx={{ color: palette.neutral[600] }}
keyName={amount ? "Amount" : "Donation"}
value={
<Box component="span" display="inline-flex" gap={0.5}>
<Text fontWeight="medium">100.19</Text>
<Box component="sup" sx={supStyle}>
USD
</Box>
</Box>
}
mobileView={true}
/>
</Grid>
<Grid item xs={12}>
<KeyVal
sx={{ color: palette.neutral[600] }}
keyName="Givebox Fee"
value={
<Box component="span" display="inline-flex" gap={0.5}>
<Text fontWeight="medium">100.19</Text>
<Box component="sup" sx={supStyle}>
USD
</Box>
</Box>
}
mobileView={true}
/>
</Grid>
<Grid item xs={12}>
<KeyVal
sx={{ color: palette.neutral[600] }}
keyName="Visa Fee"
value={
<Box component="span" display="inline-flex" gap={0.5}>
<Text fontWeight="medium">*3.00</Text>
<Box component="sup" sx={supStyle}>
USD
</Box>
</Box>
}
mobileView={true}
/>
</Grid>
<Grid item xs={12}>
<KeyVal
sx={{ color: palette.neutral[600] }}
keyName="Charged"
value={
<Box component="span" display="inline-flex" gap={0.5}>
<Text fontWeight="medium">103.19</Text>
<Box component="sup" sx={supStyle}>
USD
</Box>
</Box>
}
mobileView={true}
/>
</Grid>
</Grid>
);
}
const supStyle = {
verticalAlign: "4px",
fontSize: "10px",
}
export default MobileTransactionAmountsCard;
|