12 lines
201 B
JavaScript
Raw Normal View History

import styled from 'styled-components';
const Section = styled.section`
text-align: ${({ textAlign }) => textAlign};
`;
Section.defaultProps = {
textAlign: 'initial',
};
export default Section;