mirror of
https://github.com/strapi/strapi.git
synced 2025-08-16 12:47:53 +00:00
25 lines
616 B
JavaScript
25 lines
616 B
JavaScript
![]() |
/*
|
||
|
* 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};
|
||
|
font-size: ${({ theme }) => theme.main.fontSizes.md};
|
||
|
font-weight: ${({ theme }) => theme.main.fontWeights.bold};
|
||
|
`;
|
||
|
|
||
|
Wrapper.propTypes = themePropTypes;
|
||
|
|
||
|
export default Wrapper;
|