Repository URL to install this package:
|
Version:
2.1.12 ▾
|
@skava/ui-presets
/
src
/
presets
/
Subscription
/
UpcomingDeliveries
/
SubscriptionItem
/
styled.tsx
|
|---|
import { styled } from 'styleh-components'
import { ProductImage, ProductImageSection } from 'presets/ProductPieces'
import { H2, H3 } from '@skava/ui/dist/components/atoms/Text'
const StyledProductImage = styled(ProductImage).attrs({
'data-qa': 'qa-image',
}) `
${ProductImageSection} {
background-color: transparent;
width: 100%;
height: rem(140);
}
`
const LabelText = styled(H3) `
margin: 0;
font-weight: normal;
font-size: rem(14);
`
const DateText = styled(H2) `
margin: 0;
font-size: rem(16);
`
export { StyledProductImage, DateText, LabelText }