import styled from 'styled-components/native'; import {SafeAreaView} from 'react-native'; import Button from '@components/Button'; import { widthPercentageToDP as wp, heightPercentageToDP as hp, } from 'react-native-responsive-screen'; import THEME from '@styles/theme'; import FONTS from '@assets/fonts'; export const Overlay = styled.TouchableOpacity` position: absolute; flex: 1; justify-content: flex-end; top: 0; bottom: 0; right: 0; left: 0; background-color: rgba(0, 0, 0, 0.88); height: 100%; `; export const ModalBody = styled(SafeAreaView)` background-color: ${THEME?.PRIMARY?.MAIN}; padding-top: ${hp(5)}px; padding-bottom: ${hp(5)}px; border-top-left-radius: ${hp(2)}px; border-top-right-radius: ${hp(2)}px; align-items: center; position: absolute; bottom: 0; right: 0; left: 0; `; export const ButtonWrapper = styled.View` width: 100%; flex-direction: row; justify-content: space-evenly; padding-top: ${hp(5)}px; `; export const AllowButton = styled(Button)` flex: 0.35; `; export const DontAllowButton = styled(Button)` flex: 0.35; `; export const SubTitle = styled.Text` color: ${THEME?.SECONDARY?.LIGHT}; font-family: ${FONTS.REGULAR}; font-size: ${hp(2)}px; width: ${wp(65)}px; text-align: center; padding-top: ${hp(1)}px; `; export const Title = styled.Text` color: #ffffff; font-family: ${FONTS.REGULAR}; font-size: ${hp(2.5)}px; width: ${wp(60)}px; text-align: center; padding-top: ${hp(4)}px; `; export const ComingSoonWrapper = styled.View` flex: 1; justify-content: center; align-items: center; `; export const ComingSoonTitle = styled.Text` color: ${THEME?.SECONDARY?.LIGHT}; font-family: ${FONTS?.REGULAR}; font-size: ${wp(4)}px; padding-top: ${hp(2)}px; padding-bottom: ${hp(2)}px; text-align: center; width: ${wp(60)}px; `; export const ComingSoonSubTitle = styled.Text` color: #fff; font-family: ${FONTS?.MEDIUM}; font-size: ${wp(5)}px; `;