Repository URL to install this package:
|
Version:
0.14.1 ▾
|
ui-component-library
/
src
/
components
/
abstractions
/
BundleProduct
/
MiniCartBundle
/
styled.tsx
|
|---|
import { React } from 'react'
import { styled } from 'styleh-components'
import {
ProductImage as BaseProductImage,
BaseWrapper,
} from '../CheckoutCartBundle/ProductItem/styled'
const CartProductImage = styled.withComponent(BaseProductImage) `
margin-right: 16px;
`
const StyledBaseWrapper = styled.withComponent(BaseWrapper).attrs({
'data-qa': 'qa-MiniCart-container',
}) ``
export { CartProductImage, StyledBaseWrapper }