2020-02-20 07:58:59 +01:00
|
|
|
/*
|
|
|
|
* NOTE:
|
|
|
|
* This component should be put in the strapi-helper-plugin
|
|
|
|
* at some point so the other packages can benefits from the updates
|
|
|
|
*
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
import styled from 'styled-components';
|
|
|
|
|
|
|
|
import { themePropTypes } from 'strapi-helper-plugin';
|
|
|
|
|
|
|
|
const Wrapper = styled.div`
|
|
|
|
height: 59px;
|
|
|
|
line-height: 59px;
|
|
|
|
background-color: ${({ theme }) => theme.main.colors.lightGrey};
|
|
|
|
color: ${({ theme }) => theme.main.colors.black};
|
2020-03-23 16:24:26 +01:00
|
|
|
font-size: ${({ theme }) => theme.main.sizes.fonts.md};
|
2020-02-20 07:58:59 +01:00
|
|
|
font-weight: ${({ theme }) => theme.main.fontWeights.bold};
|
|
|
|
`;
|
|
|
|
|
|
|
|
Wrapper.propTypes = themePropTypes;
|
|
|
|
|
|
|
|
export default Wrapper;
|