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 | import { KeyVal } from "@common/KeyVal";
import { Grid } from "@mui/material";
import { palette } from "@palette";
import { Text } from "@common/Text";
function AmountsCard({ 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={<Text fontWeight="medium">100.19</Text>}
mobileView={true}
/>
</Grid>
<Grid item xs={12}>
<KeyVal
sx={{ color: palette.neutral[600] }}
keyName="Givebox Fee"
value={<Text fontWeight="medium">100.19</Text>}
mobileView={true}
/>
</Grid>
<Grid item xs={12}>
<KeyVal
sx={{ color: palette.neutral[600] }}
keyName="Visa Fee"
value={<Text fontWeight="medium">*3.00</Text>}
mobileView={true}
/>
</Grid>
<Grid item xs={12}>
<KeyVal
sx={{ color: palette.neutral[600] }}
keyName="Charged"
value={<Text fontWeight="medium">103.19</Text>}
mobileView={true}
/>
</Grid>
</Grid>
);
}
export default AmountsCard;
|