Repository URL to install this package:
Version:
0.14.1 ▾
|
import { styled } from 'styleh-components'
import TextPlaceholder from 'atoms/Placeholder/TextPlaceholder'
const StyledTitlePlaceholder = styled.withComponent(TextPlaceholder) `
margin-bottom: 16px;
`
const StyledAddressPlaceholder = styled.withComponent(TextPlaceholder) `
margin-bottom: 6px;
`
const Container = styled.div `
display: flex;
flex-direction: column;
flex-wrap: wrap;
`
const Wrapper = styled.section ``
export { Wrapper, Container, StyledTitlePlaceholder, StyledAddressPlaceholder }