import styled from 'styled-components/native'; import {SafeAreaView} from 'react-native-safe-area-context'; import {widthPercentageToDP as wp} from 'react-native-responsive-screen'; import THEME from '@styles/theme'; export const StyledContainer = styled.View` flex: 1; background-color: ${THEME?.PRIMARY?.MAIN}; `; export const Wrapper = styled(SafeAreaView)` flex: 1; padding: ${wp(5)}px; `;