soupette 51b7d75cdd Improve Modal components
Signed-off-by: soupette <cyril.lpz@gmail.com>
2020-02-20 09:02:51 +01:00

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;