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    
@skava/ui / src / components / presets / Studio / Button / styled.tsx
Size: Mime:
import { styled } from 'styleh-components'
import Button, { ButtonLabel } from 'atoms/Button'

const Wrapper = styled.div``

const ButtonWrapper = styled.div``

const StyledButton = styled.withComponent(Button)`
  width: 100%;
  color: ${props => props.textColor};
  background-color: ${props => props.backgroundColor};
  border: none;
  ${ButtonLabel} {
    text-transform: inherit;
    margin: 0;
  }
`

export { Wrapper, ButtonWrapper, StyledButton }