import { widthPercentageToDP as wp, heightPercentageToDP as hp, } from 'react-native-responsive-screen'; import {SafeAreaView} from 'react-native-safe-area-context'; import styled from 'styled-components/native'; import FONTS from '@assets/fonts'; import THEME from '@styles/theme'; 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 Wrapper = styled(SafeAreaView)` background-color: ${THEME?.PRIMARY?.MAIN}; height: ${hp(40)}px; border-top-left-radius: ${hp(2)}px; border-top-right-radius: ${hp(2)}px; justify-content: center; align-items: center; position: absolute; bottom: 0; right: 0; left: 0; `; export const Title = styled.Text` font-family: ${FONTS.SEMI_BOLD}; font-size: ${hp(2.5)}px; top: ${hp(2)}px; color: #fff; `; export const Description = styled.Text` color: #979eb5; font-size: ${hp(2.2)}px; width: ${wp(70)}px; text-align: center; padding-top: ${hp(2.8)}px; `;