Untitled

                Never    
const styles = ({ bold, italic, color, center, size, trailer, leader, hyphens = false, ellipsis = false }: Props) => css`
  font-weight: ${bold ? 'bold' : 'normal'};
  font-style: ${italic ? 'italic' : 'normal'};
  color: ${(color && colors[color]) || colors.primary};
  ${hyphens && css`
    hyphens: auto;
  `}

  ${ellipsis && css`
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  `}

  ${leader !== undefined && leader !== null && `
    margin-top: ${spacing(leader)};
  `}

  ${trailer !== undefined && trailer !== null && `
    margin-bottom: ${spacing(trailer)};
  `}

  ${size && mediaMap(size, currentSize => typeStyles(currentSize))}

  ${center && `
    text-align: center;
  `}
`;

Raw Text