import styled, { css } from 'styled-components/native' export const BContainer = styled.View` padding: 20px; ` export const SearchWrapper = styled.View` ` export const ProductsList = styled.View` ` export const SingleBusinessSearch = styled.View` width: 100%; margin: 20px 0; ` export const BusinessInfo = styled.View` width: 15%; flex-direction: row; ` export const BusinessLogo = styled.View` ` export const BusinessInfoItem = styled.View` width: 50%; display: flex; flex-direction: column; justify-content: center; font-size: 12px; margin-left: 10px; ` export const Metadata = styled.View` margin-top: 5px; display: flex; flex-direction: row; flex-wrap: wrap; ` export const SingleBusinessContainer = styled.View` width: 100%; flex-direction: row; justify-content: space-between; ` export const TagsContainer = styled.View` padding-bottom: 10px; ` export const SortContainer = styled.View` margin-bottom: 10px; ` export const BrandContainer = styled.View`` export const BrandItem = styled.TouchableOpacity` flex-direction: row; justify-content: space-between; margin-bottom: 4px; align-items: center; ` export const PriceFilterWrapper = styled.View` margin-bottom: 20px; ` export const WrapperButtons = styled.View` flex-direction: row; width: 100%; justify-content: space-between; `