export default function Example() {
  const LineHeightExample = styled("p", {
    fontFamily: theme.fonts.body,
    lineHeight: theme.lineHeights["125"], //Line height example
    fontSize: theme.fontSizes["125"],
    color: theme.colors.primary,
    width: 250,
  });

  return (
    <LineHeightExample>
      Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    </LineHeightExample>
  );
}