import styled from 'styled-components/macro' export const PriceWrapper = styled.div` display: flex; align-items: flex-start; ` export const PriceAmount = styled.span` font-style: normal; font-weight: 600; font-size: 48px; line-height: 40px; color: ${({ theme: { colors } }) => colors.text}; ` export const PriceDetails = styled.span` margin-left: 5px; font-style: normal; font-weight: normal; font-size: 18px; line-height: 21px; color: ${({ theme: { colors } }) => colors.text}; text-transform: uppercase; `