Repository URL to install this package:
|
Version:
2.8.0-studio-release ▾
|
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
}