Repository URL to install this package:
|
Version:
2.1.6 ▾
|
import { styled } from 'styleh-components'
import { FlexRow } from '../styled'
import { SquarePlaceholder } from '@skava/ui/dist/components/atoms/Placeholder'
const StyledSquarePlaceholder = styled(SquarePlaceholder) `
margin-right: rem(16);
`
const StoreDetails = styled(FlexRow) `
margin-top: rem(24);
`
const ProductItemWrapper = styled.div `
border-top: rem(1) solid #cccccc;
border-bottom: rem(1) solid #cccccc;
&:last-child {
border-bottom: none;
}
`
export { StyledSquarePlaceholder, StoreDetails, ProductItemWrapper }