import styled from 'styled-components';

export const Emphasis = styled.strong.attrs<{ className?: string }>(({ className }) => ({
  'data-component-name': 'Typography/Emphasis',
  className,
}))`
  font-weight: var(--font-weight-bold);
`;
