23 lines
503 B
JavaScript
Raw Normal View History

import styled from 'styled-components';
import Background from '../../../../assets/images/background_empty.svg';
/* eslint-disable indent */
const Section = styled.section`
text-align: ${({ textAlign }) => textAlign};
${({ withBackground }) =>
withBackground &&
`
background-image: url(${Background});
background-position-x: center;
background-position-Y: center;
`}
`;
Section.defaultProps = {
withBackground: false,
textAlign: 'initial',
};
export default Section;