12 lines
203 B
JavaScript
Raw Normal View History

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;