Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
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 }