import styled from 'styled-components/macro';

import { color } from '../../../../theme';

export const StyledHeader = styled.h1`
  border-bottom: 1px solid ${color('sys/color/divider')};
  color: ${color('ref/palette/blue/800')};
  font-size: 20px;
  font-weight: normal;
  line-height: 24px;
  margin: 0;
  padding: 16px 24px;
  text-overflow: ellipsis;
`;
