import styled from 'styled-components/native'; import {SafeAreaView} from 'react-native-safe-area-context'; import { heightPercentageToDP as hp, widthPercentageToDP as wp, } from 'react-native-responsive-screen'; import THEME from '@styles/theme'; import FONTS from '@assets/fonts'; export const Container = styled(SafeAreaView)` background-color: ${THEME?.INFO?.MAIN}; `; export const Wrapper = styled.View` background-color: ${THEME?.INFO?.MAIN}; height: ${hp(8)}px; align-items: center; padding: 0 ${wp(5)}px; flex-direction: row; `; export const BackButton = styled.TouchableOpacity` margin-right: ${wp(5)}px; `; export const Title = styled.Text` flex: 1; color: #ffffff; font-family: ${FONTS.SEMI_BOLD}; font-size: ${hp(2.3)}px; `; export const DeleteButton = styled.TouchableOpacity``;