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 | 4x | import { Stack } from "@mui/material";
import { RHFCheckbox } from "@common/Checkbox";
import { ComingSoonTag } from "@common/Tag";
import { Text } from "@common/Text";
import { palette } from "@palette";
import FadeUpWrapper from "@components/animation/FadeUpWrapper";
type ConfigurationSectionProps = {
title: string;
titleSize?: "large" | "medium";
isEdit?: boolean;
isPaymentFormBuilder?: boolean;
};
const ConfigurationSection = ({
title,
titleSize = "large",
isEdit = false,
isPaymentFormBuilder,
}: ConfigurationSectionProps) => {
return (
<Stack direction="column" gap={isEdit ? 2 : 4} flexGrow={1}>
<FadeUpWrapper delay={200}>
<Stack direction="column" gap="24px">
<RHFCheckbox
name="configuration.customer_pays_fees"
label="Customer pays the credit card fee"
sx={{
"& .MuiButtonBase-root.MuiCheckbox-root": {
height: 24,
},
}}
/>
<Stack direction="column">
<Stack
direction="row"
alignItems="center"
justifyContent="space-between"
>
<RHFCheckbox
disabled
name="configuration.browse_more"
label="Browse more Payment forms"
sx={{
"& .MuiButtonBase-root.MuiCheckbox-root": {
height: 24,
},
}}
/>
<ComingSoonTag />
</Stack>
<Text
color={palette.gray[300]}
fontSize="16px"
fontWeight="book"
lineHeight="19.2px"
ml={4}
>
{isPaymentFormBuilder
? "Allow customers to explore more of your published Payment forms."
: "Allow users to explore more of your published Payment forms."}
</Text>
</Stack>
</Stack>
</FadeUpWrapper>
</Stack>
);
};
export default ConfigurationSection;
|