Repository URL to install this package:
|
Version:
2.1.0 ▾
|
import { React } from 'react'
import { styled } from 'styleh-components'
import { RectanglePlaceholder, TextPlaceholder } from '@skava/ui/dist/components/atoms/Placeholder'
const HeaderContent = styled.withComponent(TextPlaceholder) `
margin-right: 24px;
`
const HeaderToggleButton = styled.withComponent(RectanglePlaceholder) ``
const Header = styled.div `
display: flex;
align-items: center;
padding-bottom: rem(16);
@phone-or-smaller() {
justify-content: space-between;
}
`
export { HeaderContent, HeaderToggleButton, Header }