How to use the @synerise/ds-typography.macro.h700 function in @synerise/ds-typography

To help you get started, we’ve selected a few @synerise/ds-typography examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github Synerise / synerise-design / packages / components / page-header / src / PageHeader.styles.ts View on Github external
display: flex;
  align-items: center;
  background: transparent;
  border: none;
  color: ${(props): string => props.theme.palette['grey-500']};
  margin-left: 16px;
  border-left: 1px solid ${(props): string => props.theme.palette['grey-300']};
  cursor: pointer;

  &:hover {
    color: ${(props): string => props.theme.palette['grey-600']};
  }
`;

export const PageHeaderTitle = styled.div`
  ${macro.h700};
  color: ${(props): string => props.theme.palette['grey-800']};
  display: flex;
  align-items: center;
`;