import styled from 'styled-components/native'; export const OSContainer = styled.View` width: 100%; display: flex; flex-direction: column; justify-content: center; ` export const OSProductList = styled.View`` export const OSBill = styled.View` padding-top: 10px; ` export const OSTable = styled.View` flex-direction: row; justify-content: space-between; align-items: center; ` export const OSTotal = styled.View` border-top-width: 1px; border-top-color: #d9d9d9; margin-top: 15px; ` export const OSCoupon = styled.View` width: 100%; padding: 5px 0px; ` export const OSRow = styled.View` flex-direction: row; overflow: hidden; width: 70%; flex-wrap: wrap; ` export const Divider = styled.View` border-color: #EAEAEA; border-width: 1px; margin-top: 5px; margin-bottom: 10px; `