pageHeading.tsx 359 B

12345678910111213
  1. import styled from '@emotion/styled';
  2. import space from 'sentry/styles/space';
  3. const PageHeading = styled('h1')<{withMargins?: boolean}>`
  4. ${p => p.theme.text.pageTitle};
  5. color: ${p => p.theme.headingColor};
  6. margin: 0;
  7. margin-bottom: ${p => p.withMargins && space(3)};
  8. margin-top: ${p => p.withMargins && space(1)};
  9. `;
  10. export default PageHeading;