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 / atoms / Text / styled.tsx
Size: Mime:
import { styled } from 'styleh-components'

// @note - wrong text
// font-family: Helvetica, Arial;
const StyledBaseText = styled.div`
  color: inherit;
  text-transform: none;
  text-decoration: none;
  padding: 0;

  // enabling the background
  ${props =>
    props.shouldHaveBackground &&
    styled.css`
      background-color: grey;
      width: 100%;
      height: auto;
      line-height: auto;
      text-align: center;
    `};
`

export { StyledBaseText }