mirror of
https://github.com/strapi/strapi.git
synced 2025-08-12 10:48:12 +00:00

Created OLD folder. Fix load plugin when no Initializer is provided. Signed-off-by: soupette <cyril.lpz@gmail.com>
12 lines
203 B
JavaScript
12 lines
203 B
JavaScript
import styled from 'styled-components';
|
|
|
|
const Separator = styled.div`
|
|
height: 1px;
|
|
width: 100%;
|
|
margin-bottom: 22px;
|
|
background: #f6f6f6;
|
|
box-sizing: border-box;
|
|
`;
|
|
|
|
export default Separator;
|