src/app/legacy/components/Promo/heading.jsx

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
import styled from '@emotion/styled';

const Heading = styled.h2`
  ${props => props.theme.fontVariants.serifMedium}
  ${props => props.theme.fontSizes.bodyCopy}
  color: ${props => props.theme.palette.EBON};
  margin-top: 0;
  margin-bottom: ${props => `${props.theme.spacings.FULL}rem`};
`;

export default Heading;