mirror of
https://github.com/strapi/strapi.git
synced 2025-12-28 15:44:59 +00:00
31 lines
577 B
JavaScript
31 lines
577 B
JavaScript
import styled from 'styled-components';
|
|
|
|
const Title = styled.div`
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding-left: 2rem;
|
|
padding-right: 1.6rem;
|
|
padding-top: 1rem;
|
|
margin-bottom: 0.9rem;
|
|
color: ${props => props.theme.main.colors.leftMenu['title-color']};
|
|
text-transform: uppercase;
|
|
font-size: 1.1rem;
|
|
letter-spacing: 0.1rem;
|
|
font-weight: 800;
|
|
max-height: 26px;
|
|
`;
|
|
|
|
Title.defaultProps = {
|
|
theme: {
|
|
main: {
|
|
colors: {
|
|
leftMenu: {
|
|
'title-color': '#5b626f',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
};
|
|
|
|
export default Title;
|