import styled from 'styled-components/native' export const Card = styled.View` border: 1px solid ${(props: any) => props.theme.colors.gray}; flex: 1; padding: 10px; margin-bottom: 10px; flex-direction: row; ` export const Logo = styled.View` ` export const Information = styled.View` justify-content: space-between; align-items: flex-start; margin-horizontal: 10px; flex: 1; ` export const MyOrderOptions = styled.View` flex-direction: column; justify-content: space-between; ` export const Status = styled.View` align-items: center; justify-content: space-between; width: 100px; ` export const WrappButton = styled.View` margin-top: 20px; `