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'

const Container = styled.div `
  flex: 1;

  ${props =>
    props.width &&
    styled.css `
      flex: 0 0 ${props.width}%;
    `};
  ${props =>
    props.align &&
    styled.css `
      text-align: ${props.align};
    `};
`
const Wrapper = styled.section `
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
`

export { Container, Wrapper }