import styled from 'styled-components/native' export const ActiveOrdersContainer = styled.ScrollView` margin-bottom: 20px; height: ${({ isMiniCards }: { isMiniCards: boolean }) => !isMiniCards ? '150px' : '220px'}; max-height: ${({ isMiniCards }: { isMiniCards: boolean }) => !isMiniCards ? '150px' : '220px'}; ` export const Card = styled.TouchableOpacity` flex: 1; border: 1px solid ${(props: any) => props.theme.colors.gray}; margin-right: 10px; min-width: 320px; width: 320px; height: ${({ isMiniCard }: { isMiniCard: boolean }) => !isMiniCard ? '100px' : '200px'}; ` export const Map = styled.View` flex: 1; height: 125px; margin-bottom: 10px; ` export const Information = styled.View` flex-direction: row; flex: 1; height: 100px; align-items: center; padding: 10px; ` export const Logo = styled.View` ` export const OrderInformation = styled.View` flex-direction: row; justify-content: space-between; flex: 1; padding-left: 10px; ` export const BusinessInformation = styled.View` ` export const Price = styled.View` justify-content: space-between; align-items: flex-end; margin-left: 10px; width: 30%; `