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 { PrimaryButton } from 'presets/Buttons'
import { ButtonLabel } from 'atoms/Button'

const StyledPrimaryButton = styled.withComponent(PrimaryButton)`  
  background-color: transparent;
  width: auto;
  height: auto;
  padding: 0;
  cursor: pointer;
  margin-bottom: rem(24);

  ${ButtonLabel} {
    color: #00a0db;
    margin: 0;
  }
`

export {
  StyledPrimaryButton,
}