import styled, { css } from 'styled-components/native' export const Container = styled.TouchableOpacity` flex-direction: row; align-items: center; justify-content: space-between; width: 100%; ` export const IconControl = styled.TouchableOpacity` flex-direction: row; padding: 10px 0 10px 10px; width: 50%; align-items: center; ` export const QuantityControl = styled.View` flex-direction: row; align-items: center; justify-content: space-between; width: 62px; ` export const PositionControl = styled.View` flex-direction: row; align-items: center; ` export const Checkbox = styled.TouchableOpacity` ` export const Circle = styled.TouchableOpacity` margin: 0 1.5px; ` export const Logo = styled.View` height: 65px; width: 65px; `;