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 {
  TextPlaceholder,
  RectanglePlaceholder
} from 'atoms/Placeholder'

const InputBoxPlaceHolders = styled.withComponent(RectanglePlaceholder)`
  margin-bottom: rem(8);
`

const StyledTextPlaceholder = styled.withComponent(TextPlaceholder)`
  display: flex;
`

const Form = styled.div`
  margin-bottom: rem(16);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  .input-box {
    width: 49%;
  }
`

const Error = styled.div`
  display: flex;
  margin-bottom: rem(16);
`

const Wrapper = styled.section``

export {
  Wrapper,
  Error,
  Form,
  StyledTextPlaceholder,
  InputBoxPlaceHolders
}