import styled from 'styled-components/native'; import { widthPercentageToDP as wp, heightPercentageToDP as hp, } from 'react-native-responsive-screen'; import FONTS from '@assets/fonts'; import ArrowIcon from '@assets/svg/ArrowIcon'; 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.9); height: 100%; `; export const Wrapper = styled.View` position: absolute; bottom: 0; left: 0; right: 0; padding-bottom: ${hp(12)}px; `; export const Message = styled.Text` font-family: ${FONTS.MEDIUM}; font-size: ${wp(5)}px; padding-left: ${hp(3.5)}px; padding-right: ${hp(3.5)}px; color: #fff; `; export const Arrow = styled(ArrowIcon)` align-self: center; position: absolute; right: ${wp(55)}px; top: ${hp(6)}px; `; export const SkipWrapper = styled.TouchableOpacity` flex-direction: row; justify-content: flex-end; align-items: center; padding-right: ${hp(3.5)}px; `; export const SkipText = styled.Text` font-family: ${FONTS.MEDIUM}; font-size: ${wp(5)}px; color: ${THEME?.PRIMARY?.LIGHT}; `; export const HideTabBar = styled.View` flex: 1; flex-direction: row; position: absolute; bottom: 0; height: ${hp(7.6)}px; width: 100%; `; export const ActiveTab = styled.TouchableOpacity` flex: 1; `; export const HideTab = styled.TouchableOpacity` flex: 1; background-color: #000; `;