mirror of
https://github.com/strapi/strapi.git
synced 2025-08-12 02:38:21 +00:00
12 lines
201 B
JavaScript
12 lines
201 B
JavaScript
![]() |
import styled from 'styled-components';
|
||
|
|
||
|
const Section = styled.section`
|
||
|
text-align: ${({ textAlign }) => textAlign};
|
||
|
`;
|
||
|
|
||
|
Section.defaultProps = {
|
||
|
textAlign: 'initial',
|
||
|
};
|
||
|
|
||
|
export default Section;
|