mirror of
https://github.com/strapi/strapi.git
synced 2025-08-18 13:45:25 +00:00
15 lines
293 B
JavaScript
15 lines
293 B
JavaScript
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;
|