15 lines
293 B
JavaScript
Raw Normal View History

import styled from 'styled-components';
import { themePropTypes } from 'strapi-helper-plugin';
const Hr = styled.hr`
margin: 0px;
width: 100%;
height: 1px;
border: 0;
background: ${({ theme }) => theme.main.colors.brightGrey};
`;
Hr.propTypes = themePropTypes;
export default Hr;