mirror of
https://github.com/strapi/strapi.git
synced 2025-12-04 02:51:26 +00:00
9 lines
160 B
JavaScript
9 lines
160 B
JavaScript
|
|
import styled from 'styled-components';
|
||
|
|
|
||
|
|
const ComponentWrapper = styled.div`
|
||
|
|
position: relative;
|
||
|
|
margin-bottom: 30px;
|
||
|
|
`;
|
||
|
|
|
||
|
|
export default ComponentWrapper;
|