import styled, { css } from 'styled-components/native'; export const StyledContainer = styled.ScrollView` position: absolute; zIndex: 1000; width: 100%; background-color: #fff; padding: 20px 0 0; bottom: 0; shadow-color: #000; shadow-opacity: 0.4; shadow-radius: 3px; elevation: 15; ${(props: any) => props.height && css` height: ${props.height}px; `} ` export const StyledContent = styled.ScrollView` padding: 0 20px; border-radius: 6px; background-color: ${(props: any) => props.theme.colors.whiteGray}; ${(props: any) => props.height && css` minHeight: ${props.height}px; `} ${(props: any) => props.height && css` maxHeight: ${props.height}px; `} ` export const StyledTopBar = styled.View` padding: 20px 0; width: 100%; flex-direction: row; justify-content: space-between; ` export const StyledBottomContent = styled.View` padding-bottom: 10px; width: 100%; align-items: center; justify-content: center; ${(props: any) => props.height && css` minHeight: ${props.height}px; `} ` export const StyledCartItem = styled.View` width: 100%; height: 60px; flex-direction: row; justify-content: space-between; margin-bottom: 14px; `