46 lines
1.2 KiB
TypeScript
46 lines
1.2 KiB
TypeScript
import {
|
|
BaseBox,
|
|
Grid,
|
|
StackCustom,
|
|
TextCustom,
|
|
ViewWrapper,
|
|
} from "@/components";
|
|
import { MainColor } from "@/constants/color-palet";
|
|
import { Ionicons } from "@expo/vector-icons";
|
|
import { ActivityIndicator } from "react-native";
|
|
|
|
export default function InvestmentProcess() {
|
|
return (
|
|
<>
|
|
<ViewWrapper>
|
|
<BaseBox>
|
|
<StackCustom>
|
|
<TextCustom align="center" bold>
|
|
Admin sedang memproses transaksi investasimu
|
|
</TextCustom>
|
|
<ActivityIndicator size="large" color={MainColor.yellow} />
|
|
</StackCustom>
|
|
</BaseBox>
|
|
|
|
<BaseBox>
|
|
<Grid>
|
|
<Grid.Col span={10} style={{justifyContent: 'center'}}>
|
|
<TextCustom size="small">
|
|
Hubungi admin jika tidak kunjung di proses! Klik pada logo
|
|
Whatsapp ini.
|
|
</TextCustom>
|
|
</Grid.Col>
|
|
<Grid.Col span={2} style={{alignItems: "flex-end"}}>
|
|
<Ionicons
|
|
name="logo-whatsapp"
|
|
size={50}
|
|
color={MainColor.green}
|
|
/>
|
|
</Grid.Col>
|
|
</Grid>
|
|
</BaseBox>
|
|
</ViewWrapper>
|
|
</>
|
|
);
|
|
}
|