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 '@skava/ui/dist/components/atoms/Text'
import {
  TextPlaceholder,
  RectanglePlaceholder,
} from '@skava/ui/dist/components/atoms/Placeholder'

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

const StyledTextPlaceholder = styled(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 }