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 | import { IdentificationCard } from "@assets/icons/RebrandedIcons";
import UserFocus from "@assets/icons/RebrandedIcons/UserFocus";
import { Text } from "@common/Text";
import { Grid } from "@mui/material";
import { palette } from "@palette";
import React from "react";
export const ConfirmationScreen = () => {
return (
<Grid width="70%" margin="auto">
<Grid
display="flex"
justifyContent="center"
alignItems="center"
paddingBottom={2}
>
<IdentificationCard
width={33}
height={33}
fill={palette.success.main}
/>
<UserFocus width={33} height={33} fill={palette.success.main} />
</Grid>
<Text
color={palette.success.main}
fontSize={18}
fontWeight="regular"
lineHeight="120%"
textAlign="center"
marginBottom={2}
>
ID and Selfie successfully uploaded
</Text>
<Text
fontWeight="regular"
lineHeight="120%"
textAlign="center"
color={palette.neutral[80]}
>
We are verifying your identity. This could take some time and you will
be notified when verified.
</Text>
</Grid>
);
};
|