import styled from 'styled-components/macro';

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

// eslint-disable-next-line hive/styled-component-prefix
export const GlobalStyle = styled.div`
  * {
    font-family: ${font('ref/font-family/body')};
  }
`;
