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