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 { Heading } from 'atoms/Text'
import { ButtonLabel } from 'atoms/Button'
import { PhysicalAddress } from 'molecules/PhysicalAddress'
import { LinkButton } from 'presets/Buttons'

const Title = styled.withComponent(Heading) `
  margin: 0;
  margin-right: rem(60);
  text-transform: capitalize;

  @phone-or-smaller() {
    margin: 0;
    width: 35%;
  }
`

const HeaderButton = styled.withComponent(LinkButton) `
  width: auto;
  height: auto;
  ${ButtonLabel} {
    margin: 0;
  }
`

const StyledAddress = styled.withComponent(PhysicalAddress) ``

const HeaderWrapper = styled.div `
  display: flex;
  flex-direction: column;
`

export { Title, HeaderButton, StyledAddress, HeaderWrapper }