import { RFValue, RFPercentage } from 'react-native-responsive-fontsize' import styled from 'styled-components/native' interface ContainerProps { h: number w: number percentage: boolean } export const Container = styled.View` height: ${({ h, percentage }) => percentage ? RFPercentage(h) : RFValue(h)}px; width: ${({ w, percentage }) => percentage ? RFPercentage(w) : RFValue(w)}px; `