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 { Label } from 'atoms/Text'
import { SecondaryButton } from 'presets/Buttons'

const ErrorLabel = styled.withComponent(Label)`
  color:#D54D4D;
`
const StyledSecondaryButton = styled.withComponent(SecondaryButton)`
  color: #fff;
  font-size: rem(16);
  text-transform: capitalize;
  margin-top: 1rem;
  user-select: none;
  background: #5F6C88;
`

export { ErrorLabel, StyledSecondaryButton }